We have received a data set of a XYZ incident management system where the incidents are raised by the users in form of tickets which can be further assigned to appropriate group for resolution based on the ticket description, short description etc. The objective of the project is to build a classifier that can classify the tickets to right group by analyzing the text. We will concentrate on the below objectives also for building a good classifier.
• EDA and visualizations are to be done for understanding the importance of each column and to have proper conclusion on the data set.
• The data has to be checked for inconsistencies if any then tackle those in an efficient way.
• Different natural language processing, preprocessing techniques are tried using maximum of features.
• Different feature extraction techniques and comparison of models.
• How to use different classification models have to be explored.
• How to use transfer learning to use pre-built models have to be explored.
• Learn to set the optimizers, loss functions, epochs, learning rate, batch size, checkpointing, early stopping etc.
• Model Deployment
2.1.1.Mount Drive
2.1.2.Installation
2.1.3.Import all libraries
2.1.4.Write all common functions
2.2.1.EDA included shape,description,info,Print Top 5 rows
2.3.1.Find all the missing values and display them.
2.4.1.Assignment group target column exploration and visualization with top 10 groups,Unique groups,Total group counts,Word cloud visualizations for assignment group.
2.4.2.Caller column exploration with plot for multiple groups for top 10 caller
2.4.3.Max word and min word and plot of word distribution for description and short description column
2.5.1.We will create a combine column and there we will conatinate two groups as NAN + string is NAN so we will use THE at place of NAN values which will be removed later with stop word removal
2.6.1.We will try lang detect and polyglot library and will see language accuracy.
2.6.2.We will divide the dataset to two part one with having rows with english language and one with non english languages.
2.6.3.Then we will apply Google translation on non english rows and merge the non english part with english part and create final feature column
2.6.4.We will check language accuracy after translation
2.6.5. Observations
2.7.1.And visualize final feature column in word cloud with and without stop words
2.7.2.And also calculate top 50 frequent word
2.7.3.Observations
2.8.1.We will do preprocessing and removed digit special character url mailID Extra spaces accented chars newlines HTML and also expand contractions and lemmatization will also be applied.We have created a single function inside it.
2.8.2.Observations
2.9.1We will tokenize the final feature and remove stop word and have final tokenized feature for embedding.
from google.colab import drive
drive.mount('/content/drive/')
Drive already mounted at /content/drive/; to attempt to forcibly remount, call drive.mount("/content/drive/", force_remount=True).
EMBEDDING_FILE = '/content/drive/My Drive/glove.6B.100d.txt'
pip install plotly
Requirement already satisfied: plotly in /usr/local/lib/python3.6/dist-packages (4.4.1) Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from plotly) (1.15.0) Requirement already satisfied: retrying>=1.3.3 in /usr/local/lib/python3.6/dist-packages (from plotly) (1.3.3)
# Install spaCy (run in terminal/prompt)
import sys
!{sys.executable} -m pip install spacy
# Download spaCy's 'en' Model
!{sys.executable} -m spacy download en
Requirement already satisfied: spacy in /usr/local/lib/python3.6/dist-packages (2.2.4) Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in /usr/local/lib/python3.6/dist-packages (from spacy) (1.0.2) Requirement already satisfied: srsly<1.1.0,>=1.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy) (1.0.2) Requirement already satisfied: numpy>=1.15.0 in /usr/local/lib/python3.6/dist-packages (from spacy) (1.18.5) Requirement already satisfied: plac<1.2.0,>=0.9.6 in /usr/local/lib/python3.6/dist-packages (from spacy) (1.1.3) Requirement already satisfied: cymem<2.1.0,>=2.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy) (2.0.3) Requirement already satisfied: requests<3.0.0,>=2.13.0 in /usr/local/lib/python3.6/dist-packages (from spacy) (2.23.0) Requirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from spacy) (50.3.0) Requirement already satisfied: thinc==7.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy) (7.4.0) Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in /usr/local/lib/python3.6/dist-packages (from spacy) (4.41.1) Requirement already satisfied: preshed<3.1.0,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy) (3.0.2) Requirement already satisfied: catalogue<1.1.0,>=0.0.7 in /usr/local/lib/python3.6/dist-packages (from spacy) (1.0.0) Requirement already satisfied: blis<0.5.0,>=0.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy) (0.4.1) Requirement already satisfied: wasabi<1.1.0,>=0.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy) (0.8.0) Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy) (2020.6.20) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy) (1.24.3) Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy) (3.0.4) Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy) (2.10) Requirement already satisfied: importlib-metadata>=0.20; python_version < "3.8" in /usr/local/lib/python3.6/dist-packages (from catalogue<1.1.0,>=0.0.7->spacy) (1.7.0) Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.6/dist-packages (from importlib-metadata>=0.20; python_version < "3.8"->catalogue<1.1.0,>=0.0.7->spacy) (3.1.0) Requirement already satisfied: en_core_web_sm==2.2.5 from https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.5/en_core_web_sm-2.2.5.tar.gz#egg=en_core_web_sm==2.2.5 in /usr/local/lib/python3.6/dist-packages (2.2.5) Requirement already satisfied: spacy>=2.2.2 in /usr/local/lib/python3.6/dist-packages (from en_core_web_sm==2.2.5) (2.2.4) Requirement already satisfied: numpy>=1.15.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (1.18.5) Requirement already satisfied: srsly<1.1.0,>=1.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (1.0.2) Requirement already satisfied: cymem<2.1.0,>=2.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (2.0.3) Requirement already satisfied: requests<3.0.0,>=2.13.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (2.23.0) Requirement already satisfied: preshed<3.1.0,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (3.0.2) Requirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (50.3.0) Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (4.41.1) Requirement already satisfied: thinc==7.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (7.4.0) Requirement already satisfied: plac<1.2.0,>=0.9.6 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (1.1.3) Requirement already satisfied: blis<0.5.0,>=0.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (0.4.1) Requirement already satisfied: wasabi<1.1.0,>=0.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (0.8.0) Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (1.0.2) Requirement already satisfied: catalogue<1.1.0,>=0.0.7 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.2.2->en_core_web_sm==2.2.5) (1.0.0) Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.2->en_core_web_sm==2.2.5) (3.0.4) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.2->en_core_web_sm==2.2.5) (1.24.3) Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.2->en_core_web_sm==2.2.5) (2.10) Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.6/dist-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.2->en_core_web_sm==2.2.5) (2020.6.20) Requirement already satisfied: importlib-metadata>=0.20; python_version < "3.8" in /usr/local/lib/python3.6/dist-packages (from catalogue<1.1.0,>=0.0.7->spacy>=2.2.2->en_core_web_sm==2.2.5) (1.7.0) Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.6/dist-packages (from importlib-metadata>=0.20; python_version < "3.8"->catalogue<1.1.0,>=0.0.7->spacy>=2.2.2->en_core_web_sm==2.2.5) (3.1.0) ✔ Download and installation successful You can now load the model via spacy.load('en_core_web_sm') ✔ Linking successful /usr/local/lib/python3.6/dist-packages/en_core_web_sm --> /usr/local/lib/python3.6/dist-packages/spacy/data/en You can now load the model via spacy.load('en')
pip install beautifulsoup4
Requirement already satisfied: beautifulsoup4 in /usr/local/lib/python3.6/dist-packages (4.6.3)
pip install langdetect
Requirement already satisfied: langdetect in /usr/local/lib/python3.6/dist-packages (1.0.8) Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from langdetect) (1.15.0)
pip install -U pycld2
Requirement already up-to-date: pycld2 in /usr/local/lib/python3.6/dist-packages (0.41)
pip install polyglot
Requirement already satisfied: polyglot in /usr/local/lib/python3.6/dist-packages (16.7.4)
# install googletrans using pip
!pip install googletrans
Requirement already satisfied: googletrans in /usr/local/lib/python3.6/dist-packages (3.0.0) Requirement already satisfied: httpx==0.13.3 in /usr/local/lib/python3.6/dist-packages (from googletrans) (0.13.3) Requirement already satisfied: httpcore==0.9.* in /usr/local/lib/python3.6/dist-packages (from httpx==0.13.3->googletrans) (0.9.1) Requirement already satisfied: chardet==3.* in /usr/local/lib/python3.6/dist-packages (from httpx==0.13.3->googletrans) (3.0.4) Requirement already satisfied: idna==2.* in /usr/local/lib/python3.6/dist-packages (from httpx==0.13.3->googletrans) (2.10) Requirement already satisfied: certifi in /usr/local/lib/python3.6/dist-packages (from httpx==0.13.3->googletrans) (2020.6.20) Requirement already satisfied: rfc3986<2,>=1.3 in /usr/local/lib/python3.6/dist-packages (from httpx==0.13.3->googletrans) (1.4.0) Requirement already satisfied: sniffio in /usr/local/lib/python3.6/dist-packages (from httpx==0.13.3->googletrans) (1.1.0) Requirement already satisfied: hstspreload in /usr/local/lib/python3.6/dist-packages (from httpx==0.13.3->googletrans) (2020.9.25) Requirement already satisfied: h2==3.* in /usr/local/lib/python3.6/dist-packages (from httpcore==0.9.*->httpx==0.13.3->googletrans) (3.2.0) Requirement already satisfied: h11<0.10,>=0.8 in /usr/local/lib/python3.6/dist-packages (from httpcore==0.9.*->httpx==0.13.3->googletrans) (0.9.0) Requirement already satisfied: contextvars>=2.1; python_version < "3.7" in /usr/local/lib/python3.6/dist-packages (from sniffio->httpx==0.13.3->googletrans) (2.4) Requirement already satisfied: hpack<4,>=3.0 in /usr/local/lib/python3.6/dist-packages (from h2==3.*->httpcore==0.9.*->httpx==0.13.3->googletrans) (3.0.0) Requirement already satisfied: hyperframe<6,>=5.2.0 in /usr/local/lib/python3.6/dist-packages (from h2==3.*->httpcore==0.9.*->httpx==0.13.3->googletrans) (5.2.0) Requirement already satisfied: immutables>=0.9 in /usr/local/lib/python3.6/dist-packages (from contextvars>=2.1; python_version < "3.7"->sniffio->httpx==0.13.3->googletrans) (0.14)
pip install contractions
Requirement already satisfied: contractions in /usr/local/lib/python3.6/dist-packages (0.0.25) Requirement already satisfied: textsearch in /usr/local/lib/python3.6/dist-packages (from contractions) (0.0.17) Requirement already satisfied: Unidecode in /usr/local/lib/python3.6/dist-packages (from textsearch->contractions) (1.1.1) Requirement already satisfied: pyahocorasick in /usr/local/lib/python3.6/dist-packages (from textsearch->contractions) (1.4.0)
pip install Unidecode
Requirement already satisfied: Unidecode in /usr/local/lib/python3.6/dist-packages (1.1.1)
pip install pyicu
Requirement already satisfied: pyicu in /usr/local/lib/python3.6/dist-packages (2.5)
pip install nltk
Requirement already satisfied: nltk in /usr/local/lib/python3.6/dist-packages (3.2.5) Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from nltk) (1.15.0)
import nltk
nltk.download('punkt')
nltk.download('stopwords')
[nltk_data] Downloading package punkt to /root/nltk_data... [nltk_data] Package punkt is already up-to-date! [nltk_data] Downloading package stopwords to /root/nltk_data... [nltk_data] Package stopwords is already up-to-date!
True
pip install collections-extended
Requirement already satisfied: collections-extended in /usr/local/lib/python3.6/dist-packages (1.0.3) Requirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from collections-extended) (50.3.0)
from nltk.tokenize import word_tokenize
from nltk.corpus import stopwords
import seaborn as sns
import matplotlib.pyplot as plt
from sklearn import preprocessing
from sklearn.model_selection import train_test_split
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.feature_extraction.text import TfidfTransformer
from sklearn.pipeline import Pipeline
from sklearn.metrics import accuracy_score
from sklearn.metrics import precision_score
from sklearn.metrics import recall_score
from sklearn.metrics import f1_score
from keras.models import Model
from keras.layers import LSTM, Activation, Dense, Dropout, Input, Embedding
from keras.optimizers import RMSprop
from keras.preprocessing.text import Tokenizer
from keras.preprocessing import sequence
from keras.utils import to_categorical
from keras.callbacks import EarlyStopping
from tensorflow.keras.preprocessing.sequence import pad_sequences
from tensorflow.keras.models import Sequential
from sklearn.metrics import classification_report
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.feature_selection import SelectKBest, chi2
import numpy as np
from sklearn.naive_bayes import MultinomialNB
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score,recall_score,confusion_matrix
from sklearn.linear_model import SGDClassifier
from sklearn.pipeline import Pipeline
from sklearn.feature_extraction.text import TfidfTransformer
from sklearn.linear_model import LogisticRegression
from yellowbrick.classifier import ClassificationReport
import spacy
#from spacy_cld import LanguageDetector
import langdetect
#import langid
import icu
from polyglot.detect import Detector
# import the library
import googletrans
from googletrans import Translator
import re
import contractions
import unidecode
import pandas as pd
import plotly
from plotly.offline import download_plotlyjs,init_notebook_mode,plot,iplot
import cufflinks as cf
cf.go_offline()
cf.set_config_file(offline=False, world_readable=True)
import plotly.offline as py
py.init_notebook_mode(connected=True)
import plotly.graph_objs as go
import plotly.io as pio
pio.renderers.default = 'colab'
from plotly.offline import init_notebook_mode, iplot
from collections import Counter
from wordcloud import WordCloud, STOPWORDS
from langdetect import detect
Some Common functions in word cloud
def wordcloud_plot(text):
wordcloud_spam = WordCloud(width = 800, height = 800,
background_color ='white',
min_font_size = 10).generate(" ".join(w for w in text))
# Lines 2 - 5
plt.figure(figsize = (8,8))
plt.imshow(wordcloud_spam, interpolation='bilinear')
plt.axis("off")
plt.show()
def wordcloud_group(text):
#wordcloud_spam = WordCloud(width = 800, height = 800,
#background_color ='white',
#min_font_size = 10).generate(" ".join(w for w in text))
wordcloud = WordCloud(collocations=False).generate(" ".join(w for w in text))
# Lines 2 - 5
plt.figure(figsize = (8,8))
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis("off")
plt.show()
def wordcloud_plot_stop(text):
wordcloud_withstop = WordCloud(stopwords=STOPWORDS,width = 800, height = 800,
background_color ='white',
min_font_size = 10).generate(" ".join(w for w in text))
# Lines 2 - 5
plt.figure(figsize = (8,8))
plt.imshow(wordcloud_withstop, interpolation='bilinear')
plt.axis("off")
plt.show()
Some common functions for language detection
def get_language(text):
return Detector(''.join(x for x in text if x.isprintable()), quiet=True).languages[0].name
def fn_lan_detect(df):
try:
return detect(df)
except:
return 'no'
Some common functions for Text preprocessing
def cleantext_lower(text):
return text.lower()
def cleantext_remove_punctuation(text):
result = re.sub(r'[^\w\s]',' ',text)
return result
def cleantext_remove_url(text):
result=re.sub(r"http\S+", "", text)
return result
def cleantext_removeHTML(text):
from bs4 import BeautifulSoup
soup = BeautifulSoup(text, "html.parser")
clean_Text = soup.get_text()
return clean_Text
def removeAccentedChars(text):
cleanText = unidecode.unidecode(text)
return cleanText
def expandContractions(text):
return contractions.fix(text)
def cleantext_removeSpecialChars(text, remove_digits=False):
pattern = r'[^a-zA-z0-9\s]' if not remove_digits else r'[^a-zA-z\s]'
text = re.sub(pattern, ' ', text)
cleanText = re.sub(r"[^a-zA-Z0-9]+", ' ', text)
return text
def removeDuplicates(text):
text = text.split(" ")
for i in range(0, len(text)):
text[i] = "".join(text[i])
dupli = Counter(text)
cleanText = " ".join(dupli.keys())
return cleanText
def correct_spelling(x, dic):
for word in dic.keys():
x = x.replace(word, dic[word])
return x
nlp = spacy.load('en', disable=['parser', 'ner'])
def cleantext_textLemmatize(text):
text = nlp(text)
text = ' '.join([word.lemma_ if word.lemma_ != '-PRON-' else word.text for word in text])
return text
#Used spacy as wordnet was giving some error
Commom function on ML model accuracy
def predict_ml_model(sclf,X_train_count,y_train_count,X_test_count,y_test_count):
sclf.fit(X_train_count, y_train_count)
y_pred = sclf.predict(X_test_count)
print('accuracy %s' % accuracy_score(y_pred, y_test_count))
print('Training score:',sclf.score(X_train_count, y_train_count)*100)
TrainAcc=sclf.score(X_train_count, y_train_count)*100
TestAcc=sclf.score(X_test_count,y_test_count)*100
Accq=accuracy_score(y_pred, y_test_count)
prec=precision_score(y_pred, y_test_count,average='weighted')*100
rec=recall_score(y_pred, y_test_count,average='weighted')*100
f1s=f1_score(y_pred, y_test_count,average='weighted')*100
print('Testing score:',sclf.score(X_test_count,y_test_count)*100)
#print(classification_report(y_test_count, y_pred))
data = [TrainAcc, TestAcc, prec, rec,f1s]
return data
df = pd.read_excel (r'/content/drive/My Drive/Project/input_data (2).xlsx')
df.head(5)
| Short description | Description | Caller | Assignment group | |
|---|---|---|---|---|
| 0 | login issue | -verified user details.(employee# & manager na... | spxjnwir pjlcoqds | GRP_0 |
| 1 | outlook | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_0 |
| 2 | cant log in to vpn | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | eylqgodm ybqkwiam | GRP_0 |
| 3 | unable to access hr_tool page | unable to access hr_tool page | xbkucsvz gcpydteq | GRP_0 |
| 4 | skype error | skype error | owlgqjme qhcozdfx | GRP_0 |
#Shape of the data
df.shape
(8500, 4)
#Name of columns
df.columns
Index(['Short description', 'Description', 'Caller', 'Assignment group'], dtype='object')
#Data type of each attribute
df.info()
#There are total 9 null values
<class 'pandas.core.frame.DataFrame'> RangeIndex: 8500 entries, 0 to 8499 Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 Short description 8492 non-null object 1 Description 8499 non-null object 2 Caller 8500 non-null object 3 Assignment group 8500 non-null object dtypes: object(4) memory usage: 265.8+ KB
#5 point summary
df.describe(include="all")
| Short description | Description | Caller | Assignment group | |
|---|---|---|---|---|
| count | 8492 | 8499 | 8500 | 8500 |
| unique | 7481 | 7817 | 2950 | 74 |
| top | password reset | the | bpctwhsn kzqsbmtp | GRP_0 |
| freq | 38 | 56 | 810 | 3976 |
We have explored the data set and found the below points:
1.It has 8500 rows and 4 columns.
2.Short Description and Description and caller are independent columns and Group is the depenent variable which we need to predict.It is a classification problem where we have to predict the group column value with respect to other independent variable.
3.First we have obsered Short description and description and what we found is there are many tickets where only short description is not sufficient to take it as main feature.There are many tickets for which both the short description and description are same.Different variations are there.
4.Next we observed that there are many rows where description/short description is written in other languages which is not english.
5.We have observed the dependent variables where we found that it is very unbalanced later we plot the distribution too which shows it has high imbalance.
6.There are some repeatative rows having same information in all the columns.
#Checking the presence of missing values
df.isnull().sum()
Short description 8 Description 1 Caller 0 Assignment group 0 dtype: int64
df.loc[df["Description"].isnull()]
| Short description | Description | Caller | Assignment group | |
|---|---|---|---|---|
| 4395 | i am locked out of skype | NaN | viyglzfo ajtfzpkb | GRP_0 |
df.loc[df["Short description"].isnull()]
| Short description | Description | Caller | Assignment group | |
|---|---|---|---|---|
| 2604 | NaN | \r\n\r\nreceived from: ohdrnswl.rezuibdt@gmail... | ohdrnswl rezuibdt | GRP_34 |
| 3383 | NaN | \r\n-connected to the user system using teamvi... | qftpazns fxpnytmk | GRP_0 |
| 3906 | NaN | -user unable tologin to vpn.\r\n-connected to... | awpcmsey ctdiuqwe | GRP_0 |
| 3910 | NaN | -user unable tologin to vpn.\r\n-connected to... | rhwsmefo tvphyura | GRP_0 |
| 3915 | NaN | -user unable tologin to vpn.\r\n-connected to... | hxripljo efzounig | GRP_0 |
| 3921 | NaN | -user unable tologin to vpn.\r\n-connected to... | cziadygo veiosxby | GRP_0 |
| 3924 | NaN | name:wvqgbdhm fwchqjor\nlanguage:\nbrowser:mic... | wvqgbdhm fwchqjor | GRP_0 |
| 4341 | NaN | \r\n\r\nreceived from: eqmuniov.ehxkcbgj@gmail... | eqmuniov ehxkcbgj | GRP_0 |
We have found out 9 missing values .1 in description and 8 in short description.The rows are printed.
#Count the number of values:
df['Assignment group'].value_counts()
GRP_0 3976 GRP_8 661 GRP_24 289 GRP_12 257 GRP_9 252 GRP_2 241 GRP_19 215 GRP_3 200 GRP_6 184 GRP_13 145 GRP_10 140 GRP_5 129 GRP_14 118 GRP_25 116 GRP_33 107 GRP_4 100 GRP_29 97 GRP_18 88 GRP_16 85 GRP_17 81 GRP_31 69 GRP_7 68 GRP_34 62 GRP_26 56 GRP_40 45 GRP_28 44 GRP_41 40 GRP_30 39 GRP_15 39 GRP_42 37 GRP_20 36 GRP_45 35 GRP_1 31 GRP_22 31 GRP_11 30 GRP_21 29 GRP_47 27 GRP_48 25 GRP_23 25 GRP_62 25 GRP_60 20 GRP_39 19 GRP_27 18 GRP_37 16 GRP_44 15 GRP_36 15 GRP_50 14 GRP_65 11 GRP_53 11 GRP_52 9 GRP_55 8 GRP_51 8 GRP_46 6 GRP_59 6 GRP_49 6 GRP_43 5 GRP_66 4 GRP_32 4 GRP_68 3 GRP_38 3 GRP_63 3 GRP_56 3 GRP_58 3 GRP_71 2 GRP_57 2 GRP_72 2 GRP_69 2 GRP_54 2 GRP_64 1 GRP_70 1 GRP_73 1 GRP_61 1 GRP_35 1 GRP_67 1 Name: Assignment group, dtype: int64
#Group 0 has highest number of tickets
Plot the group in sorted order
from IPython.display import display
pd.options.display.max_columns = None
pd.options.display.max_rows = None
sns.set(style="whitegrid")
plt.figure(figsize=(20,5))
ax = sns.countplot(x="Assignment group", data=df, order=df["Assignment group"].value_counts().index)
ax.set_xticklabels(ax.get_xticklabels(), rotation=90)
for p in ax.patches:
ax.annotate(str(format(p.get_height()/len(df.index)*100, '.2f')+"%"), (p.get_x() + p.get_width() / 2., p.get_height()), ha = 'center', va = 'bottom', rotation=90, xytext = (0, 10), textcoords = 'offset points')
Top 10 groups visualization
df['Assignment group'].value_counts()[:10].plot(kind='barh')
plt.title("Top 10 frequent groups")
Text(0.5, 1.0, 'Top 10 frequent groups')
Top 50 and bottom 50 groups visualization
df_top_50= df['Assignment group'].value_counts().nlargest(50).reset_index()
plt.figure(figsize=(12,6))
bars = plt.bar(df_top_50['index'],df_top_50['Assignment group'])
plt.title('Top 50 Assignment groups with highest number of Tickets')
plt.xlabel('Assignment Group')
plt.xticks(rotation=90)
plt.ylabel('Number of Tickets')
for bar in bars:
yval = bar.get_height()
plt.text(bar.get_x(), yval + .005, yval)
plt.tight_layout()
plt.show()
df_bottom_50 = df['Assignment group'].value_counts().nsmallest(50).reset_index()
plt.figure(figsize=(12,6))
bars = plt.bar(df_bottom_50['index'],df_bottom_50['Assignment group'])
plt.title('Bottom 50 Assignment groups Tickets')
plt.xlabel('Assignment Group')
plt.xticks(rotation=90)
plt.ylabel('Number of Tickets')
for bar in bars:
yval = bar.get_height()
plt.text(bar.get_x(), yval + .005, yval)
plt.tight_layout()
plt.show()
Word Cloud plotting
wordcloud_group(df["Assignment group"])
Print Frequency of Top 10 callers
newcallerdf=df['Caller'].value_counts()[:10]
Callerdata = df['Caller'].value_counts().rename_axis('groupname').reset_index(name='counts')[:10]
print (Callerdata)
import matplotlib.pyplot as plt
groupname counts 0 bpctwhsn kzqsbmtp 810 1 ZkBogxib QsEJzdZO 151 2 fumkcsji sarmtlhy 134 3 rbozivdq gmlhrtvp 87 4 rkupnshb gsmzfojw 71 5 jloygrwh acvztedi 64 6 spxqmiry zpwgoqju 63 7 oldrctiu bxurpsyi 57 8 olckhmvx pcqobjnd 54 9 dkmcfreg anwmfvlg 51
Plot Top 10 caller
fig = plt.figure(figsize =(20, 7))
sns.barplot(x="groupname", y="counts", data=Callerdata)
plt.title("Caller Group Distribution")
Text(0.5, 1.0, 'Caller Group Distribution')
Plot top 10 caller pie chart distribution with group to see most frequent group for top callers
for x in Callerdata.groupname:
callerdf=df.loc[df['Caller'] == x]
grpdata = callerdf['Assignment group'].value_counts().rename_axis('groupnam').reset_index(name='counts')
fig = plt.figure(figsize =(10, 7))
plt.pie(grpdata['counts'], labels = grpdata['groupnam'])
plt.title(x)
plt.show()
Observation:Here we can see that group 8 has maximum no of callers
df_word_char=df.copy(deep=False)
df_word_char['word_count'] = df_word_char['Description'].apply(lambda x: len(str(x).split(" ")))
df_word_char[['Description','word_count']].head()
| Description | word_count | |
|---|---|---|
| 0 | -verified user details.(employee# & manager na... | 29 |
| 1 | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | 23 |
| 2 | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | 9 |
| 3 | unable to access hr_tool page | 5 |
| 4 | skype error | 3 |
print(df_word_char['word_count'].max())
print(df_word_char['word_count'].min())
1417 1
df_word_char['word_count'].iplot(
kind='hist',
xTitle='word_count',
linecolor='black',
yTitle='count',
title='Word Description Distribution')
df_word_char['word_countshort'] = df_word_char['Short description'].apply(lambda x: len(str(x).split(" ")))
df_word_char[['Short description','word_countshort']].head()
| Short description | word_countshort | |
|---|---|---|
| 0 | login issue | 2 |
| 1 | outlook | 1 |
| 2 | cant log in to vpn | 5 |
| 3 | unable to access hr_tool page | 5 |
| 4 | skype error | 3 |
print(df_word_char['word_countshort'].max())
print(df_word_char['word_countshort'].min())
41 1
df_word_char['word_countshort'].iplot(
kind='hist',
xTitle='word_count',
linecolor='black',
yTitle='count',
title='Word short description Distribution')
newdf=df.copy(deep=False)
newdf["Short description"]=newdf["Short description"].fillna('The')
newdf["Description"]=newdf["Description"].fillna('The')
newdf["Summary"] = newdf["Short description"] +' '+newdf["Description"]
newdf.head(2)
| Short description | Description | Caller | Assignment group | Summary | |
|---|---|---|---|---|---|
| 0 | login issue | -verified user details.(employee# & manager na... | spxjnwir pjlcoqds | GRP_0 | login issue -verified user details.(employee# ... |
| 1 | outlook | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_0 | outlook \r\n\r\nreceived from: hmjdrvpb.komuay... |
print(newdf.shape)
print(newdf.isnull().sum())
(8500, 5) Short description 0 Description 0 Caller 0 Assignment group 0 Summary 0 dtype: int64
newdf[4395:4396]
| Short description | Description | Caller | Assignment group | Summary | |
|---|---|---|---|---|---|
| 4395 | i am locked out of skype | The | viyglzfo ajtfzpkb | GRP_0 | i am locked out of skype The |
wordcloud_plot(newdf["Summary"])
plt.figure(figsize = (15,15))
wc = WordCloud(width = 1600 , height = 800,collocations=False).generate(" ".join(w for w in newdf.Summary))
plt.imshow(wc , interpolation = 'bilinear')
plt.axis("off")
(-0.5, 1599.5, 799.5, -0.5)
wordcloud_plot_stop(newdf["Summary"])
We have decided to take a combine column which will combine both short description and description.For this to handle the missing values we have concatinated with The in place of missing values which we will remove with the help of stop word. We can also see the word cloud is messy and stop words have great impact on it.Moreover if we observe carefully we can see there are words with non english languages.So this gives a good visualization
Lang Detect
newcleaneddf=newdf.copy(deep=False)
newdf['language1'] = newdf['Summary'].apply(fn_lan_detect)
newdf["language1"].value_counts()
en 7065 de 380 af 266 it 126 fr 118 da 81 nl 80 sv 76 no 74 ca 49 es 44 pl 34 pt 27 ro 12 cy 12 tl 12 sq 9 hr 7 sl 6 fi 4 et 4 id 4 tr 3 lt 2 cs 2 so 2 sk 1 Name: language1, dtype: int64
newdf=newdf.drop(["language1"], axis=1)
Polyglot language detection
newdf["lang"] = newdf["Summary"].apply(get_language)
Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably.
newdf["lang"].value_counts()
English 7935 German 401 Danish 43 un 28 Latin 12 Portuguese 10 Hungarian 8 Waray 7 Nauru 6 Scots 5 Luxembourgish 5 Polish 5 Dutch 3 Zhuang 3 Uzbek 3 Spanish 2 Interlingua 2 Ganda 2 Scottish Gaelic 2 Kinyarwanda 2 Norwegian 2 Icelandic 1 Welsh 1 Tsonga 1 Tagalog 1 Maltese 1 Latvian 1 Estonian 1 Malay 1 Norwegian Nynorsk 1 Finnish 1 Catalan 1 Galician 1 Irish 1 French 1 Name: lang, dtype: int64
Same process will be repeated for cleaned text.
def text_preprocessing_forlangdetect(text):
strText = str(text)
cleanText = cleantext_lower(text)
cleanText = cleantext_removeHTML(cleanText)
cleanText = removeAccentedChars(cleanText)
cleanText = re.sub(r'\S*@\S*\s?', '', cleanText)
cleanText = cleantext_remove_punctuation(cleanText)
cleanText = cleantext_removeSpecialChars(cleanText)
return cleanText
newcleaneddf["cleanedsummary"]=newcleaneddf["Summary"].apply(text_preprocessing_forlangdetect)
newcleaneddf['language1'] = newcleaneddf['cleanedsummary'].apply(fn_lan_detect)
newcleaneddf["language1"].value_counts()
en 7079 de 373 af 270 it 120 fr 107 no 70 cy 66 nl 65 ca 58 da 53 sv 51 es 48 pl 30 pt 27 sl 17 ro 17 tl 12 sq 8 hr 6 et 5 id 4 hu 4 fi 4 cs 3 lt 2 so 1 Name: language1, dtype: int64
newcleaneddf["lang"] = newcleaneddf["cleanedsummary"].apply(get_language)
Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably.
newcleaneddf["lang"].value_counts()
English 7885 German 398 Danish 40 un 28 Tongan 24 Portuguese 13 Hawaiian 11 Latin 10 Hungarian 9 Scots 8 Dutch 6 Luxembourgish 6 Nauru 6 Welsh 5 Polish 5 Maltese 4 Icelandic 3 Zhuang 3 Uzbek 3 Waray 2 Scottish Gaelic 2 Breton 2 Kinyarwanda 2 Norwegian 2 Interlingua 2 Spanish 2 Ganda 2 Samoan 2 Zulu 1 Romansh 1 Tagalog 1 Latvian 1 Estonian 1 Malay 1 Norwegian Nynorsk 1 Turkish 1 Haitian Creole 1 Kalaallisut 1 Manx 1 Finnish 1 Catalan 1 Galician 1 French 1 Name: lang, dtype: int64
What we observed that polyglot gives more accuracy so we will go with it.Now we have 7900+ english rows for polyglot where as for langdetect it is giving 7000+
newdf.head(10)
| Short description | Description | Caller | Assignment group | Summary | lang | |
|---|---|---|---|---|---|---|
| 0 | login issue | -verified user details.(employee# & manager na... | spxjnwir pjlcoqds | GRP_0 | login issue -verified user details.(employee# ... | English |
| 1 | outlook | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_0 | outlook \r\n\r\nreceived from: hmjdrvpb.komuay... | English |
| 2 | cant log in to vpn | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | eylqgodm ybqkwiam | GRP_0 | cant log in to vpn \r\n\r\nreceived from: eylq... | English |
| 3 | unable to access hr_tool page | unable to access hr_tool page | xbkucsvz gcpydteq | GRP_0 | unable to access hr_tool page unable to access... | English |
| 4 | skype error | skype error | owlgqjme qhcozdfx | GRP_0 | skype error skype error | Latin |
| 5 | unable to log in to engineering tool and skype | unable to log in to engineering tool and skype | eflahbxn ltdgrvkz | GRP_0 | unable to log in to engineering tool and skype... | English |
| 6 | event: critical:HostName_221.company.com the v... | event: critical:HostName_221.company.com the v... | jyoqwxhz clhxsoqy | GRP_1 | event: critical:HostName_221.company.com the v... | English |
| 7 | ticket_no1550391- employment status - new non-... | ticket_no1550391- employment status - new non-... | eqzibjhw ymebpoih | GRP_0 | ticket_no1550391- employment status - new non-... | English |
| 8 | unable to disable add ins on outlook | unable to disable add ins on outlook | mdbegvct dbvichlg | GRP_0 | unable to disable add ins on outlook unable to... | English |
| 9 | ticket update on inplant_874773 | ticket update on inplant_874773 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_874773 ticket update ... | English |
def fn_translate(newdf):
if newdf['lang'] == "English":
engdf=newdf
return engdf
else:
nonengdf=newdf
return nonengdf
newdf.apply(fn_translate, axis = 1)
| Short description | Description | Caller | Assignment group | Summary | lang | |
|---|---|---|---|---|---|---|
| 0 | login issue | -verified user details.(employee# & manager na... | spxjnwir pjlcoqds | GRP_0 | login issue -verified user details.(employee# ... | English |
| 1 | outlook | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_0 | outlook \r\n\r\nreceived from: hmjdrvpb.komuay... | English |
| 2 | cant log in to vpn | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | eylqgodm ybqkwiam | GRP_0 | cant log in to vpn \r\n\r\nreceived from: eylq... | English |
| 3 | unable to access hr_tool page | unable to access hr_tool page | xbkucsvz gcpydteq | GRP_0 | unable to access hr_tool page unable to access... | English |
| 4 | skype error | skype error | owlgqjme qhcozdfx | GRP_0 | skype error skype error | Latin |
| 5 | unable to log in to engineering tool and skype | unable to log in to engineering tool and skype | eflahbxn ltdgrvkz | GRP_0 | unable to log in to engineering tool and skype... | English |
| 6 | event: critical:HostName_221.company.com the v... | event: critical:HostName_221.company.com the v... | jyoqwxhz clhxsoqy | GRP_1 | event: critical:HostName_221.company.com the v... | English |
| 7 | ticket_no1550391- employment status - new non-... | ticket_no1550391- employment status - new non-... | eqzibjhw ymebpoih | GRP_0 | ticket_no1550391- employment status - new non-... | English |
| 8 | unable to disable add ins on outlook | unable to disable add ins on outlook | mdbegvct dbvichlg | GRP_0 | unable to disable add ins on outlook unable to... | English |
| 9 | ticket update on inplant_874773 | ticket update on inplant_874773 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_874773 ticket update ... | English |
| 10 | engineering tool says not connected and unable... | engineering tool says not connected and unable... | badgknqs xwelumfz | GRP_0 | engineering tool says not connected and unable... | English |
| 11 | hr_tool site not loading page correctly | hr_tool site not loading page correctly | dcqsolkx kmsijcuz | GRP_0 | hr_tool site not loading page correctly hr_too... | English |
| 12 | unable to login to hr_tool to sgxqsuojr xwbeso... | unable to login to hr_tool to sgxqsuojr xwbeso... | oblekmrw qltgvspb | GRP_0 | unable to login to hr_tool to sgxqsuojr xwbeso... | English |
| 13 | user wants to reset the password | user wants to reset the password | iftldbmu fujslwby | GRP_0 | user wants to reset the password user wants to... | English |
| 14 | unable to open payslips | unable to open payslips | epwyvjsz najukwho | GRP_0 | unable to open payslips unable to open payslips | English |
| 15 | ticket update on inplant_874743 | ticket update on inplant_874743 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_874743 ticket update ... | English |
| 16 | unable to login to company vpn | \n\nreceived from: xyz@company.com\n\nhi,\n\ni... | chobktqj qdamxfuc | GRP_0 | unable to login to company vpn \n\nreceived fr... | English |
| 17 | when undocking pc , screen will not come back | when undocking pc , screen will not come back | sigfdwcj reofwzlm | GRP_3 | when undocking pc , screen will not come back ... | English |
| 18 | erp SID_34 account locked | erp SID_34 account locked | nqdyowsm yqerwtna | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 19 | unable to sign into vpn | unable to sign into vpn | ftsqkvre bqzrupic | GRP_0 | unable to sign into vpn unable to sign into vpn | English |
| 20 | unable to check payslips | unable to check payslips | mrzgjdal whnldmef | GRP_0 | unable to check payslips unable to check payslips | English |
| 21 | vpn issue | \r\n\r\nreceived from: ugephfta.hrbqkvij@gmail... | ugephfta hrbqkvij | GRP_0 | vpn issue \r\n\r\nreceived from: ugephfta.hrbq... | English |
| 22 | unable to connect to vpn | unable to connect to vpn | pfmcnahv ofzlusri | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 23 | user called for vendor phone number | user called for vendor phone number | fumkcsji sarmtlhy | GRP_0 | user called for vendor phone number user calle... | English |
| 24 | vpn not working | \n\nreceived from: dceoufyz.saufqkmd@gmail.com... | dceoufyz saufqkmd | GRP_0 | vpn not working \n\nreceived from: dceoufyz.sa... | English |
| 25 | erp SID_37 password reset | erp SID_37 password reset | jqhtkfsm xoehtbnl | GRP_0 | erp SID_37 password reset erp SID_37 password... | English |
| 26 | unable to login to hr_tool to check payslips | unable to login to hr_tool to check payslips | dtisfuyp fpvrjlkz | GRP_0 | unable to login to hr_tool to check payslips u... | English |
| 27 | account locked out | account locked out | lduqxywt wcydjgvl | GRP_0 | account locked out account locked out | English |
| 28 | unable to login to hr_tool | unable to login to hr_tool | mwebfhdz csndrxgi | GRP_0 | unable to login to hr_tool unable to login to ... | English |
| 29 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | hvskpglx bpsfxmon | GRP_0 | unable to log in to erp SID_34 unable to log ... | English |
| 30 | password reset for collaboration_platform | password reset for collaboration_platform | wrlzneit ayqutwgh | GRP_0 | password reset for collaboration_platform pass... | English |
| 31 | reset users | hi\n\nplease reset users password\n\nclient id... | qcehailo wqynckxg | GRP_0 | reset users hi\n\nplease reset users password... | English |
| 32 | duplication of network address. | \n\nreceived from: kxsceyzo.naokumlb@gmail.com... | kxsceyzo naokumlb | GRP_4 | duplication of network address. \n\nreceived f... | English |
| 33 | ess password reset | ess password reset | fsqwkbez eudsantq | GRP_0 | ess password reset ess password reset | English |
| 34 | unable to install flash player | unable to install flash player | xzbhmfpg bhqxesym | GRP_0 | unable to install flash player unable to insta... | English |
| 35 | ticket_no1564677-employment status - new non-e... | ticket_no1564677-employment status - new non-e... | eqzibjhw ymebpoih | GRP_0 | ticket_no1564677-employment status - new non-e... | English |
| 36 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | ztlvkmyi xldyitwz | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 37 | unable to resolve ticket_no assigned to self | the status button is dierppearing after a few ... | shloyakw jztsxdln | GRP_0 | unable to resolve ticket_no assigned to self t... | English |
| 38 | installing engineering tool | need to install engineering tool on the pc | qcxivzag vyucbagx | GRP_0 | installing engineering tool need to install en... | English |
| 39 | call for ecwtrjnq jpecxuty | call for ecwtrjnq jpecxuty | olckhmvx pcqobjnd | GRP_0 | call for ecwtrjnq jpecxuty call for ecwtrjnq j... | English |
| 40 | ticket update - inplant_874615 | ticket update - inplant_874615 | olckhmvx pcqobjnd | GRP_0 | ticket update - inplant_874615 ticket update -... | English |
| 41 | tablet 7350-sound not working | tablet 7350-sound not working | eqxakzyi cwfrjitq | GRP_0 | tablet 7350-sound not working tablet 7350-soun... | English |
| 42 | unable to login to system | unable to login to system | zcaeryfo tdovhslb | GRP_0 | unable to login to system unable to login to s... | English |
| 43 | please reroute jobs on printer01 to printer02 ... | \n\nreceived from: yisohglr.uvteflgb@gmail.com... | yisohglr uvteflgb | GRP_5 | please reroute jobs on printer01 to printer02 ... | English |
| 44 | unable to login to hr_tool etime | unable to login to hr_tool etime | wxdrynag hlktazfm | GRP_0 | unable to login to hr_tool etime unable to log... | English |
| 45 | can not log into hr_tool etime through single ... | can not log into hr_tool etime through single ... | wpdxlbhz etvzjmhx | GRP_0 | can not log into hr_tool etime through single ... | English |
| 46 | password changed in password_management_tool b... | password changed in password_management_tool b... | lduqxywt wcydjgvl | GRP_0 | password changed in password_management_tool b... | English |
| 47 | job Job_1424 failed in job_scheduler at: 10/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1424 failed in job_scheduler at: 10/31... | English |
| 48 | windows password change via password_managemen... | windows password change via password_managemen... | boyqfsca yoqrmnep | GRP_0 | windows password change via password_managemen... | English |
| 49 | status does not change on telephony_software | when closing a call, the agent keeps on the "o... | aofnvyzt eqiyskhm | GRP_7 | status does not change on telephony_software w... | English |
| 50 | job mm_zscr0099_dly_merktc3 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_dly_merktc3 failed in job_sche... | English |
| 51 | call for ecwtrjnq jpecxuty | call for ecwtrjnq jpecxuty | olckhmvx pcqobjnd | GRP_0 | call for ecwtrjnq jpecxuty call for ecwtrjnq j... | English |
| 52 | vip 2 - i need my password_management_tool pas... | i need my password_management_tool password ma... | jwhmqnye xlpvdwre | GRP_0 | vip 2 - i need my password_management_tool pas... | English |
| 53 | reset scm_software password | \n\nreceived from: cdbaoqts.wqbsodni@gmail.com... | cdbaoqts wqbsodni | GRP_0 | reset scm_software password \n\nreceived from:... | English |
| 54 | account locked out while in office | account kept locking out\r\npossible reasons\r... | kyzhcsrq fwyltvpd | GRP_0 | account locked out while in office account kep... | English |
| 55 | skype meeting | \r\n\r\nreceived from: dlougnqw.jiuybxew@gmail... | dlougnqw jiuybxew | GRP_0 | skype meeting \r\n\r\nreceived from: dlougnqw.... | English |
| 56 | enquiry on impact rewards | enquiry on impact rewards- how to get password... | kpudhygb vnizrdeb | GRP_0 | enquiry on impact rewards enquiry on impact re... | English |
| 57 | need dn for material 3346599/ plant plant_197/... | need dn for material 3346599/ plant plant_197/... | wckrxovs aunsgzmd | GRP_6 | need dn for material 3346599/ plant plant_197/... | English |
| 58 | unlock logon password | \r\n\r\nreceived from: cnhkypxw.lafncksi@gmail... | cnhkypxw lafncksi | GRP_0 | unlock logon password \r\n\r\nreceived from: c... | English |
| 59 | job mm_zscr0099_dly_merktc2 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_dly_merktc2 failed in job_sche... | English |
| 60 | job Job_3181 failed in job_scheduler at: 10/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3181 failed in job_scheduler at: 10/31... | English |
| 61 | password changed required for user- abc | password changed required for user- abc | qslrdpwk mdkivacj | GRP_0 | password changed required for user- abc passwo... | English |
| 62 | issues with outlook | \r\n\r\nreceived from: lkfzibrx.ljnabpgx@gmail... | lkfzibrx ljnabpgx | GRP_0 | issues with outlook \r\n\r\nreceived from: lkf... | English |
| 63 | urgent - create dlv | please help , i try to create dlv for this mm'... | qfnthlam lxvnwuja | GRP_6 | urgent - create dlv please help , i try to cr... | English |
| 64 | apac company : two switches are down since 3.4... | apac company : two switches are down since 3.4... | utyeofsk rdyzpwhi | GRP_8 | apac company : two switches are down since 3.4... | English |
| 65 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | quxtnlgd tqnjyzsm | GRP_0 | error login on to the SID_34 system. error log... | English |
| 66 | delivery note can't do post goods issue | d/n #9169754657&8058643570\r\nplant:plant_304 ... | lyzqrctk cfotnzrx | GRP_0 | delivery note can't do post goods issue d/n #9... | English |
| 67 | job Job_1338 failed in job_scheduler at: 10/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 10/31... | English |
| 68 | job Job_1854 failed in job_scheduler at: 10/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1854 failed in job_scheduler at: 10/31... | English |
| 69 | job Job_2588 failed in job_scheduler at: 10/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2588 failed in job_scheduler at: 10/31... | English |
| 70 | job Job_2599 failed in job_scheduler at: 10/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2599 failed in job_scheduler at: 10/31... | English |
| 71 | user locked- user :xyz | \n\nreceived from: przndfbo.pldqbhtn@gmail.com... | przndfbo pldqbhtn | GRP_0 | user locked- user :xyz \n\nreceived from: przn... | English |
| 72 | dell 7350: my laptop speakers is not working a... | my laptop speakers is not working again and re... | jgautdmk fpurxzew | GRP_0 | dell 7350: my laptop speakers is not working a... | English |
| 73 | user needs help to connect to the wireless con... | user needs help to connect to the wireless con... | imoelsap gxdwkimv | GRP_0 | user needs help to connect to the wireless con... | English |
| 74 | inc1564062: ticket update | inc1564062: ticket update | pwkrlqbc zslqfmka | GRP_0 | inc1564062: ticket update inc1564062: ticket ... | English |
| 75 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 76 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 77 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 78 | power outage:UK al, 1st and 5th ave sites hard... | what type of outage: _____network _____ci... | mnlazfsr mtqrkhnx | GRP_8 | power outage:UK al, 1st and 5th ave sites hard... | English |
| 79 | power outage : germany, mx: site is hard down ... | what type of outage: ___x__network _____c... | jyoqwxhz clhxsoqy | GRP_8 | power outage : germany, mx: site is hard down ... | English |
| 80 | job Job_1424 failed in job_scheduler at: 10/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1424 failed in job_scheduler at: 10/30... | English |
| 81 | erp SID_34 account locked | erp SID_34 account locked | ilvortuq zfgrlewm | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 82 | user yhmwxsqj ugnthxky having issues logging t... | user yhmwxsqj ugnthxky having issues logging t... | rdfjsawg zpmxgdcw | GRP_0 | user yhmwxsqj ugnthxky having issues logging t... | English |
| 83 | job bwhrattr failed in job_scheduler at: 10/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 10/30... | English |
| 84 | engineering tool drawing originals in pdf form... | hello it service,\r\ni need to monitor the man... | vlymsnej whlqxcst | GRP_11 | engineering tool drawing originals in pdf form... | English |
| 85 | job apo_bop_plant_283a failed in job_scheduler... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job apo_bop_plant_283a failed in job_scheduler... | English |
| 86 | job Job_1315 failed in job_scheduler at: 10/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1315 failed in job_scheduler at: 10/30... | English |
| 87 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | English |
| 88 | unable to open ie | unable to open ie | tmopbken ibzougsd | GRP_0 | unable to open ie unable to open ie | English |
| 89 | job Job_3050 failed in job_scheduler at: 10/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3050 failed in job_scheduler at: 10/29... | English |
| 90 | job SID_30cold failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_30cold failed in job_scheduler at: 10/... | English |
| 91 | job SID_35cold failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_35cold failed in job_scheduler at: 10/... | English |
| 92 | job Job_436 failed in job_scheduler at: 10/29/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_436 failed in job_scheduler at: 10/29/... | English |
| 93 | job SID_29cold failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_29cold failed in job_scheduler at: 10/... | English |
| 94 | job Job_717 failed in job_scheduler at: 10/29/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_717 failed in job_scheduler at: 10/29/... | English |
| 95 | job SID_26cold failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_26cold failed in job_scheduler at: 10/... | English |
| 96 | job SID_35cold failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_35cold failed in job_scheduler at: 10/... | English |
| 97 | amssm00345: c:\ label:sys-amssm00345 94ef9088 ... | amssm00345: c:\ label:sys-amssm00345 94ef9088 ... | jyoqwxhz clhxsoqy | GRP_12 | amssm00345: c:\ label:sys-amssm00345 94ef9088 ... | English |
| 98 | unable to view payslips from hr_tool e time | unable to view payslips from hr_tool e time | vzrbocfl wxtpoyez | GRP_0 | unable to view payslips from hr_tool e time un... | English |
| 99 | password expiry tomorrow | \n\nreceived from: ecprjbod.litmjwsy@gmail.com... | ecprjbod litmjwsy | GRP_0 | password expiry tomorrow \n\nreceived from: ec... | English |
| 100 | re: ess portal access issue | \n\nreceived from: noscwdpm.akiowsmp@gmail.com... | noscwdpm akiowsmp | GRP_0 | re: ess portal access issue \n\nreceived from:... | English |
| 101 | ess portal access issue | \n\nreceived from: ihkolepb.ozhnjyef@gmail.com... | ihkolepb ozhnjyef | GRP_0 | ess portal access issue \n\nreceived from: ihk... | English |
| 102 | job Job_1390 failed in job_scheduler at: 10/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1390 failed in job_scheduler at: 10/29... | English |
| 103 | job Job_2002 failed in job_scheduler at: 10/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2002 failed in job_scheduler at: 10/29... | English |
| 104 | job Job_2002 failed in job_scheduler at: 10/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2002 failed in job_scheduler at: 10/29... | English |
| 105 | job Job_1319 failed in job_scheduler at: 10/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1319 failed in job_scheduler at: 10/29... | English |
| 106 | job Job_1382 failed in job_scheduler at: 10/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1382 failed in job_scheduler at: 10/29... | English |
| 107 | attendance_tool - system log on error | \n\nreceived from: isfadulo.etkyjabn@gmail.com... | isfadulo etkyjabn | GRP_0 | attendance_tool - system log on error \n\nrece... | English |
| 108 | excel freezing issue | excel freezing issue | jborwynt gidxbfrq | GRP_0 | excel freezing issue excel freezing issue | English |
| 109 | unable to sync a file in collaboration_platform | unable to sync a file in collaboration_platform | utdlmzyb dvfpraeg | GRP_0 | unable to sync a file in collaboration_platfor... | English |
| 110 | unable to update password on the password_mana... | unable to update password on the password_mana... | eflahbxn ltdgrvkz | GRP_0 | unable to update password on the password_mana... | English |
| 111 | vitalyst transfer: reporting_tool access query | vitalyst transfer: reporting_tool access query | flhkxeqd gwidroap | GRP_0 | vitalyst transfer: reporting_tool access query... | English |
| 112 | job Job_2881 failed in job_scheduler at: 10/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_13 | job Job_2881 failed in job_scheduler at: 10/28... | English |
| 113 | user said he will callback | user said he will callback | fumkcsji sarmtlhy | GRP_0 | user said he will callback user said he will ... | English |
| 114 | unable update passwords on password_management... | unable update passwords on password_management... | xeakyiqt knhjogel | GRP_0 | unable update passwords on password_management... | English |
| 115 | erp SID_34 erp production password reset // ac... | erp SID_34 erp production password reset // ac... | qmgspxkf mckfysdh | GRP_0 | erp SID_34 erp production password reset // ac... | English |
| 116 | server issues | \r\n\r\nreceived from: bgqpotek.cuxakvml@gmail... | bgqpotek cuxakvml | GRP_0 | server issues \r\n\r\nreceived from: bgqpotek.... | English |
| 117 | ticket update on ticket_no0454269 | ticket update on ticket_no0454269 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0454269 ticket updat... | English |
| 118 | unable to display expense report | unable to display expense report | ncksqfmz fzcjunai | GRP_0 | unable to display expense report unable to dis... | English |
| 119 | password reset for upitdmhz owupktcg cruzjc | password reset for upitdmhz owupktcg cruzjc | uazkjifp dhtnevcq | GRP_0 | password reset for upitdmhz owupktcg cruzjc pa... | English |
| 120 | unable to login in benefits tab | unable to login in benefits tab | bsmjflrp bvslpafi | GRP_0 | unable to login in benefits tab unable to logi... | English |
| 121 | hello, i'm having an issue with my outlook vie... | hello, i'm having an issue with my outlook vie... | ndaoxbvi szxlciue | GRP_0 | hello, i'm having an issue with my outlook vie... | English |
| 122 | unable to access mails | unable to access mails | cdfqvlzu jzmwuirn | GRP_0 | unable to access mails unable to access mails | English |
| 123 | unable to display expense report | unable to display expense report | rbozivdq gmlhrtvp | GRP_0 | unable to display expense report unable to dis... | English |
| 124 | mobile device activation | from: tvcdfqgp nrbcqwgj \nsent: friday, octobe... | tvcdfqgp nrbcqwgj | GRP_0 | mobile device activation from: tvcdfqgp nrbcqw... | English |
| 125 | internal keybankrd will not work after cs nor ... | internal keybankrd will not work after cs nor ... | hefiuwvo lcgadsef | GRP_3 | internal keybankrd will not work after cs nor ... | English |
| 126 | blank call //gso | blank call //gso | rbozivdq gmlhrtvp | GRP_0 | blank call //gso blank call //gso | English |
| 127 | update on inplant_874269 | update on inplant_874269 | rbozivdq gmlhrtvp | GRP_0 | update on inplant_874269 update on inplant_874269 | English |
| 128 | password change thru password_management_tool ... | \r\n\r\nreceived from: jvpkulxw.ovuweygj@gmail... | jvpkulxw ovuweygj | GRP_0 | password change thru password_management_tool ... | English |
| 129 | unlock personal number in ess | unlock personal number in ess | ltsqkane ycgwexdf | GRP_0 | unlock personal number in ess unlock personal ... | English |
| 130 | intermittent service on configair server in SI... | intermittent service on configair server in SI... | iavozegx jpcudyfi | GRP_14 | intermittent service on configair server in SI... | English |
| 131 | unable to access vpn | unable to access vpn | vtnkwxhr tqxrglvh | GRP_0 | unable to access vpn unable to access vpn | English |
| 132 | unable to open outlook | unable to open outlook | kcagqjyv ojhulmes | GRP_0 | unable to open outlook unable to open outlook | English |
| 133 | install driver in printer hr14 in HostName_769 | install driver in printer hr14 in HostName_769 | bihypqsn kbaegpcd | GRP_0 | install driver in printer hr14 in HostName_769... | English |
| 134 | unable to send emails from outbox | unable to send emails from outbox | dijxefrq nbgykjpr | GRP_0 | unable to send emails from outbox unable to se... | English |
| 135 | access to business_client drawings | name:xvgftyr tryfuh\nlanguage:\nbrowser:micros... | rbozivdq gmlhrtvp | GRP_0 | access to business_client drawings name:xvgfty... | English |
| 136 | taking off email permissions from personal phone | name:vdhfy\nlanguage:\nbrowser:microsoft inter... | dcvphjru ybomrjst | GRP_0 | taking off email permissions from personal pho... | English |
| 137 | job Job_1854 failed in job_scheduler at: 10/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1854 failed in job_scheduler at: 10/28... | English |
| 138 | job Job_1879 failed in job_scheduler at: 10/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1879 failed in job_scheduler at: 10/28... | English |
| 139 | unable to view payslips in ie | unable to view payslips in ie | bdgaxriq iltbozkw | GRP_0 | unable to view payslips in ie unable to view p... | English |
| 140 | prtgghj4k45 password reset | please reset hr_tool gv4536 password reset. | qcehailo wqynckxg | GRP_0 | prtgghj4k45 password reset please reset hr_too... | English |
| 141 | channel partner receiving multiple emails from... | hi,\nour channel partner with the email addres... | qcfmxgid jvxanwre | GRP_15 | channel partner receiving multiple emails from... | English |
| 142 | usa - (company) : interface fastethernet0/16 &... | usa - (company) : interface fastethernet0/16 &... | jyoqwxhz clhxsoqy | GRP_8 | usa - (company) : interface fastethernet0/16 &... | English |
| 143 | password reset | \n\nreceived from: qtrmxlgv.dfruzvam@gmail.com... | qtrmxlgv dfruzvam | GRP_0 | password reset \n\nreceived from: qtrmxlgv.dfr... | English |
| 144 | ess login issue | ess login issue\r\n-verified user details.(emp... | ukzfqjet zcbhpweo | GRP_0 | ess login issue ess login issue\r\n-verified u... | English |
| 145 | unable to start dell 7350 2 in 1 device | qifzkoej etbmgjvo is unable to start his dell ... | qifzkoej etbmgjvo | GRP_0 | unable to start dell 7350 2 in 1 device qifzko... | English |
| 146 | erp_print_tool install. | erp_print_tool install. | aorthyme rnsuipbk | GRP_0 | erp_print_tool install. erp_print_tool install. | Kinyarwanda |
| 147 | good morning. i am having trouble getting into... | name:wvngzrca sfmrzdth\nlanguage:\nbrowser:mic... | wvngzrca sfmrzdth | GRP_0 | good morning. i am having trouble getting into... | English |
| 148 | install acrobat standard | install acrobat standard | iefgkray zdyksvpw | GRP_0 | install acrobat standard install acrobat standard | Malay |
| 149 | password reset from ad | password reset from ad | rbozivdq gmlhrtvp | GRP_0 | password reset from ad password reset from ad | English |
| 150 | reset the password for wseacnvi azvixyqg on er... | please reset my password to SID_1. it's blocke... | wseacnvi azvixyqg | GRP_0 | reset the password for wseacnvi azvixyqg on er... | English |
| 151 | i used to have acces to this location on colla... | \n\nreceived from: bwfhtumx.japznrvb@gmail.com... | bwfhtumx japznrvb | GRP_16 | i used to have acces to this location on colla... | English |
| 152 | crm add-in is getting disabled from outlook | crm add-in is getting disabled from outlook | lrbjqcmh jbiwtzqr | GRP_0 | crm add-in is getting disabled from outlook c... | English |
| 153 | outlook hangs. | outlook hangs. | rjsulvat uanigkqc | GRP_0 | outlook hangs. outlook hangs. | English |
| 154 | vpn not working. | vpn not working. | vtnkwxhr tqxrglvh | GRP_0 | vpn not working. vpn not working. | English |
| 155 | reset passwords for hckvpary emxbpkwy using pa... | employee is getting an error "user authenticat... | hckvpary emxbpkwy | GRP_17 | reset passwords for hckvpary emxbpkwy using pa... | English |
| 156 | job bkbackup_tool_sql_prod_inc failed in job_s... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_sql_prod_inc failed in job_s... | English |
| 157 | ess password reset | ess password reset | mtgujlcb kczyvpqr | GRP_0 | ess password reset ess password reset | English |
| 158 | wy123 printer | \n\nreceived from: nxhwyepl.mudstbxo@gmail.com... | nxhwyepl mudstbxo | GRP_0 | wy123 printer \n\nreceived from: nxhwyepl.muds... | English |
| 159 | update java viewer ? | \r\n\r\nreceived from: uijxpazn.gvtzlphs@gmail... | uijxpazn gvtzlphs | GRP_0 | update java viewer ? \r\n\r\nreceived from: ui... | English |
| 160 | job Job_137 failed in job_scheduler at: 10/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_137 failed in job_scheduler at: 10/28/... | English |
| 161 | HostName_1297 is currently experiencing high c... | we are observing below alert in monitoring_too... | jloygrwh acvztedi | GRP_14 | HostName_1297 is currently experiencing high c... | English |
| 162 | access to bex | \r\n\r\nreceived from: yfqoaepn.xnezhsit@gmail... | yfqoaepn xnezhsit | GRP_0 | access to bex \r\n\r\nreceived from: yfqoaepn.... | English |
| 163 | windows account lockout | windows account lockout | kcipjago mlkptgvb | GRP_0 | windows account lockout windows account lockout | English |
| 164 | 撤回: ticket_no1564867 -- comments added | \n\nreceived from: abcdri@company.com\n\nwindy... | tycludks cjofwigv | GRP_0 | 撤回: ticket_no1564867 -- comments added \n\... | English |
| 165 | account locked in erp SID_34 | account locked in erp SID_34 | uvwphrbl hfqdumtv | GRP_0 | account locked in erp SID_34 account locked in... | English |
| 166 | job Job_593 failed in job_scheduler at: 10/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/28/... | English |
| 167 | user needs training to use engineering tool to... | user needs training to use engineering tool to... | rkzqjbwc juizkwpl | GRP_0 | user needs training to use engineering tool to... | English |
| 168 | skype not working | \r\n\r\nreceived from: rhwvpmlq.zuwhpqrc@gmail... | rhwvpmlq zuwhpqrc | GRP_0 | skype not working \r\n\r\nreceived from: rhwvp... | English |
| 169 | account unlock request. | account unlock request. | lvxakohq tsfnhowj | GRP_0 | account unlock request. account unlock request. | English |
| 170 | [urgent!!] delivery note creation request!! | \n\nreceived from: fbvpcytz.nokypgvx@gmail.com... | fbvpcytz nokypgvx | GRP_18 | [urgent!!] delivery note creation request!! \... | English |
| 171 | job Job_495 failed in job_scheduler at: 10/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_495 failed in job_scheduler at: 10/28/... | English |
| 172 | job Job_481 failed in job_scheduler at: 10/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_481 failed in job_scheduler at: 10/28/... | English |
| 173 | error login on to the SID_34 system. | error login on to the SID_34 system. | woaiypxu dxslkbif | GRP_0 | error login on to the SID_34 system. error log... | English |
| 174 | unable to take print out from wy4678 | unable to take print out from wy4678 | ewiakvmz tufwrhaj | GRP_19 | unable to take print out from wy4678 unable to... | English |
| 175 | job Job_487 failed in job_scheduler at: 10/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_487 failed in job_scheduler at: 10/28/... | English |
| 176 | unlock supply_chain_software account | \r\n\r\nreceived from: fgehvwxb.ckxegsqv@gmail... | fgehvwxb ckxegsqv | GRP_0 | unlock supply_chain_software account \r\n\r\n... | English |
| 177 | unable to access password_management_tool id p... | i try to change now my password acc. to attach... | ijeqpkrz nwtehsyx | GRP_2 | unable to access password_management_tool id p... | English |
| 178 | job HostName_957fail failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job HostName_957fail failed in job_scheduler a... | English |
| 179 | unable to login to erp SID_34 | unable to login to erp SID_34 | bioanvcz zgfiahyo | GRP_0 | unable to login to erp SID_34 unable to login... | English |
| 180 | crm license for user dfgry | from: xdvwitpm zscxqdhoalaramdntyan \nsent: fr... | xdvwitpm zscxqdho | GRP_19 | crm license for user dfgry from: xdvwitpm zscx... | English |
| 181 | unable to connect to vpn | unable to connect to vpn | aljbtwsh lepkbgix | GRP_19 | unable to connect to vpn unable to connect to vpn | English |
| 182 | job Job_1854 failed in job_scheduler at: 10/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1854 failed in job_scheduler at: 10/28... | English |
| 183 | windows account locked | windows account locked | lvxakohq tsfnhowj | GRP_0 | windows account locked windows account locked | English |
| 184 | apply for mobile phone access to mail box | apply for mobile phone access to mail box | hygiajzb ajvmhbsr | GRP_0 | apply for mobile phone access to mail box appl... | English |
| 185 | data not correctly pulled for all the employee... | data not correctly pulled for all the employee... | rdfjsawg zpmxgdcw | GRP_20 | data not correctly pulled for all the employee... | English |
| 186 | é’å²›å…´åˆæœºç”µshipment notification邮箱è... | from: \nsent: friday, october 28, 2016 7:20 a... | yafxlpwi lhxvatkb | GRP_18 | é’å²›å…´åˆæœºç”µshipment notification邮箱è... | English |
| 187 | to recover folder that by mistake copied to x:... | i want recover folder\r\n | pbtauqyx civyxdkl | GRP_0 | to recover folder that by mistake copied to x:... | English |
| 188 | job bkwin_HostName_770_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_770_inc failed in job_sched... | English |
| 189 | network outage: india: site hard down since at... | what type of outage: __x___network _____c... | mnlazfsr mtqrkhnx | GRP_8 | network outage: india: site hard down since at... | English |
| 190 | password reset request | password reset request | nyscufdq wjtcsahz | GRP_0 | password reset request password reset request | English |
| 191 | user is not able to see all text in mails on h... | user is not able to see all text in mails on h... | yaxrnmsz bultagqx | GRP_0 | user is not able to see all text in mails on h... | English |
| 192 | password reset | password reset | ptaerwvk ibvpucyn | GRP_0 | password reset password reset | English |
| 193 | unable to sync all mails in outlook on wifi | unable to sync all mails in outlook on wifi | vzrbocfl wxtpoyez | GRP_0 | unable to sync all mails in outlook on wifi un... | English |
| 194 | crm tab does not appear on outlook | crm tab does not appear on outlook | lrbjqcmh jbiwtzqr | GRP_0 | crm tab does not appear on outlook crm tab doe... | English |
| 195 | unable to submit expense report as it is locke... | unable to submit expense report as it is locke... | pvbomqht smfkuhwi | GRP_0 | unable to submit expense report as it is locke... | English |
| 196 | titcket update on inplant_874008 | titcket update on inplant_874008 | fumkcsji sarmtlhy | GRP_0 | titcket update on inplant_874008 titcket updat... | English |
| 197 | i need to approve the new product requests below | i need to approve the new product requests below | uyrpdvoq mbzevtcx | GRP_21 | i need to approve the new product requests bel... | English |
| 198 | ticket update on inplant_873870 | ticket update on inplant_873870 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_873870 ticket update ... | English |
| 199 | changed desktop wallpaper | changed desktop wallpaper | aqdjcuhn lagfitkz | GRP_0 | changed desktop wallpaper changed desktop wall... | English |
| 200 | unable to open website | \nname:xbdht yrjhd\nlanguage:\nbrowser:microso... | aqjdvexo lmedazjo | GRP_0 | unable to open website \nname:xbdht yrjhd\nlan... | English |
| 201 | msd crm | assign crm and e4 license to nyrjkctu tbhkenlo... | qmglkaru qiwhfkdv | GRP_22 | msd crm assign crm and e4 license to nyrjkctu ... | English |
| 202 | sound | \r\n\r\nreceived from: udetjzmn.ayueswcm@gmail... | udetjzmn ayueswcm | GRP_0 | sound \r\n\r\nreceived from: udetjzmn.ayueswcm... | English |
| 203 | need the username to submit the insurance | need the username to submit the insurance | kamtroxv oequfsky | GRP_0 | need the username to submit the insurance need... | English |
| 204 | query on external browser | query on external browser | crkdjbot qiztrxne | GRP_0 | query on external browser query on external b... | English |
| 205 | unable to access benefits and other apps in hr... | unable to access benefits and other apps in hr... | batsxwnl ashkzvnr | GRP_2 | unable to access benefits and other apps in hr... | English |
| 206 | unable to see the current course in ethics | unable to see the current course in ethics\n\n... | ajgnibkx zixmcjgu | GRP_23 | unable to see the current course in ethics una... | English |
| 207 | user clicked on driver update manually and the... | user clicked on driver update manually and the... | nyscufdq wjtcsahz | GRP_0 | user clicked on driver update manually and the... | English |
| 208 | erp SID_37 account unlock | erp SID_37 account unlock | mfeyouli ndobtzpw | GRP_0 | erp SID_37 account unlock erp SID_37 account u... | English |
| 209 | windows password reset | windows password reset | gtxuamif pamxszek | GRP_0 | windows password reset windows password reset | English |
| 210 | telephone number update | telephone number update | ufpkvlyn bozthrie | GRP_0 | telephone number update telephone number update | English |
| 211 | insurance information | insurance information | gxvhauic zogmauli | GRP_0 | insurance information insurance information | English |
| 212 | please give chrtyad345 access to reporting_too... | please give chrtyad345 access to reporting_too... | icqleypr kneoblzd | GRP_2 | please give chrtyad345 access to reporting_too... | English |
| 213 | loud noise // gso | loud noise // gso | rbozivdq gmlhrtvp | GRP_0 | loud noise // gso loud noise // gso | English |
| 214 | ess kiosk user password reset | ess kiosk user password reset | rbozivdq gmlhrtvp | GRP_0 | ess kiosk user password reset ess kiosk user p... | English |
| 215 | network outage - warehouse: node company-ups-... | what type of outage: __x___network _____c... | jyoqwxhz clhxsoqy | GRP_8 | network outage - warehouse: node company-ups-... | English |
| 216 | aw: ticket_no1561075 -- comments added | \n\nreceived from: repyzajo.lxfwopyq@gmail.com... | repyzajo lxfwopyq | GRP_18 | aw: ticket_no1561075 -- comments added \n\nrec... | English |
| 217 | erp SID_34 account unlock | erp SID_34 account unlock | woaiypxu dxslkbif | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 218 | export shipment of grinding mahcine to khdgd12... | \n\nreceived from: rdfjsawg.zpmxgdcw@gmail.com... | rdfjsawg zpmxgdcw | GRP_0 | export shipment of grinding mahcine to khdgd12... | English |
| 219 | please add my work phone number to my profile | contact phone | jondkicb yahtgpuv | GRP_0 | please add my work phone number to my profile ... | English |
| 220 | adding members to dl | adding members to dl | msarjyhi fpxdbeno | GRP_0 | adding members to dl adding members to dl | English |
| 221 | java issue on uacyltoe hxgaycze laptop. | java issue on uacyltoe hxgaycze laptop. | akhdmgwt yhgpafqx | GRP_19 | java issue on uacyltoe hxgaycze laptop. java i... | English |
| 222 | support für fa.gstry \arexjftu ohxdwngl | support für fa.konnica \arexjftu ohxdwngl | arexjftu ohxdwngl | GRP_24 | support für fa.gstry \arexjftu ohxdwngl suppo... | English |
| 223 | probleme mit bluescreen . | hallo ,\n\nes ist erneut passiert. der pc hat ... | vrfpyjwi nzhvgqiw | GRP_24 | probleme mit bluescreen . hallo ,\n\nes ist er... | German |
| 224 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 225 | EU_tool crashes when confirmations are deleted... | EU_tool crashes when confirmations are deleted... | mlckvyfq aonlxvwb | GRP_25 | EU_tool crashes when confirmations are deleted... | English |
| 226 | enable bgdxitwu dhcopwxa' active directory acc... | enable bgdxitwu dhcopwxa' active directory acc... | kcwqdeob jwtpkzub | GRP_2 | enable bgdxitwu dhcopwxa' active directory acc... | English |
| 227 | sync emails issue | sync emails issue | wjkzgyxh pktcqbxu | GRP_0 | sync emails issue sync emails issue | English |
| 228 | internet explorer issues | user is having issues with his internet explor... | pbrmgyzo hzoxdijn | GRP_3 | internet explorer issues user is having issues... | English |
| 229 | call for ecwtrjnq jpecxuty | call for ecwtrjnq jpecxuty | olckhmvx pcqobjnd | GRP_0 | call for ecwtrjnq jpecxuty call for ecwtrjnq j... | English |
| 230 | blank call | blank call | rbozivdq gmlhrtvp | GRP_0 | blank call blank call | English |
| 231 | unable to view payslips | unable to view payslips | aqdjcuhn lagfitkz | GRP_0 | unable to view payslips unable to view payslips | English |
| 232 | customer not getting order acknowledgements au... | \n\nreceived from: ourhmqta.tjwnqexo@gmail.com... | kgqpwvzu rkexzwlh | GRP_13 | customer not getting order acknowledgements au... | English |
| 233 | production order locked. | production order 226061609 is locked by user, ... | aqgphjbc utjrsedy | GRP_14 | production order locked. production order 2260... | English |
| 234 | i need access to finance section of hub | \n\nreceived from: bwfhtumx.japznrvb@gmail.com... | bwfhtumx japznrvb | GRP_16 | i need access to finance section of hub \n\nre... | English |
| 235 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | jfsmwpny klxsdqiw | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 236 | i've received the message below. can you tell ... | i've received the message below. can you tell ... | xawlkiey demjqrfl | GRP_26 | i've received the message below. can you tell ... | English |
| 237 | email address confirmation | email address confirmation | fyokahtw sidurjge | GRP_0 | email address confirmation email address confi... | English |
| 238 | erp pi and msd crm connectivity issue- serirtc... | hi all\n\nwe have a connectivity issue between... | kgytujhe bonhwzrx | GRP_14 | erp pi and msd crm connectivity issue- serirtc... | English |
| 239 | printer problem / issue information | please complete all required questions below. ... | dzjxrkae grqczsmx | GRP_3 | printer problem / issue information please com... | English |
| 240 | power outage :australia australia: site hard d... | what type of outage: __x___network _____c... | utyeofsk rdyzpwhi | GRP_8 | power outage :australia australia: site hard d... | English |
| 241 | unable to log into erp | \r\n\r\nreceived from: ygkzwsud.cvjgkxws@gmail... | ygkzwsud cvjgkxws | GRP_0 | unable to log into erp \r\n\r\nreceived from:... | English |
| 242 | windows password reset | windows password reset | hcplzsxg qkujnapl | GRP_0 | windows password reset windows password reset | English |
| 243 | activate iphone | iygsxftl hysrbgad set up a spare "company owne... | fbyusmxz kxvmcbly | GRP_0 | activate iphone iygsxftl hysrbgad set up a sp... | English |
| 244 | login issue | login issue\r\n-verified user details.(employe... | serckxqb mljnkgze | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 245 | unable to print to printer | ic: welcome, our next available agent will be ... | vsbtygin oufhtbas | GRP_0 | unable to print to printer ic: welcome, our ne... | English |
| 246 | job Job_2668 failed in job_scheduler at: 10/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2668 failed in job_scheduler at: 10/27... | English |
| 247 | outlook crashing | ic: welcome, our next available agent will be ... | tphbruoq xtukhnym | GRP_27 | outlook crashing ic: welcome, our next availab... | English |
| 248 | need file restored on t drive | ic: welcome, our next available agent will be ... | kslhobgj cyhvefna | GRP_0 | need file restored on t drive ic: welcome, our... | English |
| 249 | SID_1 logon balancing error | ic: welcome, our next available agent will be ... | zstkagwu jlyrhdcf | GRP_0 | SID_1 logon balancing error ic: welcome, our n... | English |
| 250 | unable to login to sfb | name:obanjrhg rnafleys\nlanguage:\nbrowser:mic... | obanjrhg rnafleys | GRP_27 | unable to login to sfb name:obanjrhg rnafleys\... | English |
| 251 | reset the password for fygrwuna gomcekzi on e-... | bitte passwort für fygrwuna gomcekzi e-mail z... | fygrwuna gomcekzi | GRP_0 | reset the password for fygrwuna gomcekzi on e-... | German |
| 252 | password resetfor SID_37 | \r\n\r\nreceived from: xyculgav.cuqptoah@gmail... | xyculgav cuqptoah | GRP_0 | password resetfor SID_37 \r\n\r\nreceived from... | English |
| 253 | babiluntr client license expired and client is... | babiluntr client license expired and client is... | dkinobsv wymgzcrh | GRP_28 | babiluntr client license expired and client is... | English |
| 254 | outbound calls not possible via germany pbx sy... | outbound calls not possible via germany pbx sy... | dqeowzux cjorxvew | GRP_28 | outbound calls not possible via germany pbx sy... | English |
| 255 | probleme mit laufwerk z: \laeusvjo fvaihgpx | probleme mit laufwerk z: \laeusvjo fvaihgpx | laeusvjo fvaihgpx | GRP_24 | probleme mit laufwerk z: \laeusvjo fvaihgpx pr... | German |
| 256 | pls also extend mm#7389861 & 7421988 to my pur... | pls also extend mm#7389861 & 7421988 to my pur... | ckitashy dnqojbwi | GRP_29 | pls also extend mm#7389861 & 7421988 to my pur... | English |
| 257 | the t/o can not be generated for dn 8058611713 | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_18 | the t/o can not be generated for dn 8058611713... | English |
| 258 | itry to open a excel file with microsoft onlin... | name:\nlanguage:\nbrowser:microsoft internet e... | mfrsnagc mhakdfjo | GRP_0 | itry to open a excel file with microsoft onlin... | English |
| 259 | unable to login to hr_tool | unable to login to hr_tool \n\n | imoelsap gxdwkimv | GRP_0 | unable to login to hr_tool unable to login to... | English |
| 260 | vip2-i have been unable to access my pay&taxes... | from: gstdy tehdy \nsent: thursday, october 27... | vkjdgtxb pkinmjqs | GRP_0 | vip2-i have been unable to access my pay&taxes... | English |
| 261 | business_client not working | business_client not working | jbiuvsfk pkvgyhqx | GRP_0 | business_client not working business_client no... | English |
| 262 | reporting_tool erp hana error | \r\n\r\nreceived from: lhejbwkc.xbmyvnqf@gmail... | lhejbwkc xbmyvnqf | GRP_9 | reporting_tool erp hana error \r\n\r\nreceived... | English |
| 263 | job bwhrattr failed in job_scheduler at: 10/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 10/27... | English |
| 264 | please reset my erp and bex password - seem to... | \n\nreceived from: fmzdkyqv.dbrslnhe@gmail.com... | fmzdkyqv dbrslnhe | GRP_0 | please reset my erp and bex password - seem to... | English |
| 265 | netweaver funktioniert nicht mehr | \r\n\r\nreceived from: fcyuqvoj.ajqeidlm@gmail... | fcyuqvoj ajqeidlm | GRP_0 | netweaver funktioniert nicht mehr \r\n\r\nrece... | English |
| 266 | a kündigung for fgxprnub hlanwgqj, 11161827, ... | a kündigung for fgxprnub hlanwgqj, 11161827, ... | ucawbivs ountxzir | GRP_2 | a kündigung for fgxprnub hlanwgqj, 11161827, ... | English |
| 267 | job Job_1854 failed in job_scheduler at: 10/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1854 failed in job_scheduler at: 10/27... | English |
| 268 | outlook setting is changed | outlook setting is changed | scjxobhd ldypjkmf | GRP_0 | outlook setting is changed outlook setting is... | English |
| 269 | job Job_2584 failed in job_scheduler at: 10/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2584 failed in job_scheduler at: 10/27... | English |
| 270 | neues passwort für accountname tgryhu hgygrtui | neues passwort für accountname tgryhu hgygrtu... | nemzycxb xpsgkahw | GRP_0 | neues passwort für accountname tgryhu hgygrtu... | German |
| 271 | check status tab is not appearing in purchasin... | check status button is not seen in my purchasi... | shjbrutf iknuqswm | GRP_0 | check status tab is not appearing in purchasin... | English |
| 272 | printer problem / issue information | drucker / scanner em85678\n \n scanner findet ... | lpfwkotn keycvxsl | GRP_0 | printer problem / issue information drucker / ... | English |
| 273 | unable to open erp SID_34 while in office | without logging in to vpn remote, i am unable ... | shjbrutf iknuqswm | GRP_0 | unable to open erp SID_34 while in office with... | English |
| 274 | windows account locked | windows account locked | kiqrvwat gwkpxzyt | GRP_0 | windows account locked windows account locked | English |
| 275 | skype meeting | \r\n\r\nreceived from: tfnzwycd.bicohjga@gmail... | tfnzwycd bicohjga | GRP_0 | skype meeting \r\n\r\nreceived from: tfnzwycd.... | English |
| 276 | outlook收到箱ä¸folderå˜ä¸ºæ¯å¤©ä¸€ä¸ªfol... | outlook收到箱ä¸folderå˜ä¸ºæ¯å¤©ä¸€ä¸ªfol... | bxfdkiol mdqlszvc | GRP_30 | outlook收到箱ä¸folderå˜ä¸ºæ¯å¤©ä¸€ä¸ªfol... | English |
| 277 | can not login skype | \r\n\r\nreceived from: icvulkwh.udnyietg@gmail... | icvulkwh udnyietg | GRP_31 | can not login skype \r\n\r\nreceived from: icv... | English |
| 278 | sn 04os20400001808 has been identified as unav... | sn 04os20400001808 has been identified as unav... | mnlazfsr mtqrkhnx | GRP_12 | sn 04os20400001808 has been identified as unav... | English |
| 279 | unable to create delivery:mm#2110924 can print... | please provide the following:\r\n\r\nwhat orde... | bjrtfeyi fuqapwtv | GRP_6 | unable to create delivery:mm#2110924 can print... | English |
| 280 | erp SID_34 account locked | erp SID_34 account locked | afijkocw rjtxslpa | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 281 | unable to down load ethics module | from: brdhdd dhwduw\nsent: thursday, october 2... | dqwhpjxy pozjxbey | GRP_0 | unable to down load ethics module from: brdhd... | English |
| 282 | 转å‘: company email to private phone-hprdlb... | \r\n\r\nreceived from: hprdlbxf.nozjtgwi@gmail... | hprdlbxf nozjtgwi | GRP_0 | 转å‘: company email to private phone-hprdlb... | English |
| 283 | network outage: , india: site hard down since ... | what type of outage: __x___network _____c... | mnlazfsr mtqrkhnx | GRP_8 | network outage: , india: site hard down since ... | English |
| 284 | unable to log in to ess | unable to log in to ess | zqvpaxry yvzodtqp | GRP_0 | unable to log in to ess unable to log in to ess | English |
| 285 | skype error while logging in | skype error while logging in | nyjvwsxf npwoglzf | GRP_0 | skype error while logging in skype error whil... | English |
| 286 | vitalyst transfer: crm installation | vitalyst transfer: crm installation | anpocezt qturbxsg | GRP_0 | vitalyst transfer: crm installation vitalyst ... | English |
| 287 | unable to access benefits tab | unable to access benefits tab | qlpmxbno fjxuqbew | GRP_0 | unable to access benefits tab unable to access... | English |
| 288 | laptop is very slow, any dialog bog i open is... | laptop is very slow, any dialog bog i open is... | ieptnhox xastpbfy | GRP_0 | laptop is very slow, any dialog bog i open is... | English |
| 289 | ticket update on inplant_873601 | ticket update on inplant_873601 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_873601 ticket update ... | English |
| 290 | running full production and need erp update pu... | summary:for saturday october 29 th we will be... | xrmvbenu pynjmqci | GRP_5 | running full production and need erp update pu... | English |
| 291 | india: 29060s-access-sw01 and sw02 went down ... | india: 29060s-access-sw01 and sw02 went down ... | mnlazfsr mtqrkhnx | GRP_8 | india: 29060s-access-sw01 and sw02 went down ... | English |
| 292 | need password reset | need password reset | mkozqvfr ixsqykhe | GRP_0 | need password reset need password reset | English |
| 293 | issues with pdf viewer on iphone for davidthd | issues with pdf viewer on iphone for davidthd | eqzibjhw ymebpoih | GRP_0 | issues with pdf viewer on iphone for davidthd ... | English |
| 294 | engineering_tools not connected to network eve... | engineering_tools not connected to network eve... | tgseqfni ehlabdtf | GRP_0 | engineering_tools not connected to network eve... | English |
| 295 | outlook/crm | \r\n\r\nreceived from: anpocezt.qturbxsg@gmail... | anpocezt qturbxsg | GRP_0 | outlook/crm \r\n\r\nreceived from: anpocezt.qt... | English |
| 296 | need erp password reset for hdty.yrhxssytu@com... | need erp password reset for hdty.yrhxssytu@com... | ldgyxbrm cdporkfj | GRP_0 | need erp password reset for hdty.yrhxssytu@com... | English |
| 297 | i need security for the uacyltoe hxgaycze and ... | \r\n\r\nreceived from: azxhejvq.fyemlavd@gmail... | azxhejvq fyemlavd | GRP_22 | i need security for the uacyltoe hxgaycze and ... | English |
| 298 | internal users are unable to download discount... | internal users are unable to download discount... | stdezpqw bkmeuhfz | GRP_21 | internal users are unable to download discount... | English |
| 299 | unable to login to collaboration_platform | unable to login to collaboration_platform | vmfopnsj nuhldvxw | GRP_0 | unable to login to collaboration_platform unab... | English |
| 300 | unable to receive emails on company provided i... | unable to receive emails on company provided i... | naecuhxz hdrqvume | GRP_0 | unable to receive emails on company provided i... | English |
| 301 | windows password reset | windows password reset | rlhkfdqa fmhioqla | GRP_0 | windows password reset windows password reset | English |
| 302 | EU_tool ist sehr langsadgtym \ywqgrbnx jwnsyzb... | EU_tool ist sehr langsadgtym \ywqgrbnx jwnsyzb... | jionmpsf wnkpzcmv | GRP_24 | EU_tool ist sehr langsadgtym \ywqgrbnx jwnsyzb... | German |
| 303 | request to reset microsoft online services pas... | request to reset microsoft online services pas... | sgblhypi htqmidsn | GRP_0 | request to reset microsoft online services pas... | English |
| 304 | alte eq abholen \wrcktgbd wzrgyunp | alte eq abholen \wrcktgbd wzrgyunp | wrcktgbd wzrgyunp | GRP_24 | alte eq abholen \wrcktgbd wzrgyunp alte eq abh... | German |
| 305 | probleme lan an tgeyd1 \we_wu113 \wrcktgbd wzr... | probleme lan an tgeyd1 \we_wu113 \wrcktgbd wzr... | wrcktgbd wzrgyunp | GRP_24 | probleme lan an tgeyd1 \we_wu113 \wrcktgbd wzr... | Scots |
| 306 | support für we111\zlqfptjx xnklbfua | support für we111\zlqfptjx xnklbfua | zlqfptjx xnklbfua | GRP_24 | support für we111\zlqfptjx xnklbfua support f... | English |
| 307 | username locked | \n\nreceived from: inhekdol.anvqzdif@gmail.com... | inhekdol anvqzdif | GRP_0 | username locked \n\nreceived from: inhekdol.an... | English |
| 308 | unable to connect to lan internet | unable to connect to lan internet | qwreamdz pmarxvtk | GRP_0 | unable to connect to lan internet unable to c... | English |
| 309 | install collaboration_platform | install collaboration_platform | cqwtksbu tgxockrn | GRP_0 | install collaboration_platform install collabo... | English |
| 310 | request to reset microsoft online services pas... | request to reset microsoft online services pas... | hbcejwsz cejsmdpf | GRP_0 | request to reset microsoft online services pas... | English |
| 311 | ticket update | ticket update | pbhmwqtz wqlbudjx | GRP_0 | ticket update ticket update | English |
| 312 | erp SID_34 account unlock | erp SID_34 account unlock | wjsfbpuv lcpdfihr | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 313 | cannot access guest wifi sponsor portal | receive "sponsor portal internal error" when a... | ctxwsvam vwgpjauf | GRP_0 | cannot access guest wifi sponsor portal receiv... | English |
| 314 | user needs help to login to the company vpn. | user needs help to login to the company vpn.\r... | jborwynt gidxbfrq | GRP_0 | user needs help to login to the company vpn. u... | English |
| 315 | need to map mailboxes of colleagues. | need to map mailboxes of colleagues. | tbepisvq fxvgltmp | GRP_0 | need to map mailboxes of colleagues. need to m... | English |
| 316 | erp SID_34 password reset | erp SID_34 password reset | lbtrsuev fxyrgeps | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 317 | new team details not updated on bobj reports f... | new team and manager details not updated on bo... | owtlmpuv oicrjsfh | GRP_9 | new team details not updated on bobj reports f... | English |
| 318 | email font showing very small when replying to... | email font showing very small when replying to... | dqgjxhrt kydnpacx | GRP_0 | email font showing very small when replying to... | English |
| 319 | reset passwords for hdthy v hstdd using passwo... | reset passwords for hdthy v hstdd using passwo... | kcnosyae zlpmfxgs | GRP_17 | reset passwords for hdthy v hstdd using passwo... | English |
| 320 | computer in the maintenance dept. is down. ple... | computer in the maintenance dept. is down. ple... | juaxnvwz reampilj | GRP_3 | computer in the maintenance dept. is down. ple... | English |
| 321 | computer is down in the old cnc area. please f... | computer is down in the old cnc area. please f... | juaxnvwz reampilj | GRP_3 | computer is down in the old cnc area. please f... | English |
| 322 | user needs new telephony_software password. | user needs new telephony_software password.\n | mvaxhzks kyzvflth | GRP_7 | user needs new telephony_software password. us... | English |
| 323 | vip - printer connection request to ag99435 | \n\nreceived from: sbgvrncj.idfhtoqv@gmail.com... | sbgvrncj idfhtoqv | GRP_0 | vip - printer connection request to ag99435 \... | English |
| 324 | i cannot get onto the network on my pc. | i cannot get onto the network on my pc. | ubqjihpt pzrjxmgd | GRP_3 | i cannot get onto the network on my pc. i cann... | English |
| 325 | vip 1 :login issue | login issue\r\n-verified user details.(employe... | tqjsmwvk arqoytbh | GRP_0 | vip 1 :login issue login issue\r\n-verified us... | English |
| 326 | misplaced password for the hub | unable to login to the hub | heuvlktj ulzcsyvi | GRP_0 | misplaced password for the hub unable to login... | English |
| 327 | please reset my SID_34 password | \n\nreceived from: azxhejvq.fyemlavd@gmail.com... | azxhejvq fyemlavd | GRP_0 | please reset my SID_34 password \n\nreceived f... | English |
| 328 | need to setup guest wi fi access | need to setup guest wi fi access | hmgbwyce sacuoyfe | GRP_0 | need to setup guest wi fi access need to setup... | English |
| 329 | trouble viewing and printing commerirtcal inwa... | \r\n\r\nreceived from: iksqbuxf.muzxgwvk@gmail... | iksqbuxf muzxgwvk | GRP_18 | trouble viewing and printing commerirtcal inwa... | English |
| 330 | outlook won't open. | outlook won't open. | rjfmpgdq outipdcm | GRP_3 | outlook won't open. outlook won't open. | English |
| 331 | engineering tool takes a long time to load | issue is severe especially after 3:30 pm every... | janivrtg hstolemu | GRP_0 | engineering tool takes a long time to load iss... | English |
| 332 | folders list in outlook dierppeared | cannot see any of the folders, in outlook, ema... | ijmabvlz vosuedkm | GRP_0 | folders list in outlook dierppeared cannot see... | English |
| 333 | windows password reset | windows password reset | snxlwqzo uxkgdiov | GRP_0 | windows password reset windows password reset | English |
| 334 | cannot connect to network resources in hq | cannot access erp, hq network drives\ninternal... | mfvkxghn mzjasxqd | GRP_4 | cannot connect to network resources in hq cann... | English |
| 335 | dringend : schulungsraum 1 . sprechanlage funk... | schulungsraum 1 . sprechanlage funktioniert ni... | qrmbywzv mnvdcuhj | GRP_28 | dringend : schulungsraum 1 . sprechanlage funk... | German |
| 336 | data back up for germany | data back up for germany | bjtguqne xthqrzpc | GRP_12 | data back up for germany data back up for germany | English |
| 337 | server ekpsm005678 located at germany location... | server ekpsm005678 located at germany location... | dkmcfreg anwmfvlg | GRP_12 | server ekpsm005678 located at germany location... | English |
| 338 | germany - (company):pbx trunk card &pbx since... | germany - (company):pbx trunk card &pbx since... | oldrctiu bxurpsyi | GRP_8 | germany - (company):pbx trunk card &pbx since... | English |
| 339 | konto gespaerrt. | konto gespaerrt. | mtairqlh zuhyfmnp | GRP_0 | konto gespaerrt. konto gespaerrt. | Dutch |
| 340 | unable to sign in to the vpn | i am not able to sign onto vpn with my user na... | lwgytuxq qspdztiw | GRP_0 | unable to sign in to the vpn i am not able to ... | English |
| 341 | security incidents - ( #in33071122 ) :[ipbl]: ... | source ip :\nsystem name :lmsl9516338\nuser n... | gzhapcld fdigznbk | GRP_3 | security incidents - ( #in33071122 ) :[ipbl]: ... | English |
| 342 | shortcut opening multiple folders | shortcut opening multiple folders | hnkwirgv wdgebvpz | GRP_0 | shortcut opening multiple folders shortcut ope... | English |
| 343 | system updation for govt. tender e-procurement | \n\nreceived from: qalyeunp.eiyrcxog@gmail.com... | qalyeunp eiyrcxog | GRP_19 | system updation for govt. tender e-procurement... | English |
| 344 | unable to login to pc | account locked out | bjtguqne xthqrzpc | GRP_0 | unable to login to pc account locked out | English |
| 345 | urgent - access to rtnzvplq erhmuncq disconnected | \n\nreceived from: osjqfbvw.hlmgrfpx@gmail.com... | osjqfbvw hlmgrfpx | GRP_0 | urgent - access to rtnzvplq erhmuncq disconnec... | English |
| 346 | job Job_2103 failed in job_scheduler at: 10/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2103 failed in job_scheduler at: 10/26... | English |
| 347 | job pp_EU_tool_conf_ap1 failed in job_schedule... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_conf_ap1 failed in job_schedule... | English |
| 348 | expense report - receipt entry screen keeps lo... | expense report - receipt entry screen keeps lo... | jgxclrzp jzeantui | GRP_0 | expense report - receipt entry screen keeps lo... | English |
| 349 | install EU_tool \laeusvjo fvaihgpx | install EU_tool \laeusvjo fvaihgpx | laeusvjo fvaihgpx | GRP_24 | install EU_tool \laeusvjo fvaihgpx install EU_... | Zhuang |
| 350 | access to m:\live\mw_live(HostName_95) | please provide access to below drive to view t... | jycshmvf uewramti | GRP_12 | access to m:\live\mw_live(HostName_95) please... | English |
| 351 | network outage:germany site is down since 4.46... | what type of outage: ____x_network _____c... | utyeofsk rdyzpwhi | GRP_8 | network outage:germany site is down since 4.46... | English |
| 352 | entire location at germany network is down.(ge... | entire location at germany network is down.\n-... | mynfoicj riuvxdas | GRP_8 | entire location at germany network is down.(ge... | English |
| 353 | HostName_19 : volume c:\ disk consumed is 85% . | HostName_19 : volume c:\ disk consumed is 85% . | utyeofsk rdyzpwhi | GRP_12 | HostName_19 : volume c:\ disk consumed is 85%... | English |
| 354 | let's talk - not playing | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_19 | let's talk - not playing \r\n\r\nreceived from... | English |
| 355 | HostName_1035(bobj): cpu load on server is hig... | HostName_1035(bobj): cpu load on server is hig... | dkmcfreg anwmfvlg | GRP_12 | HostName_1035(bobj): cpu load on server is hig... | English |
| 356 | purchasing can not working | purchasing input the related the information ,... | vSMfFXAJ OUAhWpDS | GRP_29 | purchasing can not working purchasing input t... | English |
| 357 | EU_tool aktualisierung alle 15 min läuft nich... | EU_tool aktualisierung alle 15 min läuft nicht | kfirsmxn dieluyra | GRP_25 | EU_tool aktualisierung alle 15 min läuft nich... | German |
| 358 | kindly copy the desktop files of (user id: v... | kindly copy the desktop files of (user id: v... | gzmafoiv spqjlbar | GRP_19 | kindly copy the desktop files of (user id: v... | English |
| 359 | problems with nikulatrhdy | \n\nreceived from: koahsriq.wdugqatr@gmail.com... | koahsriq wdugqatr | GRP_0 | problems with nikulatrhdy \n\nreceived from: k... | English |
| 360 | circuit outage: india carrier (company-ap-ind-... | what type of outage: _____network _x____c... | utyeofsk rdyzpwhi | GRP_8 | circuit outage: india carrier (company-ap-ind-... | English |
| 361 | job Job_495 failed in job_scheduler at: 10/26/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_495 failed in job_scheduler at: 10/26/... | English |
| 362 | purchasing catalog de-kroschke does not work | error message when try to open the shop:\r\nsh... | rhinvtua aquyjfbs | GRP_29 | purchasing catalog de-kroschke does not work e... | English |
| 363 | kalendereinträge - qdxyifhj zbwtunpy | hallo, bitte einmal ansehen. danke. | qmwhlnev ixtmkwdc | GRP_33 | kalendereinträge - qdxyifhj zbwtunpy hallo, b... | German |
| 364 | need a wireless mouse for my laptop | need a wireless mouse for my laptop | aobrelcs suchytro | GRP_28 | need a wireless mouse for my laptop need a wir... | English |
| 365 | labeldrucker wk 44567 druckt nicht mehr | labeldrucker wk 44567 druckt nicht mehr | tigwlquj evynjiar | GRP_33 | labeldrucker wk 44567 druckt nicht mehr labeld... | German |
| 366 | job bwhrattr failed in job_scheduler at: 10/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 10/26... | English |
| 367 | windows locked | \n\nreceived from: nmgesubf.wugbalmy@gmail.com... | nmgesubf wugbalmy | GRP_0 | windows locked \n\nreceived from: nmgesubf.wug... | English |
| 368 | daten kann nicht heruntergeladen werden | daten kann nicht heruntergeladen werden.\ndie ... | egbziufw syzpgchf | GRP_2 | daten kann nicht heruntergeladen werden daten ... | German |
| 369 | unable to login to erp SID_34 | unable to login to erp SID_34 | wfkuvimj gqbmzdkt | GRP_0 | unable to login to erp SID_34 unable to login ... | English |
| 370 | erp schulung raum :7 kann beamer nicht verbinden | erp schulung raum :7 kann beamer nicht verbin... | dkinobsv wymgzcrh | GRP_28 | erp schulung raum :7 kann beamer nicht verbin... | English |
| 371 | job Job_1854 failed in job_scheduler at: 10/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1854 failed in job_scheduler at: 10/26... | English |
| 372 | unable to scan after resetting password on pas... | unable to scan after resetting password on pas... | vfoyenlw ntpbdeyf | GRP_19 | unable to scan after resetting password on pas... | English |
| 373 | job Job_2668 failed in job_scheduler at: 10/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2668 failed in job_scheduler at: 10/26... | English |
| 374 | printer issue | "your file could not be printed due to an erro... | symieovf tjrwmcfg | GRP_3 | printer issue "your file could not be printed ... | English |
| 375 | engineering record issue | 1.) eng records for engineering tool can't use... | rcpghuqb bxrqamng | GRP_25 | engineering record issue 1.) eng records for e... | English |
| 376 | business_client not working | \r\n\r\nreceived from: lvxakohq.tsfnhowj@gmail... | lvxakohq tsfnhowj | GRP_0 | business_client not working \r\n\r\nreceived f... | English |
| 377 | new password not working in vpn | \r\n\r\nreceived from: wdpzfqgi.zndgqcux@gmail... | wdpzfqgi zndgqcux | GRP_0 | new password not working in vpn \r\n\r\nreceiv... | English |
| 378 | pls extend mm# 7429784, 7429785 and 7429786 to... | pls extend mm# 7429784, 7429785 and 7429786 to... | ckitashy dnqojbwi | GRP_29 | pls extend mm# 7429784, 7429785 and 7429786 to... | English |
| 379 | setting up my hand set for emails | \r\n\r\nreceived from: ynsqjehx.kqgrsawl@gmail... | ynsqjehx kqgrsawl | GRP_0 | setting up my hand set for emails \r\n\r\nrece... | English |
| 380 | unable to login to erp SID_34 | unable to login to erp SID_34 | ovlfxsij bcvdlrie | GRP_0 | unable to login to erp SID_34 unable to login ... | English |
| 381 | close cost center | \n\nreceived from: bujiesrg.zopcrshl@gmail.com... | bujiesrg zopcrshl | GRP_10 | close cost center \n\nreceived from: bujiesrg.... | English |
| 382 | unable to login to windows | unable to login to windows | gpevdzct txconyhd | GRP_0 | unable to login to windows unable to login to... | English |
| 383 | credit memo request 7112610434 approva | hello,\r\n\r\ni have messages to process docum... | nuhfwplj ojcwxser | GRP_13 | credit memo request 7112610434 approva hello,\... | English |
| 384 | engineering_tool upload issue | from: ufgkybsh ijswtdve \nsent: tuesday, octob... | ufgkybsh ijswtdve | GRP_25 | engineering_tool upload issue from: ufgkybsh i... | English |
| 385 | unable to log in to collaboration_platform | unable to log in to collaboration_platform | ptaerwvk ibvpucyn | GRP_0 | unable to log in to collaboration_platform un... | English |
| 386 | ticket update on inplant_872730 | ticket update on inplant_872730 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_872730 ticket update ... | English |
| 387 | unable to pull up reports on sales and markhty... | unable to pull up reports on sales and markhty... | trmhfxoz bxofhryg | GRP_0 | unable to pull up reports on sales and markhty... | English |
| 388 | reset users password | reset users password | qcehailo wqynckxg | GRP_0 | reset users password reset users password | English |
| 389 | query regarding logging in to benefits portal | query regarding logging in to benefits portal | anzdtxso trisfkwe | GRP_0 | query regarding logging in to benefits portal ... | English |
| 390 | inquiry on erp SID_37 bex analysis | inquiry on erp SID_37 bex analysis | zolnubvq ehrqifxp | GRP_0 | inquiry on erp SID_37 bex analysis inquiry on... | English |
| 391 | password reset request | password reset request | pxbqkfgm qexvrmcn | GRP_0 | password reset request password reset request | English |
| 392 | interface: fastethernet0/1 on usa-plant-mpls-2... | interface: fastethernet0/1 on usa-plant-mpls-2... | spxqmiry zpwgoqju | GRP_8 | interface: fastethernet0/1 on usa-plant-mpls-2... | English |
| 393 | password reset | password reset | pwvtoemq ugnxwfoe | GRP_0 | password reset password reset | English |
| 394 | please assist thrys hsdbdtt in logging into re... | please assist thrys hsdbdtt in logging into re... | bitdmacs kumdiywz | GRP_2 | please assist thrys hsdbdtt in logging into re... | English |
| 395 | outlook freezing on mobile broadband | outlook freezing on mobile broadband | rolcgqhx ehndjmlv | GRP_0 | outlook freezing on mobile broadband outlook f... | English |
| 396 | configure calendar on phone sync with outlook | configure calendar on phone sync with outlook | grtaoivq dwjvfkqe | GRP_34 | configure calendar on phone sync with outlook ... | English |
| 397 | outlook freezing issue | outlook freezing issue | eahkpnbm uptiveok | GRP_0 | outlook freezing issue outlook freezing issue | English |
| 398 | unable to find shortcut on erp | unable to find shortcut on erp | xmunoklw bnmswalv | GRP_0 | unable to find shortcut on erp unable to find ... | English |
| 399 | hr_tool not working | the hr_tool app on the sso page opens to a bes... | bdgklrnj phwmkldy | GRP_0 | hr_tool not working the hr_tool app on the sso... | English |
| 400 | outlook will not open | i am unable to open outlook. i am getting the ... | dpohqclx wzvihrdy | GRP_0 | outlook will not open i am unable to open outl... | English |
| 401 | need access to erp kp06789 | need access to kp06789 to enter forecast for i... | etvendormhd xpslzunb | GRP_35 | need access to erp kp06789 need access to kp06... | English |
| 402 | password reset for yscgjexz hxlbvjgf | password reset for yscgjexz hxlbvjgf | yscgjexz hxlbvjgf | GRP_0 | password reset for yscgjexz hxlbvjgf password ... | English |
| 403 | node lhqsv4567465 located at usa is down since... | node lhqsv4567465 located at usa is down since... | spxqmiry zpwgoqju | GRP_8 | node lhqsv4567465 located at usa is down since... | English |
| 404 | account lock and need to unlock | account lock and need to unlock | tqjsmwvk arqoytbh | GRP_0 | account lock and need to unlock account lock a... | English |
| 405 | followup on ticket_no0448851 | followup on ticket_no0448851 | eqzibjhw ymebpoih | GRP_0 | followup on ticket_no0448851 followup on ticke... | English |
| 406 | hr_tool payroll sign in | \r\n\r\nreceived from: gvcfhwjy.lyxcorqb@gmail... | gvcfhwjy lyxcorqb | GRP_0 | hr_tool payroll sign in \r\n\r\nreceived from:... | English |
| 407 | vpn password not working | \r\n\r\nreceived from: vewdsifl.zjdmftkv@gmail... | vewdsifl zjdmftkv | GRP_0 | vpn password not working \r\n\r\nreceived from... | English |
| 408 | not able to enter a project in the lean tracke... | not able to enter a project in the lean tracke... | khvzugxm yqfrcjwl | GRP_0 | not able to enter a project in the lean tracke... | English |
| 409 | urgent - email delegation. | hi i had an associate leave on the vsp at the ... | nealxjbc owjduxai | GRP_2 | urgent - email delegation. hi i had an associa... | English |
| 410 | access to retired employee's collaboration_pla... | Myhrt sthry retired as plant manager in usa. i... | rozsyfai zncajubh | GRP_16 | access to retired employee's collaboration_pla... | English |
| 411 | cannot open excel files from \\HostName_1351\d... | cannot open excel files from \\HostName_1351\d... | hmnuiltc cqpzgvym | GRP_12 | cannot open excel files from \\HostName_1351\d... | English |
| 412 | cannot print to prtqx1270 under my profile on ... | cannot print to prtqx1270 under my profile on ... | zuangtpq xpnscghk | GRP_3 | cannot print to prtqx1270 under my profile on ... | English |
| 413 | cannot print from windows with new pc i was ju... | cannot print from windows with new pc i was ju... | bgflmyar xgufkidq | GRP_3 | cannot print from windows with new pc i was ju... | English |
| 414 | intermittent wireless issue on 7350 | intermittent wireless issue on 7350 | pojhkxua frpxtsca | GRP_0 | intermittent wireless issue on 7350 intermitte... | English |
| 415 | reset passwords for prgewfly ndtfvple using pa... | complete | prgewfly ndtfvple | GRP_17 | reset passwords for prgewfly ndtfvple using pa... | English |
| 416 | reset the password for prgewfly ndtfvple on er... | completed | prgewfly ndtfvple | GRP_0 | reset the password for prgewfly ndtfvple on er... | English |
| 417 | outlook is slow. | outlook is slow. | axdyfojg nyjlxbsk | GRP_0 | outlook is slow. outlook is slow. | English |
| 418 | does the vpn meter the amount of data that can... | does the vpn meter the amount of data that can... | xbkucsvz gcpydteq | GRP_0 | does the vpn meter the amount of data that can... | English |
| 419 | recall: incident ticket_no1563995 has been ass... | \n\nreceived from: oncidblt.ucewizyd@gmail.com... | oncidblt ucewizyd | GRP_9 | recall: incident ticket_no1563995 has been ass... | English |
| 420 | password reset | password reset | lrbjqcmh jbiwtzqr | GRP_0 | password reset password reset | English |
| 421 | account gets locked out. | account gets locked out.\r\nid changed from co... | htsnaodb adjtmlzn | GRP_0 | account gets locked out. account gets locked o... | English |
| 422 | password reset | password reset | gpdywmbt pmxfiqkl | GRP_0 | password reset password reset | English |
| 423 | account locked. | account locked. | bkyphsgq cfyksehu | GRP_0 | account locked. account locked. | English |
| 424 | : query : what license does knlrgsiv cqvuexjz... | knlrgsiv cqvuexjz has e1 license.\r\n | aorthyme rnsuipbk | GRP_0 | : query : what license does knlrgsiv cqvuexjz... | English |
| 425 | unable to login to engineering tool | unable to login to engineering tool | ipydfcqo kdxsquzn | GRP_0 | unable to login to engineering tool unable to ... | English |
| 426 | password change request. | password change request. | mofjyqrh bcyzmkia | GRP_0 | password change request. password change request. | English |
| 427 | uacyltoe hxgayczeing - pl ignore | uacyltoe hxgayczeing - pl ignore | zscohabw qorvugzf | GRP_36 | uacyltoe hxgayczeing - pl ignore uacyltoe hxga... | Polish |
| 428 | reset the password for xoukpfvr oxvakgcl on er... | i'm unable to login erp system (engineering to... | ipydfcqo kdxsquzn | GRP_0 | reset the password for xoukpfvr oxvakgcl on er... | English |
| 429 | misplaced login information for ess | misplaced login information for ess | ustxqmwi lcpfkrwh | GRP_0 | misplaced login information for ess misplaced ... | English |
| 430 | reset erp SID_34 password for vvtgryhud | reset erp SID_34 password for vvtgryhud | izhyoqms wecyhadn | GRP_0 | reset erp SID_34 password for vvtgryhud reset ... | English |
| 431 | unable to login to the hub | misplaced username / password. | diozrjfn qotabyjn | GRP_0 | unable to login to the hub misplaced username ... | English |
| 432 | reset passwords for xoukpfvr oxvakgcl using pa... | as per system instruction now i have reset the... | ipydfcqo kdxsquzn | GRP_17 | reset passwords for xoukpfvr oxvakgcl using pa... | English |
| 433 | misplaced username / password | unable to login to the hub | diozrjfn qotabyjn | GRP_0 | misplaced username / password unable to login ... | English |
| 434 | password reset for axhkewnv zpumhlic in citrix | password reset for axhkewnv zpumhlic in citrix | rhwsmefo tvphyura | GRP_0 | password reset for axhkewnv zpumhlic in citrix... | English |
| 435 | unable to use jabra head phone for skype calls | unable to use jabra head phone for skype calls | dqplrwoy cutpwjie | GRP_0 | unable to use jabra head phone for skype calls... | English |
| 436 | removing e-mail reminders from workflow system... | removing e-mail reminders from workflow system... | czwgmjhn rdnyckft | GRP_29 | removing e-mail reminders from workflow system... | English |
| 437 | collaboration_platform deleted information | hello,\nthe user "tgrsyduf" accidentally delet... | bxeagsmt zrwdgsco | GRP_16 | collaboration_platform deleted information hel... | English |
| 438 | collaboration_platform site request | hello\n\ncan you add the users below to as tea... | afkstcev utbnkyop | GRP_16 | collaboration_platform site request hello\n\nc... | English |
| 439 | reset the password for dnlhsgyo newducsl on er... | after setting a new overall password i couldn'... | dnlhsgyo newducsl | GRP_0 | reset the password for dnlhsgyo newducsl on er... | English |
| 440 | workplanning from germany plant plant_119 need... | hello all\nmy collegue "thryduf" and i "hddwtr... | hsbfiako iylbrwpa | GRP_2 | workplanning from germany plant plant_119 need... | English |
| 441 | probleme mit portal \knlrgsiv cqvuexjz | probleme mit portal \knlrgsiv cqvuexjz | knlrgsiv cqvuexjz | GRP_24 | probleme mit portal \knlrgsiv cqvuexjz problem... | Danish |
| 442 | unable to login to erp pp5t463 | password reset needed | qcehailo wqynckxg | GRP_0 | unable to login to erp pp5t463 password reset ... | English |
| 443 | unable to login to pc | misplaced username / password. | serckxqb mljnkgze | GRP_0 | unable to login to pc misplaced username / pas... | English |
| 444 | unable to join and setup skype meeting | unable to join and setup skype meeting | spamkgnx nbixueyw | GRP_0 | unable to join and setup skype meeting unable... | English |
| 445 | rma 7112619085 workflow in error status | rma 7112619085 workflow in error status - plea... | lwgytuxq qspdztiw | GRP_13 | rma 7112619085 workflow in error status rma 71... | English |
| 446 | setup rechner ewel8323865 für hr.thrydad (thr... | setup rechner ewel8323865 für hr.thrydad (thr... | puxsvfwr cwkjruni | GRP_24 | setup rechner ewel8323865 für hr.thrydad (thr... | Welsh |
| 447 | employee accounts reactivation etdh thsydaas's | etdh thsydaas's 's (employee # 660067598) comp... | xidbvzsk yrlsnxio | GRP_2 | employee accounts reactivation etdh thsydaas's... | English |
| 448 | recurrent network outage. (every 15 minutes) i... | recurrent network outage. (every 15 minutes).\... | zcdirjeq azokfsdi | GRP_4 | recurrent network outage. (every 15 minutes) i... | English |
| 449 | engineering tool shows message to all users of... | since monday 10/24/2016, engineering tool user... | kbnfxpsy gehxzayq | GRP_14 | engineering tool shows message to all users of... | English |
| 450 | bitte konto ewel8323865 reaktivieren \laptop f... | bitte konto ewel8323865 reaktivieren \laptop f... | ughzilfm cfibdamq | GRP_0 | bitte konto ewel8323865 reaktivieren \laptop f... | German |
| 451 | sales manager views in business objects explorer | the following sales managers cannot see the sa... | wvdxnkhf jirecvta | GRP_9 | sales manager views in business objects explor... | English |
| 452 | reset passwords for qnxfegjw rljdhmwb using pa... | reset passwords for qnxfegjw rljdhmwb using pa... | qnxfegjw rljdhmwb | GRP_17 | reset passwords for qnxfegjw rljdhmwb using pa... | English |
| 453 | probleme mit erpgui \tmqfjard qzhgdoua | probleme mit erpgui \tmqfjard qzhgdoua | tmqfjard qzhgdoua | GRP_24 | probleme mit erpgui \tmqfjard qzhgdoua problem... | Danish |
| 454 | support für fa.thrydsss-funke \laeusvjo fvaihgpx | support für fa.thrydsss-funke \laeusvjo fvaihgpx | laeusvjo fvaihgpx | GRP_24 | support für fa.thrydsss-funke \laeusvjo fvaih... | English |
| 455 | bildband tauschen \drucker we68678 \vepxdgot ... | bildband tauschen \drucker we68678 \vepxdgot ... | vepxdgot poezmwny | GRP_24 | bildband tauschen \drucker we68678 \vepxdgot ... | German |
| 456 | primary telephone flow down - company EU - EU... | hello, writes from company EU plant\n\nthis m... | cgxhmrvu dbwspjet | GRP_37 | primary telephone flow down - company EU - EU... | English |
| 457 | bobj access not working | \n\nreceived from: btvmxdfc.yfahetsc@gmail.com... | btvmxdfc yfahetsc | GRP_9 | bobj access not working \n\nreceived from: btv... | English |
| 458 | bobj access for sales managers | \n\nreceived from: yzugpdco.nsyapewg@gmail.com... | yzugpdco nsyapewg | GRP_9 | bobj access for sales managers \n\nreceived fr... | English |
| 459 | skpe addon gone | skpe addon gone\n___________________________\n... | jvxtfhkg heptuizn | GRP_0 | skpe addon gone skpe addon gone\n_____________... | English |
| 460 | job Job_593 failed in job_scheduler at: 10/25/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/25/... | English |
| 461 | hpqc delivers error message: "user is not main... | my user id: thrydksd'\ni´m involved in uat ua... | iavozegx jpcudyfi | GRP_38 | hpqc delivers error message: "user is not main... | English |
| 462 | job Job_495 failed in job_scheduler at: 10/25/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_495 failed in job_scheduler at: 10/25/... | English |
| 463 | telefon gigaset m2 ex professional (tel.:) lä... | telefon gigaset m2 ex professional (tel.:) lä... | txkgmwbc qohmgwrp | GRP_33 | telefon gigaset m2 ex professional (tel.:) lä... | German |
| 464 | please setup user trhdaa2 back to startpasswor... | please setup user trhdaa2 back to startpasswor... | pwotudlf wpjlxfke | GRP_0 | please setup user trhdaa2 back to startpasswor... | English |
| 465 | erp - change of new costs not working in cockp... | hello, following problem:\r\ndue to necessary ... | nobwzdvh yqjugexl | GRP_13 | erp - change of new costs not working in cockp... | English |
| 466 | nutzer wk_ksem15462 gesperrt | nutzer wk_ksem15462 gesperrt | jcgzqndm hukibzqa | GRP_33 | nutzer wk_ksem15462 gesperrt nutzer wk_ksem154... | German |
| 467 | timerecording terminals in plant germany no co... | timerecording terminals in plant germany no co... | smpijawb eawkpgqf | GRP_33 | timerecording terminals in plant germany no co... | English |
| 468 | job Job_485 failed in job_scheduler at: 10/25/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_485 failed in job_scheduler at: 10/25/... | English |
| 469 | ieæµè§ˆå™¨æ‰“å¼€crmç³»ç»ŸåŽæç¤ºç”¨æˆ·å·²è¢... | ieæµè§ˆå™¨æ‰“å¼€crmç³»ç»ŸåŽæç¤ºç”¨æˆ·å·²è¢... | cjnlsbkq ocxnrewb | GRP_31 | ieæµè§ˆå™¨æ‰“å¼€crmç³»ç»ŸåŽæç¤ºç”¨æˆ·å·²è¢... | English |
| 470 | access to s drive. | \r\n\r\nreceived from: wnvlmsjr.znbvlygd@gmail... | wnvlmsjr znbvlygd | GRP_12 | access to s drive. \r\n\r\nreceived from: wnvl... | English |
| 471 | kindly add user id : trhsydsff to erp business... | kindly add user id : trhsydsff to erp business... | vthuzanc fqdgotvx | GRP_0 | kindly add user id : trhsydsff to erp business... | English |
| 472 | job Job_1854 failed in job_scheduler at: 10/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1854 failed in job_scheduler at: 10/25... | English |
| 473 | desktop item missing when save attachment . | desktop item missing when save attachment . | zmkitbsh bxsyaipz | GRP_31 | desktop item missing when save attachment . de... | English |
| 474 | HostName_1030 is currently experiencing high c... | HostName_1030 is currently experiencing high c... | bozdftwx smylqejw | GRP_12 | HostName_1030 is currently experiencing high c... | English |
| 475 | mass - upload programdnty changes to condition... | mass - upload programdnty changes to condition... | xawlkiey demjqrfl | GRP_15 | mass - upload programdnty changes to condition... | English |
| 476 | server lnbdm839 (active directory) located in... | server lnbdm839 (active directory) located in... | bozdftwx smylqejw | GRP_39 | server lnbdm839 (active directory) located in... | English |
| 477 | xtsuifdz.wktgzcyl@gmail.com is blocked now as ... | xtsuifdz.wktgzcyl@gmail.com is blocked now as ... | dbwkxalj cnhgysju | GRP_0 | xtsuifdz.wktgzcyl@gmail.com is blocked now as ... | English |
| 478 | access to //HostName_95/departments/backorderr... | \n\nreceived from: avurmegj.pxgmjynu@gmail.com... | avurmegj pxgmjynu | GRP_12 | access to //HostName_95/departments/backorderr... | English |
| 479 | the user's account is blocked now (xtsuifdz.wk... | name:dbwkxalj cnhgysju\nlanguage:\nbrowser:mic... | dbwkxalj cnhgysju | GRP_0 | the user's account is blocked now (xtsuifdz.wk... | English |
| 480 | job Job_1330 failed in job_scheduler at: 10/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1330 failed in job_scheduler at: 10/25... | English |
| 481 | zeitdaten für germany steel fehlen | seit gestern ca. 15.00 uhr fehlen alle zeitdat... | yjofqlrx aqvxfhmn | GRP_33 | zeitdaten für germany steel fehlen seit geste... | German |
| 482 | network outage:poncacity -germany-dmvpn router... | what type of outage: ___x__network _____c... | bozdftwx smylqejw | GRP_8 | network outage:poncacity -germany-dmvpn router... | English |
| 483 | :i am unable to open the collaboration_platfor... | name:theajdlkadyt hrtgsd\nlanguage:\nbrowser:m... | lqipwdeg dkbmjnvl | GRP_0 | :i am unable to open the collaboration_platfor... | English |
| 484 | can not reach to password_management_tool pas... | name:mitgckqf ewourgcx\nlanguage:\nbrowser:mic... | mitgckqf ewourgcx | GRP_0 | can not reach to password_management_tool pas... | English |
| 485 | : k-bngell-cgdaytshqsd <k-bngell-cgdaytshqsd@c... | \n\nreceived from: lvxakohq.tsfnhowj@gmail.com... | lvxakohq tsfnhowj | GRP_19 | : k-bngell-cgdaytshqsd <k-bngell-cgdaytshqsd@c... | English |
| 486 | job SID_39filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_39filesys failed in job_scheduler at: ... | English |
| 487 | msd - office 2013 outlook 打ä¸å¼€ï¼Œæ˜¾ç¤ºæ—... | please provide details of the issue.\n[‎2016... | melhduty gqchtedl | GRP_31 | msd - office 2013 outlook 打ä¸å¼€ï¼Œæ˜¾ç¤ºæ—... | English |
| 488 | 看ä¸è§a3 的文件夹(\\HostName_17\teams... | 看ä¸è§a3 的文件夹(\\HostName_17\teams... | hlrmufzx qcdzierm | GRP_12 | 看ä¸è§a3 的文件夹(\\HostName_17\teams... | English |
| 489 | job Job_568 failed in job_scheduler at: 10/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_568 failed in job_scheduler at: 10/24/... | English |
| 490 | login issue | login issue\r\n-verified user details.(employe... | liksfpeq pwjbsryc | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 491 | october cyber security month - ransomware | october cyber security month - ransomware | pyrtfdxu nxfkqmoy | GRP_0 | october cyber security month - ransomware oc... | English |
| 492 | ms outlook stopped updating (cant receive or ... | please check lfal8512946. looks like bothms o... | ugrnzjpy utbswegc | GRP_0 | ms outlook stopped updating (cant receive or ... | English |
| 493 | ticket update on inplant_872730 | ticket update on inplant_872730 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_872730 ticket update ... | English |
| 494 | logon balancing error on erp SID_34 | logon balancing error on erp SID_34\n\nuser br... | xtqbjieu uablitwr | GRP_2 | logon balancing error on erp SID_34 logon bala... | English |
| 495 | job Job_738 failed in job_scheduler at: 10/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_738 failed in job_scheduler at: 10/24/... | English |
| 496 | windows account locked | windows account locked | wetajgsq ezmcqkbp | GRP_0 | windows account locked windows account locked | English |
| 497 | backup on company provided mobile phone | backup on company provided mobile phone | mdbegvct dbvichlg | GRP_0 | backup on company provided mobile phone backup... | English |
| 498 | purchasingupstreamsso and ad for qpixeudn rjlz... | please create an purchasingupstreamsso and ad ... | xszoedmc gmhkdsnw | GRP_2 | purchasingupstreamsso and ad for qpixeudn rjlz... | English |
| 499 | badges for msc training | \n\nreceived from: gdkiehbr.kdithjsr@gmail.com... | gdkiehbr kdithjsr | GRP_3 | badges for msc training \n\nreceived from: gdk... | English |
| 500 | cannot get into crm | missing the sales & markhtyeting tab from the ... | gtfdvnry nxsaqrfh | GRP_2 | cannot get into crm missing the sales & markht... | English |
| 501 | please provide access | \n\nreceived from: tbvpkjoh.wnxzhqoa@gmail.com... | tbvpkjoh wnxzhqoa | GRP_16 | please provide access \n\nreceived from: tbvpk... | English |
| 502 | ticket update on inplant_872683 | ticket update on inplant_872683 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_872683 ticket update ... | English |
| 503 | unable to login to collaboration_platform // p... | unable to login to collaboration_platform // p... | rvqnjgas kcmybldh | GRP_0 | unable to login to collaboration_platform // p... | English |
| 504 | all my calls to my ip phone are going to wareh... | all my calls to my ip phone are going to wareh... | damuphws arkulcoi | GRP_3 | all my calls to my ip phone are going to wareh... | English |
| 505 | sales area selection on opportunities not filt... | sales area selection on opportunities not filt... | msarjyhi fpxdbeno | GRP_40 | sales area selection on opportunities not filt... | English |
| 506 | pc not detecting docking station | pc not detecting docking station | dglwxfzu sgbnpvql | GRP_3 | pc not detecting docking station pc not detect... | English |
| 507 | having trouble connecting to companysecure | jeftryhf is having trouble connecting to compa... | hdetqcpj ehsjitcy | GRP_3 | having trouble connecting to companysecure jef... | English |
| 508 | i cannot log into erp. | i tried rebooting the computer and i tried lo... | trxpwfag fakubynv | GRP_41 | i cannot log into erp. i tried rebooting the... | English |
| 509 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | szrglyte stvyhzxn | GRP_0 | request to reset microsoft online services pas... | English |
| 510 | usa file server, HostName_1326, has failed har... | usa file server, HostName_1326, has failed har... | xweclugf qmhbjsyi | GRP_12 | usa file server, HostName_1326, has failed har... | English |
| 511 | unable to display the expense report | unable to display the expense report | sghamujc shompueb | GRP_0 | unable to display the expense report unable to... | English |
| 512 | blank call //gso | blank call //gso | rbozivdq gmlhrtvp | GRP_0 | blank call //gso blank call //gso | English |
| 513 | unlock account the user aeftjxos lhnyofad - id... | hi team,\ncould you please unlock account the ... | qasdhyzm yuglsrwx | GRP_2 | unlock account the user aeftjxos lhnyofad - id... | English |
| 514 | unable to login to outlook | from: rjsulvat uanigkqc \nsent: monday, octobe... | rjsulvat uanigkqc | GRP_0 | unable to login to outlook from: rjsulvat uani... | English |
| 515 | logon balancing error in erp | logon balancing error in erp | ywlbctfr yvkhcwip | GRP_2 | logon balancing error in erp logon balancing e... | English |
| 516 | outlook freezing issue | outlook freezing issue | kailyenh zfyvkopr | GRP_0 | outlook freezing issue outlook freezing issue | English |
| 517 | the username ccghksdm787 will be used to login... | hello,\n\nthe username ccghksdm787 will be use... | oinqckds qieswrfu | GRP_12 | the username ccghksdm787 will be used to login... | English |
| 518 | prtgghj4k access locked | jgdydqqd locked me out. i tried going onto pa... | horeduca ogrhivnm | GRP_2 | prtgghj4k access locked jgdydqqd locked me out... | English |
| 519 | unable to connect to the home internet | internet connection does not appear to be work... | ctepaurs igrazhwo | GRP_0 | unable to connect to the home internet interne... | English |
| 520 | unable to sign in reporting_tool | \r\n\r\nreceived from: vmeljsfb.ymxejsbd@gmail... | vmeljsfb ymxejsbd | GRP_2 | unable to sign in reporting_tool \r\n\r\nrecei... | English |
| 521 | vitalyst transfer: crm calendar not showing o... | vitalyst transfer: crm calendar not showing o... | eqxakzyi cwfrjitq | GRP_0 | vitalyst transfer: crm calendar not showing o... | English |
| 522 | unable to access erp through my vpn connection | working from home, started vpn, cannot access ... | ywlbctfr yvkhcwip | GRP_0 | unable to access erp through my vpn connection... | English |
| 523 | mobile device activation. | hello colleagues,\n\nwould you please be so ki... | hybegvwo dbgrtqhs | GRP_0 | mobile device activation. hello colleagues,\n\... | English |
| 524 | a kündigung for eluvxqhw gpbfkqeu, 11166428, ... | hello , \r\n\r\na kündigung for eluvxqhw gpbf... | trgqbeax hfyzudql | GRP_2 | a kündigung for eluvxqhw gpbfkqeu, 11166428, ... | English |
| 525 | password reset. | from: nwfodmhc exurcwkm \nsent: monday, octobe... | uzpycdho hdswinlo | GRP_0 | password reset. from: nwfodmhc exurcwkm \nsent... | English |
| 526 | password reset | password reset | phksfqxe wkbovsmu | GRP_0 | password reset password reset | English |
| 527 | erp SID_34 password reset. | erp SID_34 password reset. | krynlisw dqfeglkc | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 528 | erp | name:fievgddtrr\nlanguage:\nbrowser:microsoft ... | hpelnwco byjgvdzf | GRP_0 | erp name:fievgddtrr\nlanguage:\nbrowser:micro... | English |
| 529 | skype online meeting freezing | unable to join a skype meeting.\r\nskype keeps... | smhepfdn aypgzieh | GRP_27 | skype online meeting freezing unable to join a... | English |
| 530 | unable to connect to company center // sales o... | unable to connect to company center // sales o... | ctepaurs igrazhwo | GRP_0 | unable to connect to company center // sales o... | English |
| 531 | blank call | blank call | ayrhcfxi zartupsw | GRP_0 | blank call blank call | English |
| 532 | unable to connect to global_telecom_1 broadband | name:joetrhud\nlanguage:\nbrowser:microsoft in... | eziswfym cehwzojy | GRP_0 | unable to connect to global_telecom_1 broadban... | English |
| 533 | password has expired | garthyhtuy was out of office for a long time, ... | bqrwfkun tsdzmplq | GRP_0 | password has expired garthyhtuy was out of off... | English |
| 534 | summary:attendance_tool password forgot. | name:kirathrydan\nlanguage:\nbrowser:microsoft... | aorthyme rnsuipbk | GRP_0 | summary:attendance_tool password forgot. name:... | English |
| 535 | erp zqt pntp and zntc price not calculating on... | erp quote pntp net price and zntc unit price a... | zsulhnxd gexdzoqy | GRP_13 | erp zqt pntp and zntc price not calculating on... | English |
| 536 | could not use bobjee application: search and e... | error message: it was not possible to retrieve... | gaiopkun bvcdpxrt | GRP_9 | could not use bobjee application: search and e... | English |
| 537 | us time change | \n\nreceived from: xabkyoug.wdkyiqfx@gmail.com... | xabkyoug wdkyiqfx | GRP_0 | us time change \n\nreceived from: xabkyoug.wdk... | English |
| 538 | job HostName_1020-idb-daily failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job HostName_1020-idb-daily failed in job_sche... | English |
| 539 | 2 in 1 has cracked screen, but turned off touc... | 2 in 1 has cracked screen, but turned off touc... | jkelxorm uwqjlzfm | GRP_3 | 2 in 1 has cracked screen, but turned off touc... | English |
| 540 | password reset for uacyltoe hxgayczemii8 | name:dctvfjrn oypnxftq\nlanguage:\nbrowser:mic... | dctvfjrn oypnxftq | GRP_0 | password reset for uacyltoe hxgayczemii8 name:... | English |
| 541 | unable to login to skype | unable to login to skype | ctepaurs igrazhwo | GRP_0 | unable to login to skype unable to login to s... | English |
| 542 | laptop issues | \n\nreceived from: lwizucan.zvnxlobq@gmail.com... | lwizucan zvnxlobq | GRP_0 | laptop issues \n\nreceived from: lwizucan.zvnx... | English |
| 543 | receiving collaboration_platform deletion emai... | \n\nreceived from: gvxfymjk.euioadyf@gmail.com... | gvxfymjk euioadyf | GRP_16 | receiving collaboration_platform deletion emai... | English |
| 544 | unable to open outlook | unable to open outlook | jmxrabzy dpyvjcxr | GRP_0 | unable to open outlook unable to open outlook | English |
| 545 | ip address conflict | carthygyrol is back in the office after few we... | xtqbjieu uablitwr | GRP_0 | ip address conflict carthygyrol is back in th... | English |
| 546 | scan doesn't work in the home printer | scan doesn't work in the home printer | lukibasy bqufyozk | GRP_0 | scan doesn't work in the home printer scan doe... | English |
| 547 | erp SID_34 account lock out. | erp SID_34 account lock out.\r\n | rzglsoma qkjfwmnz | GRP_0 | erp SID_34 account lock out. erp SID_34 accoun... | English |
| 548 | skype meeting add-in getting disabled from out... | skype meeting add-in getting disabled from out... | lukibasy bqufyozk | GRP_0 | skype meeting add-in getting disabled from out... | English |
| 549 | i can´t connect my note book to the " vpn " | i can´t connect my note book to the vpn " "\... | hycqbvem oriablwt | GRP_0 | i can´t connect my note book to the " vpn " i... | English |
| 550 | the password for "infosthryda" has expired. so... | today the erp is not working. while attempting... | kbnfxpsy gehxzayq | GRP_1 | the password for "infosthryda" has expired. so... | English |
| 551 | reset passwords for mgvpoyqd tnlshpwb using pa... | reset passwords for mgvpoyqd tnlshpwb using pa... | mgvpoyqd tnlshpwb | GRP_17 | reset passwords for mgvpoyqd tnlshpwb using pa... | English |
| 552 | speaker not working in skype | \r\n\r\nreceived from: weupycai.epqhduro@gmail... | weupycai epqhduro | GRP_0 | speaker not working in skype \r\n\r\nreceived ... | English |
| 553 | problem of ticket_no1561937 which was fixed wi... | regarding ticket_no1561937 which was fixed wit... | kbnfxpsy gehxzayq | GRP_1 | problem of ticket_no1561937 which was fixed wi... | English |
| 554 | ts04562 printer isn't printing | name:gqhfieys pkwcdbrv\nlanguage:\nbrowser:mic... | gqhfieys pkwcdbrv | GRP_0 | ts04562 printer isn't printing name:gqhfieys p... | English |
| 555 | probleme mit fixiereinheit we101 \qvncizuf uei... | probleme mit fixiereinheit we101 \qvncizuf uei... | qvncizuf ueiybanz | GRP_24 | probleme mit fixiereinheit we101 \qvncizuf uei... | German |
| 556 | efrjkspc sfhbunrp, your windows password is ex... | from: efrjkspc sfhbunrp \nsent: monday, octobe... | efrjkspc sfhbunrp | GRP_0 | efrjkspc sfhbunrp, your windows password is ex... | English |
| 557 | aw: teams drive folder retention/deletion - pl... | \r\n\r\nreceived from: oxkhntpl.xwszgidt@gmail... | oxkhntpl xwszgidt | GRP_34 | aw: teams drive folder retention/deletion - pl... | English |
| 558 | usa ou deletion | all groups, qlhmawgi sgwipoxns and ou's for us... | afkstcev utbnkyop | GRP_2 | usa ou deletion all groups, qlhmawgi sgwipoxns... | English |
| 559 | uacyltoe hxgaycze | name:tqnbkjgu xyedbsnm\nlanguage:\nbrowser:mic... | tqnbkjgu xyedbsnm | GRP_0 | uacyltoe hxgaycze name:tqnbkjgu xyedbsnm\nlang... | English |
| 560 | billing block not removed automatically | hello it,\r\n\r\nplease check, why billing blo... | jwqyxbzs adpvilqu | GRP_13 | billing block not removed automatically hello... | English |
| 561 | need to create the delivery note for sto 50192... | need to create the delivery note for sto 50192... | gokluswt qlvzreyb | GRP_6 | need to create the delivery note for sto 50192... | English |
| 562 | erp SID_34 erp production password reset | name:chtrhysdrystal\nlanguage:\nbrowser:micros... | oxkghdbr dsyvalof | GRP_0 | erp SID_34 erp production password reset name:... | English |
| 563 | need to install ts02345 printer | need to install ts02345 printer | gqhfieys pkwcdbrv | GRP_0 | need to install ts02345 printer need to instal... | English |
| 564 | urgent - users in germany are reporting that t... | tqnbkjgu xyedbsnm reported that he and his col... | fdmaluyo tvecikxn | GRP_21 | urgent - users in germany are reporting that t... | English |
| 565 | new iphone activation / die synchronisierung ... | \n\nreceived from: ecwtrjnq.jpecxuty@gmail.com... | ecwtrjnq jpecxuty | GRP_0 | new iphone activation / die synchronisierung ... | English |
| 566 | folder access : :\\HostName_753\departements\a... | folder access : :\\HostName_753\departements\a... | veyduami hjxpwqbi | GRP_0 | folder access : :\\HostName_753\departements\a... | English |
| 567 | in outlook and all other microsoft application... | in outlook and all other microsoft application... | yxdbznju gicjlbrk | GRP_0 | in outlook and all other microsoft application... | English |
| 568 | laptop bettery issue | facing charging issue.\n\ncomputer name : aidl... | zbmhdaru zhaupwno | GRP_19 | laptop bettery issue facing charging issue.\n\... | English |
| 569 | reset passwords for bfnvjgxd trqmnpvu using pa... | reset passwords for bfnvjgxd trqmnpvu using pa... | bfnvjgxd trqmnpvu | GRP_17 | reset passwords for bfnvjgxd trqmnpvu using pa... | English |
| 570 | druckerfunktionsstörung | \r\n\r\nreceived from: fdqjsygx.aivdjqtr@gmail... | fdqjsygx aivdjqtr | GRP_42 | druckerfunktionsstörung \r\n\r\nreceived from... | German |
| 571 | erp SID_34 password reset. | erp SID_34 password reset. | jvxtfhkg heptuizn | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 572 | erp- gesperrt fehlversuche kennwort gesperrt | bitte erp freischalten fehlversuche | tgpvrbyi ztdxwpcn | GRP_0 | erp- gesperrt fehlversuche kennwort gesperrt b... | German |
| 573 | password is not synchronized. | password is not synchronized. | airhfgen ynsjogui | GRP_0 | password is not synchronized. password is not ... | English |
| 574 | pc der maschine r45 defekt | pc der maschine r45 fährt nicht mehr hoch. | baygwijr lavxwkfc | GRP_33 | pc der maschine r45 defekt pc der maschine r45... | German |
| 575 | pc awywx00067004 in rddept qlhmawgi sgwipoxn i... | pc awywx00067004 in rddept qlhmawgi sgwipoxn i... | uaclgmeq hyxzmwdi | GRP_19 | pc awywx00067004 in rddept qlhmawgi sgwipoxn i... | English |
| 576 | call from salesforce for hathryrtmut | caller named benjamtrhdyin from salesforce wan... | ayrhcfxi zartupsw | GRP_0 | call from salesforce for hathryrtmut caller na... | English |
| 577 | bug in employee extract programdnty - reportnc... | bug in employee extract programdnty - reportnc... | rdfjsawg zpmxgdcw | GRP_10 | bug in employee extract programdnty - reportnc... | English |
| 578 | EU_tool in germany steel ohne funktion - rück... | EU_tool in germany steel ohne funktion - rück... | rvdtagmf klbnhydo | GRP_25 | EU_tool in germany steel ohne funktion - rück... | German |
| 579 | job Job_579 failed in job_scheduler at: 10/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_579 failed in job_scheduler at: 10/24/... | English |
| 580 | erp SID_34 account locked | erp SID_34 account locked | lxgtvwyh jnkchfap | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 581 | msd crm error opening outlook | hello\r\nwhen open outlook crm goes on erro wi... | rcdanwut kzbfstxm | GRP_0 | msd crm error opening outlook hello\r\nwhen op... | English |
| 582 | wk38 - qdxyifhj zbwtunpy | hallo, kannst du einmal nachsehen, wo der e-ma... | qmwhlnev ixtmkwdc | GRP_33 | wk38 - qdxyifhj zbwtunpy hallo, kannst du einm... | German |
| 583 | hi, few users are not able to logon to crm web... | link : \nusers:\nottyhddok\nthielpwii2e\nlobod... | hadbkvwt touedfyr | GRP_33 | hi, few users are not able to logon to crm web... | English |
| 584 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | jtboznci fiormedp | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 585 | activation of outlook email access on samsung ... | \n\nreceived from: kbclinop.vsczklfp@gmail.com... | kbclinop vsczklfp | GRP_0 | activation of outlook email access on samsung ... | English |
| 586 | probleme mit bluescreen | hallo ,\n\ngerade eben ist der computer an mei... | vrfpyjwi nzhvgqiw | GRP_24 | probleme mit bluescreen hallo ,\n\ngerade ebe... | German |
| 587 | login issue | login issue\r\n-verified user details.(employe... | mtcywlxv cklzmxyr | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 588 | no display on desk phone. | no display on desk phone. | jctnelqs lansuiwe | GRP_33 | no display on desk phone. no display on desk p... | English |
| 589 | probleme mit lan für rechner erodiermaschine\... | probleme mit lan für rechner erodiermaschine\... | dtlmbcrx mwuateyx | GRP_24 | probleme mit lan für rechner erodiermaschine\... | German |
| 590 | network outage: south amerirtca -(rrc) network... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: south amerirtca -(rrc) network... | English |
| 591 | EU_tool is hanging and slow at the loaction. | EU_tool is hanging and slow at the loaction.\n | vaqsmniw dtgnkzvp | GRP_25 | EU_tool is hanging and slow at the loaction. E... | English |
| 592 | job Job_593 failed in job_scheduler at: 10/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/24/... | English |
| 593 | german workflow objects from all folders are g... | german workflow objects from all folders are g... | mcytlpva jutxbdor | GRP_13 | german workflow objects from all folders are g... | English |
| 594 | problem with outlook | \r\n\r\nreceived from: rjsulvat.uanigkqc@gmail... | rjsulvat uanigkqc | GRP_0 | problem with outlook \r\n\r\nreceived from: rj... | English |
| 595 | netzlaufwerke auf auf quattro-4206, quattro-42... | netzlaufwerke auf auf quattro-4206, quattro-42... | nbfyzlgu sdjtiqzv | GRP_42 | netzlaufwerke auf auf quattro-4206, quattro-42... | German |
| 596 | password reset - vvjotsgssea | password reset - vvjotsgssea | jwoiyzfp zlftrkpq | GRP_0 | password reset - vvjotsgssea password reset - ... | English |
| 597 | uacyltoe hxgaycze chat | uacyltoe hxgaycze chat | urvitans laqdwvgo | GRP_0 | uacyltoe hxgaycze chat uacyltoe hxgaycze chat | English |
| 598 | mount request on lib6 prod weekly for job back... | mount request on lib6 prod weekly for job back... | dkmcfreg anwmfvlg | GRP_8 | mount request on lib6 prod weekly for job back... | English |
| 599 | help to change the windows password using pass... | help to change the windows password using pass... | wzkaptfd axqsyrem | GRP_0 | help to change the windows password using pass... | English |
| 600 | employee owned mobility agreement | employee owned mobility agreement- | mcysxfjw pcrdoewx | GRP_0 | employee owned mobility agreement employee own... | English |
| 601 | chat feature for german language is not working | please check if this is related to the change ... | fdmaluyo tvecikxn | GRP_7 | chat feature for german language is not workin... | English |
| 602 | job Job_485 failed in job_scheduler at: 10/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_485 failed in job_scheduler at: 10/24/... | English |
| 603 | job Job_1390 failed in job_scheduler at: 10/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1390 failed in job_scheduler at: 10/24... | English |
| 604 | job Job_1338 failed in job_scheduler at: 10/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 10/24... | English |
| 605 | material type "nd" doesn ´t create any requr... | \r\n\r\nreceived from: qbewrpfu.lwibmxzo@gmail... | qbewrpfu lwibmxzo | GRP_13 | material type "nd" doesn ´t create any requr... | English |
| 606 | job Job_487 failed in job_scheduler at: 10/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_487 failed in job_scheduler at: 10/24/... | English |
| 607 | passwort change failed | \r\n\r\nreceived from: ovnedzxg.pylshdvb@gmail... | ovnedzxg pylshdvb | GRP_0 | passwort change failed \r\n\r\nreceived from: ... | English |
| 608 | etiketten drucker im bereich endkontrolle germ... | funktionsstörung | tzmewbdv zjbuwmkn | GRP_33 | etiketten drucker im bereich endkontrolle germ... | German |
| 609 | on;ly for uacyltoe hxgayczeing - sn | on;ly for uacyltoe hxgayczeing - sn | ginjmaxk zumkvfeb | GRP_36 | on;ly for uacyltoe hxgayczeing - sn on;ly for... | English |
| 610 | drucker wk1678 | \n\nreceived from: inqogkxz.rgmslhjn@gmail.com... | inqogkxz rgmslhjn | GRP_33 | drucker wk1678 \n\nreceived from: inqogkxz.rg... | German |
| 611 | job Job_1854 failed in job_scheduler at: 10/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1854 failed in job_scheduler at: 10/24... | English |
| 612 | job Job_2589 failed in job_scheduler at: 10/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2589 failed in job_scheduler at: 10/24... | English |
| 613 | area code routing check for machine line | the following area codes below are being rout... | rwmeuzvy bpstvajw | GRP_7 | area code routing check for machine line the f... | English |
| 614 | engineering tool login issue. | engineering tool login issue.\r\nhelp to chang... | seutrkhn jvdtilek | GRP_0 | engineering tool login issue. engineering tool... | English |
| 615 | network outage: - india () since sunday (oct 2... | what type of outage: ___x__network _____c... | jloygrwh acvztedi | GRP_8 | network outage: - india () since sunday (oct 2... | English |
| 616 | uacyltoe hxgaycze ticket | uacyltoe hxgaycze ticket | pxsghrjd wiehqmka | GRP_0 | uacyltoe hxgaycze ticket uacyltoe hxgaycze ticket | English |
| 617 | login not possible for trail employee thsaqsh ... | \n\nreceived from: jhyazros.azdxonjg@gmail.com... | jhyazros azdxonjg | GRP_0 | login not possible for trail employee thsaqsh ... | English |
| 618 | outlook打ä¸å¼€ | 打开outlook时,显示outlook.ost文件错è... | qayozbcd vwglmpjq | GRP_0 | outlook打ä¸å¼€ 打开outlook时,显示outl... | English |
| 619 | circuit outage:india plant primary telecom_ve... | what type of outage: _____network __x___c... | jloygrwh acvztedi | GRP_8 | circuit outage:india plant primary telecom_ve... | English |
| 620 | issue in wi fi & erp login | \r\n\r\nreceived from: ohdrnswl.rezuibdt@gmail... | ohdrnswl rezuibdt | GRP_0 | issue in wi fi & erp login \r\n\r\nreceived f... | English |
| 621 | uacyltoe hxgaycze ignore | uacyltoe hxgaycze | jloygrwh acvztedi | GRP_36 | uacyltoe hxgaycze ignore uacyltoe hxgaycze | Latin |
| 622 | we are unable to update the status in ticketin... | \n\nreceived from: tehsauadd.asjdidwni@company... | kmnsvzuq euyvihzc | GRP_0 | we are unable to update the status in ticketin... | English |
| 623 | uacyltoe hxgayczeing-please ignore | uacyltoe hxgayczeing-pls ignore | rxoluzhy pnutohms | GRP_36 | uacyltoe hxgayczeing-please ignore uacyltoe hx... | English |
| 624 | uacyltoe hxgayczeing - please ignore | uacyltoe hxgayczeing - please ignore | zscohabw qorvugzf | GRP_36 | uacyltoe hxgayczeing - please ignore uacyltoe ... | English |
| 625 | excel database problem to run an automation | \n\nreceived from: dwsyaqpr.bzasnmvw@gmail.com... | pchjidaq pvtxjaml | GRP_19 | excel database problem to run an automation \n... | English |
| 626 | production order number issue | \n\nreceived from: zuxcfonv.nyhpkrbe@gmail.com... | zuxcfonv nyhpkrbe | GRP_43 | production order number issue \n\nreceived fr... | English |
| 627 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | krynlisw dqfeglkc | GRP_0 | error login on to the SID_34 system. error log... | English |
| 628 | office excel ,powerpoint 打开一些文件时... | office excel ,powerpoint 打开一些文件时... | hdungfsc znuhyjkx | GRP_31 | office excel ,powerpoint 打开一些文件时... | English |
| 629 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 630 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 631 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 632 | unable to access outlook | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_0 | unable to access outlook \n\nreceived from: rx... | English |
| 633 | please delete following these session created ... | please delete following these session created ... | zsqabokr xbtsaodr | GRP_44 | please delete following these session created ... | English |
| 634 | when you look up price and availability local ... | see attachment. | qmglkaru qiwhfkdv | GRP_40 | when you look up price and availability local ... | English |
| 635 | inquiry on impact awards | from: wauhocsk vxuikqaf \nsent: sunday, octobe... | wauhocsk vxuikqaf | GRP_0 | inquiry on impact awards from: wauhocsk vxuikq... | English |
| 636 | please provide access for mails in my mobile p... | from: fdbgoamk hygxzklauthuchidambaramdnty \r\... | fdbgoamk hygxzkla | GRP_0 | please provide access for mails in my mobile p... | English |
| 637 | job bkbackup_tool_csqe_dev_inc failed in job_s... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkbackup_tool_csqe_dev_inc failed in job_s... | English |
| 638 | job bkbackup_tool_HostName_771_prod_inc failed... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkbackup_tool_HostName_771_prod_inc failed... | English |
| 639 | job Job_450 failed in job_scheduler at: 10/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_450 failed in job_scheduler at: 10/23/... | English |
| 640 | job bkbackup_tool_HostName_768_prod_inc failed... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkbackup_tool_HostName_768_prod_inc failed... | English |
| 641 | job bkbackup_tool_HostName_920_prod_inc failed... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkbackup_tool_HostName_920_prod_inc failed... | English |
| 642 | job Job_2114 failed in job_scheduler at: 10/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_2114 failed in job_scheduler at: 10/23... | English |
| 643 | interface: gigabitethernet0/2 · usa-2950-acce... | interface: gigabitethernet0/2 · usa-2950-acce... | spxqmiry zpwgoqju | GRP_4 | interface: gigabitethernet0/2 · usa-2950-acce... | English |
| 644 | outlook 365 | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | outlook 365 \n\nreceived from: oetlgbfw.bsctr... | English |
| 645 | job Job_504 failed in job_scheduler at: 10/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_504 failed in job_scheduler at: 10/23/... | English |
| 646 | job Job_1422 failed in job_scheduler at: 10/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1422 failed in job_scheduler at: 10/23... | English |
| 647 | HostName_587: germany server is down since 11:... | HostName_587: germany server is down since 11:... | rkupnshb gsmzfojw | GRP_12 | HostName_587: germany server is down since 11:... | English |
| 648 | call came and there was only music and nothing... | call came and there was only music and nothing... | rbozivdq gmlhrtvp | GRP_0 | call came and there was only music and nothing... | English |
| 649 | blank call // loud noise | blank call // loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call // loud noise blank call // loud noise | English |
| 650 | erp password reset | \n\nreceived from: skmdgnuh.utgclesd@gmail.com... | skmdgnuh utgclesd | GRP_0 | erp password reset \n\nreceived from: skmdgnuh... | English |
| 651 | call came and got disconnected | call came and got disconnected | rbozivdq gmlhrtvp | GRP_0 | call came and got disconnected call came and g... | English |
| 652 | job bwhrerattr failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrerattr failed in job_scheduler at: 10/... | English |
| 653 | job Job_727 failed in job_scheduler at: 10/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_727 failed in job_scheduler at: 10/23/... | English |
| 654 | HostName_1013 does not come up after weekly re... | HostName_1013 does not come up after weekly re... | jloygrwh acvztedi | GRP_12 | HostName_1013 does not come up after weekly re... | English |
| 655 | job bk_hana_SID_22_os_wly_dp failed in job_sch... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_22_os_wly_dp failed in job_sch... | English |
| 656 | job Job_3097 failed in job_scheduler at: 10/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_3097 failed in job_scheduler at: 10/23... | English |
| 657 | job Job_3096 failed in job_scheduler at: 10/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_3096 failed in job_scheduler at: 10/23... | English |
| 658 | job Job_3074 failed in job_scheduler at: 10/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_3074 failed in job_scheduler at: 10/23... | English |
| 659 | job Job_3076 failed in job_scheduler at: 10/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_3076 failed in job_scheduler at: 10/23... | English |
| 660 | job SID_37cold failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37cold failed in job_scheduler at: 10/... | English |
| 661 | job bkbackup_tool_sql_prod_full failed in job_... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_sql_prod_full failed in job_... | English |
| 662 | erp SID_34 account locked | erp SID_34 account locked | pinovmqw icafkqmw | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 663 | job bk_hana_SID_62_erp_wly_dp failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_62_erp_wly_dp failed in job_sc... | English |
| 664 | switch down - apac-company-rpmwh-2960s-access-... | switch down - apac-company-rpmwh-2960s-access-... | spxqmiry zpwgoqju | GRP_8 | switch down - apac-company-rpmwh-2960s-access-... | English |
| 665 | inquiry on expense report-erp | inquiry on expense report-erp | eqwaiphc qxwfeuth | GRP_0 | inquiry on expense report-erp inquiry on expen... | English |
| 666 | job bkbackup_tool_powder_prod_full failed in j... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_powder_prod_full failed in j... | English |
| 667 | job bkbackup_tool_powder_prod_full failed in j... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_powder_prod_full failed in j... | English |
| 668 | job Job_480 failed in job_scheduler at: 10/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_480 failed in job_scheduler at: 10/22/... | English |
| 669 | job bkbackup_tool_sql_prod_full failed in job_... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkbackup_tool_sql_prod_full failed in job_... | English |
| 670 | job Job_466 failed in job_scheduler at: 10/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_466 failed in job_scheduler at: 10/22/... | English |
| 671 | job Job_482 failed in job_scheduler at: 10/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_482 failed in job_scheduler at: 10/22/... | English |
| 672 | job bkbackup_tool_o365_primary_prod_full faile... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkbackup_tool_o365_primary_prod_full faile... | English |
| 673 | job Job_581 failed in job_scheduler at: 10/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_581 failed in job_scheduler at: 10/22/... | English |
| 674 | HostName_804: c:\ disk volume is over 85% spac... | HostName_804: c:\ disk volume is over 85% spac... | oldrctiu bxurpsyi | GRP_12 | HostName_804: c:\ disk volume is over 85% spac... | English |
| 675 | job bwdpmbkp failed in job_scheduler at: 10/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwdpmbkp failed in job_scheduler at: 10/22... | English |
| 676 | HostName_1345 server is offline | \r\n\r\nreceived from: hpqjaory.gfrwmije@gmail... | hpqjaory gfrwmije | GRP_4 | HostName_1345 server is offline \r\n\r\nreceiv... | English |
| 677 | network outage : south_amerirtca ktthasb site... | what type of outage: __x___network _____c... | jyoqwxhz clhxsoqy | GRP_8 | network outage : south_amerirtca ktthasb site... | English |
| 678 | account unlock | account unlock | eboutzmn umzvbkfh | GRP_0 | account unlock account unlock | English |
| 679 | the terminate action for kmzucxgq vjzfocgt has... | from: \nsent: saturday, october 22, 2016 6:29 ... | ljpgedia bzqcwsgf | GRP_2 | the terminate action for kmzucxgq vjzfocgt has... | English |
| 680 | problems with the data model in excel | \n\nreceived from: bwfhtumx.japznrvb@gmail.com... | bwfhtumx japznrvb | GRP_0 | problems with the data model in excel \n\nrece... | English |
| 681 | password reset | password reset | eboutzmn umzvbkfh | GRP_0 | password reset password reset | English |
| 682 | job Job_500 failed in job_scheduler at: 10/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_500 failed in job_scheduler at: 10/22/... | English |
| 683 | job Job_1422 failed in job_scheduler at: 10/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1422 failed in job_scheduler at: 10/22... | English |
| 684 | job Job_593 failed in job_scheduler at: 10/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/22/... | English |
| 685 | power outage : engineering_toolkuznetsk wareho... | what type of outage: ___x__network _____c... | dkmcfreg anwmfvlg | GRP_8 | power outage : engineering_toolkuznetsk wareho... | English |
| 686 | job bkwin_infonet1_full failed in job_schedule... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_infonet1_full failed in job_schedule... | English |
| 687 | outlook not working | \r\n\r\nreceived from: dceoufyz.saufqkmd@gmail... | dceoufyz saufqkmd | GRP_0 | outlook not working \r\n\r\nreceived from: dc... | English |
| 688 | HostName_1345 server: beeping sound in the server | HostName_1345 server beeping sound in the server | xpoqcrtb zwrypjqv | GRP_0 | HostName_1345 server: beeping sound in the ser... | English |
| 689 | ticket update on ticket_no0451791 | ticket update on ticket_no0451791 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0451791 ticket updat... | English |
| 690 | usa - (company):company-na-usa-usa-2950-core-s... | usa - (company):company-na-usa-usa-2950-core-s... | oldrctiu bxurpsyi | GRP_8 | usa - (company):company-na-usa-usa-2950-core-s... | English |
| 691 | circuit outage:usa pa, company-ctc-dr-vpn-rtr.... | what type of outage: _____network _x____c... | oldrctiu bxurpsyi | GRP_8 | circuit outage:usa pa, company-ctc-dr-vpn-rtr.... | English |
| 692 | after my bios was update, i can no longer log ... | i get an error every time that i try to log in... | ypetnhio ouhlpvig | GRP_0 | after my bios was update, i can no longer log ... | English |
| 693 | unable to connect to erp | unable to connect to erp | ljodkepq dsifumxl | GRP_0 | unable to connect to erp unable to connect to... | English |
| 694 | unable to access etime through ie | password prompt resulting in an unauthorized a... | yxsermtd vloueirh | GRP_0 | unable to access etime through ie password pro... | English |
| 695 | HostName_1325 has a drive that is flashing yel... | please check HostName_1325 (shop_floor_app se... | zbhfrsto vhgtoxib | GRP_0 | HostName_1325 has a drive that is flashing yel... | English |
| 696 | usa and usa - perhaps other sites as well. ou... | usa and usa - perhaps other sites as well. ma... | slzhuipc sqntcber | GRP_26 | usa and usa - perhaps other sites as well. ou... | English |
| 697 | access denied : | access denied : collaboration_platform\n\n\n\n... | mxzcjhpi pnelahdw | GRP_16 | access denied : access denied : collaboration... | English |
| 698 | jpg files encrypted | jpg files encrypted | gpdywmbt pmxfiqkl | GRP_0 | jpg files encrypted jpg files encrypted | English |
| 699 | reset password | \n\nreceived from: bihfazru.bhjqvtzm@gmail.com... | bihfazru bhjqvtzm | GRP_0 | reset password \n\nreceived from: bihfazru.bhj... | English |
| 700 | terminated employees | \n\nreceived from: tsicojkp.kghaozew@gmail.com... | tsicojkp kghaozew | GRP_0 | terminated employees \n\nreceived from: tsico... | English |
| 701 | outlook not working | outlook not working | pxbzltkn fsediuyr | GRP_0 | outlook not working outlook not working | English |
| 702 | unlocked and reset erp SID_1 | unlocked and reset erp SID_1 | slkxgzdj wxpytevu | GRP_0 | unlocked and reset erp SID_1 unlocked and rese... | English |
| 703 | company center not pulling replacement item | company center is not pulling replacement item... | vbmzgsdk jdmyazti | GRP_13 | company center not pulling replacement item co... | English |
| 704 | vip 1: erp account locked for user janhduh kee... | vip 1: erp account locked for user janhduh kee... | lpoebzsc grknswyo | GRP_0 | vip 1: erp account locked for user janhduh kee... | English |
| 705 | outlook freezing for all users | outlook freezing for all users | bdeplqyj fewovrcq | GRP_4 | outlook freezing for all users outlook freezin... | English |
| 706 | outlook/crm plug in issue | \n\nreceived from: tskvmwag.awkrdqzb@gmail.com... | tskvmwag awkrdqzb | GRP_0 | outlook/crm plug in issue \n\nreceived from: t... | English |
| 707 | printer prtqx4580 won't print for anyone in ou... | \r\n\r\nreceived from: gqkedvzu.czoniyra@gmail... | gqkedvzu czoniyra | GRP_3 | printer prtqx4580 won't print for anyone in ou... | English |
| 708 | password error in erp | \n\nreceived from: ivohcdpw.ixcanwbm@gmail.com... | ivohcdpw ixcanwbm | GRP_0 | password error in erp \n\nreceived from: ivohc... | English |
| 709 | business partner id - bertsckaadyd122 | \n\nreceived from: inxsupmy.zhwmifvx@gmail.com... | inxsupmy zhwmifvx | GRP_2 | business partner id - bertsckaadyd122 \n\nrece... | English |
| 710 | missed call | missed call | fumkcsji sarmtlhy | GRP_0 | missed call missed call | English |
| 711 | id 04637 | id 04637 printer have paper stuck up issue. | ongumpdz pjkrfmbc | GRP_19 | id 04637 id 04637 printer have paper stuck up ... | English |
| 712 | ms outlook network error messages | when searching in inbox the following message ... | dctviemg muapxkns | GRP_0 | ms outlook network error messages when searchi... | English |
| 713 | skype error while logging in | skype error while logging in | itslpwra vybdkuoa | GRP_0 | skype error while logging in skype error whil... | English |
| 714 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | amunklhx bvrachko | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 715 | unable to open .xml files on the computer | unable to open .xml files on the computer | wbqtfzdv aectbluw | GRP_3 | unable to open .xml files on the computer unab... | English |
| 716 | skype problem | \n\nreceived from: gdnwlkit.jokidavy@gmail.com... | gdnwlkit jokidavy | GRP_0 | skype problem \n\nreceived from: gdnwlkit.joki... | English |
| 717 | help line phone problem | \n\nreceived from: gdnwlkit.jokidavy@gmail.com... | gdnwlkit jokidavy | GRP_0 | help line phone problem \n\nreceived from: gdn... | English |
| 718 | skype | \r\n\r\nreceived from: yiramdntyjqc.qtrcepsa@g... | yiramjqc qtrcepsa | GRP_0 | skype \r\n\r\nreceived from: yiramdntyjqc.qtrc... | English |
| 719 | my pc don`t work with wifi | \r\ni have wifi, but my computer does not work... | syhmgdvf jqamflty | GRP_0 | my pc don`t work with wifi \r\ni have wifi, bu... | English |
| 720 | blank call | blank call | rbozivdq gmlhrtvp | GRP_0 | blank call blank call | English |
| 721 | information on previous tickets | name:slrgconp onukdesq\nlanguage:\nbrowser:mic... | rbozivdq gmlhrtvp | GRP_0 | information on previous tickets name:slrgconp ... | English |
| 722 | email address in purchasing | from: dpuifqeo eglwsfkn \nsent: friday, octobe... | dfetvmzq brxavtzp | GRP_2 | email address in purchasing from: dpuifqeo egl... | English |
| 723 | reset the password for jgxmafwk mlroijfp on er... | i am new to erp and have had no training at al... | jgxmafwk mlroijfp | GRP_0 | reset the password for jgxmafwk mlroijfp on er... | English |
| 724 | blank call | blank call | rbozivdq gmlhrtvp | GRP_0 | blank call blank call | English |
| 725 | outlook indexing error | \r\n\r\nreceived from: egjwxhlo.weofysln@gmail... | egjwxhlo weofysln | GRP_0 | outlook indexing error \r\n\r\nreceived from:... | English |
| 726 | erp SID_34 erp production password reset | erp SID_34 erp production password reset | mreocsnk swoyxzma | GRP_0 | erp SID_34 erp production password reset erp S... | English |
| 727 | ethics login error | when i try to login to ethics training, i clic... | kiqfusgp xfzsreug | GRP_0 | ethics login error when i try to login to ethi... | English |
| 728 | old ticket no.inc1553707. usa access for confi... | usa access for configuring outlook exchange on... | ytwmgpbk cpawsihk | GRP_0 | old ticket no.inc1553707. usa access for confi... | English |
| 729 | interface: gigabitethernet1/0/40 ·shopfloor_1... | gigabitethernet1/0/40 · shopfloor_111_schuett... | jyoqwxhz clhxsoqy | GRP_8 | interface: gigabitethernet1/0/40 ·shopfloor_1... | English |
| 730 | reset passwords for qkgnwxto dwtivjrp using pa... | cannot log into hiatchi password manager, to c... | qkgnwxto dwtivjrp | GRP_17 | reset passwords for qkgnwxto dwtivjrp using pa... | English |
| 731 | password reset request. | password reset request. | zymdwqsi jzvbthil | GRP_0 | password reset request. password reset request. | English |
| 732 | my external monitor will not come on this morn... | my external monitor will not come on this morn... | bcaxeuvh rgiqfavb | GRP_3 | my external monitor will not come on this morn... | English |
| 733 | delivery issue | \r\n\r\nreceived from: acmglkti.cwgxrabu@gmail... | acmglkti cwgxrabu | GRP_18 | delivery issue \r\n\r\nreceived from: acmglkti... | English |
| 734 | company.com not working : dns issue | company.com not working : dns issue | iqthfjvx qkpgrfzx | GRP_0 | company.com not working : dns issue company.c... | English |
| 735 | customer catalogue and collaboration_tool is n... | customer catalogue and collaboration_tool is n... | dtisfuyp fpvrjlkz | GRP_0 | customer catalogue and collaboration_tool is n... | English |
| 736 | unable to call in | \r\n\r\nreceived from: lomzfqns.htznsgdf@gmail... | lomzfqns htznsgdf | GRP_0 | unable to call in \r\n\r\nreceived from: lomzf... | English |
| 737 | access to netweaver | \n\nreceived from: fgljepar.xpsarwiz@gmail.com... | bitdmacs kumdiywz | GRP_0 | access to netweaver \n\nreceived from: fgljepa... | English |
| 738 | lean tracker issues | \n\nreceived from: vtwxaefm.ljisafue@gmail.com... | vtwxaefm ljisafue | GRP_0 | lean tracker issues \n\nreceived from: vtwxaef... | English |
| 739 | shared mailbox not updating activities | shared mailbox not updating activities | tqpbazxm jhbkycgd | GRP_0 | shared mailbox not updating activities shared ... | English |
| 740 | i cannot get into my computer, get an error no... | i cannot get into my computer, get an error no... | ubqjihpt pzrjxmgd | GRP_3 | i cannot get into my computer, get an error no... | English |
| 741 | account locked in erp SID_34 | account locked in erp SID_34 | wvqgbdhm fwchqjor | GRP_0 | account locked in erp SID_34 account locked in... | English |
| 742 | would you please reset my erp hcm password? i'... | would you please reset my erp hcm password? i'... | qpkbiwzl urypnjvq | GRP_0 | would you please reset my erp hcm password? i'... | English |
| 743 | outlook and skype not responding. | outlook and skype not responding. | ewvugfcy nxbdajgh | GRP_0 | outlook and skype not responding. outlook and ... | English |
| 744 | drucker in löwe uacyltoe hxgayczeraum knicrht... | drucker in löwe uacyltoe hxgayczeraum knicrht... | dtlmbcrx mwuateyx | GRP_24 | drucker in löwe uacyltoe hxgayczeraum knicrht... | Scots |
| 745 | benötige zugriff auf schichtplaner | bitte zugriff auf folgenden pfad einrichten: d... | svelutaj nguzrmec | GRP_34 | benötige zugriff auf schichtplaner bitte zugr... | German |
| 746 | HostName_113: plm plot / view (production_orde... | HostName_113: plm plot / view (production_orde... | jyoqwxhz clhxsoqy | GRP_14 | HostName_113: plm plot / view (production_orde... | English |
| 747 | password no more valid. new password to access... | password no more valid. new password to access... | lpfzasmv cleoprzq | GRP_0 | password no more valid. new password to access... | English |
| 748 | reinstall hardcopy und EU_tool \lndypaqg dhqwtcsr | reinstall hardcopy und EU_tool \lndypaqg dhqwtcsr | lndypaqg dhqwtcsr | GRP_24 | reinstall hardcopy und EU_tool \lndypaqg dhqwt... | German |
| 749 | help to install erp in computer lpawhdt8515494 | hi team,\n\ncould you please, help me to reins... | qasdhyzm yuglsrwx | GRP_0 | help to install erp in computer lpawhdt8515494... | English |
| 750 | expedite mm3516492 mm2405383 | hi,team\npls. help to run out dn against sto... | wktesmbp lorjymef | GRP_6 | expedite mm3516492 mm2405383 hi,team\npls. ... | English |
| 751 | we111 gibt nur eine fehlermeldung aus | we111 gibt nur eine fehlermeldung aus :\r\nanm... | vzqomdgt jwoqbuml | GRP_24 | we111 gibt nur eine fehlermeldung aus we111 gi... | German |
| 752 | pc slow | my pc is responding slow. can the pc team plea... | nrugzxkl lohqkvry | GRP_0 | pc slow my pc is responding slow. can the pc t... | English |
| 753 | job Job_593 failed in job_scheduler at: 10/21/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/21/... | English |
| 754 | trigger loads for bw - fill rate recovery-kba ... | trigger loads for bw - fill rate recovery-kba ... | vthuzanc fqdgotvx | GRP_9 | trigger loads for bw - fill rate recovery-kba ... | English |
| 755 | lable drucker funktioniert nicht | lable drucker in der endkontrolle defense gibt... | vpnraqfk pgocqjbu | GRP_33 | lable drucker funktioniert nicht lable drucker... | German |
| 756 | job bk_biaprod failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_biaprod failed in job_scheduler at: 10/... | English |
| 757 | rechner für längenmessmaschine uacyltoe hxga... | rechner für längenmessmaschine uacyltoe hxga... | xosdfhbu gtbfkisl | GRP_24 | rechner für längenmessmaschine uacyltoe hxga... | German |
| 758 | pc name | \n\nreceived from: koahsriq.wdugqatr@gmail.com... | koahsriq wdugqatr | GRP_28 | pc name \n\nreceived from: koahsriq.wdugqatr@g... | English |
| 759 | delivery unable to ship out delivery | please provide the following: \n\nwhat order n... | cwrikael oanmsecr | GRP_13 | delivery unable to ship out delivery please p... | English |
| 760 | pw reset for erp - user name: pihddltzr123 | \n\nreceived from: iboltufk.ezfnvcqp@gmail.com... | iboltufk ezfnvcqp | GRP_0 | pw reset for erp - user name: pihddltzr123 \n... | English |
| 761 | kabel lan 10m liefern \gogtyekhan merdivan | kabel lan 10m liefern \gogtyekhan merdivan | qidgvtwa qvbutayx | GRP_24 | kabel lan 10m liefern \gogtyekhan merdivan kab... | German |
| 762 | netweaver | cannot use it because of missing plugin | rwhqabon gjxemiyp | GRP_0 | netweaver cannot use it because of missing plugin | English |
| 763 | erp SID_34 response time too slow, transaction... | transactions are interrupted and erp connectio... | ljynoupq zwlxjens | GRP_0 | erp SID_34 response time too slow, transaction... | English |
| 764 | please release access to \\HostName_705\teams\... | \r\n\r\nreceived from: byclpwmv.esafrtbh@gmail... | byclpwmv esafrtbh | GRP_33 | please release access to \\HostName_705\teams\... | English |
| 765 | pls release access to \\HostName_705\lean\ | \r\n\r\nreceived from: byclpwmv.esafrtbh@gmail... | byclpwmv esafrtbh | GRP_0 | pls release access to \\HostName_705\lean\ \r\... | English |
| 766 | reminder email notification keeps on sending f... | \r\n\r\nreceived from: izwtdnfq.xptuoaid@gmail... | izwtdnfq xptuoaid | GRP_29 | reminder email notification keeps on sending f... | English |
| 767 | slow erp | \n\nreceived from: tejahd.easdwmdwrappa@compan... | xqoljzbh aydcwkxt | GRP_0 | slow erp \n\nreceived from: tejahd.easdwmdwrap... | English |
| 768 | erp slow down. few locations impacted, at leas... | erp slow down. few locations impacted, at leas... | hadbkvwt touedfyr | GRP_0 | erp slow down. few locations impacted, at leas... | English |
| 769 | backup für rechner lasplant_119\pfjwinbg ljt... | backup für rechner lasplant_119\pfjwinbg ljt... | pfjwinbg ljtzbdqg | GRP_24 | backup für rechner lasplant_119\pfjwinbg ljt... | Luxembourgish |
| 770 | blank call | blank call | pwkrlqbc zslqfmka | GRP_0 | blank call blank call | English |
| 771 | log in for erp is out of order | log in for erp is out of order | vncqjgzi tvalnycz | GRP_0 | log in for erp is out of order log in for erp ... | English |
| 772 | pls. help to run out dn against sto#5019358024... | pls. help to run out dn against sto#5019358024... | wktesmbp lorjymef | GRP_6 | pls. help to run out dn against sto#5019358024... | English |
| 773 | EU_tool funktioniert nicht mehr (EU_tool is no... | EU_tool funktioniert nicht mehr | txkgmwbc qohmgwrp | GRP_25 | EU_tool funktioniert nicht mehr (EU_tool is no... | German |
| 774 | *** urgent *** please reactive user id = dudyh... | \n\nreceived from: hupnceij.hyozjakb@gmail.com... | hupnceij hyozjakb | GRP_33 | *** urgent *** please reactive user id = dudyh... | English |
| 775 | unable to open eps files | unable to open eps files | ckwfvyda saunmgqt | GRP_0 | unable to open eps files unable to open eps f... | English |
| 776 | netpath running from : HostName_1089 is having... | received solarwind alert 2:38 am on 10/21 et\r... | jloygrwh acvztedi | GRP_4 | netpath running from : HostName_1089 is having... | English |
| 777 | pw reset for erp - user name piltzrnj567 th... | \r\n\r\nreceived from: iboltufk.ezfnvcqp@gmail... | iboltufk ezfnvcqp | GRP_0 | pw reset for erp - user name piltzrnj567 th... | English |
| 778 | job Job_2063 failed in job_scheduler at: 10/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063 failed in job_scheduler at: 10/21... | English |
| 779 | collaboration_platform nicht verfügbar - kein... | collaboration_platform nicht verfügbar - kein... | vdylwkbo hzlnrgat | GRP_0 | collaboration_platform nicht verfügbar - kein... | German |
| 780 | request authorization | \r\n\r\nreceived from: hkruyqfc.aouezihl@gmail... | hkruyqfc aouezihl | GRP_2 | request authorization \r\n\r\nreceived from: h... | English |
| 781 | bex error | from: wgpimkle kijhcwur [mailto:wgpimkle.kijhc... | wgpimkle kijhcwur | GRP_19 | bex error from: wgpimkle kijhcwur [mailto:wgpi... | English |
| 782 | EU_tool funktioniert nicht | EU_tool funktioniert nicht | phedsjct lyphanue | GRP_25 | EU_tool funktioniert nicht EU_tool funktionier... | German |
| 783 | job bkwin_search_server_prod_daily failed in j... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_search_server_prod_daily failed in j... | English |
| 784 | reinecker wzs 60 r 241 abteilung kentip | pc fährt nach neustart nicht mehr hoch bzw. b... | jfteqgyc ncazxobk | GRP_33 | reinecker wzs 60 r 241 abteilung kentip pc fä... | German |
| 785 | erp is too slow | name:zheqafyo bqirpxag\nlanguage:\nbrowser:mic... | cowsvzel ryhkefwv | GRP_14 | erp is too slow name:zheqafyo bqirpxag\nlangua... | English |
| 786 | users from various department are complaining ... | users from various department are complaining ... | ythucdjx mujfrsyl | GRP_0 | users from various department are complaining ... | English |
| 787 | job Job_3052 failed in job_scheduler at: 83.69... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3052 failed in job_scheduler at: 83.69... | English |
| 788 | circuit outage:usa plant - (company) secondar... | what type of outage: _____network ___x__c... | jloygrwh acvztedi | GRP_8 | circuit outage:usa plant - (company) secondar... | English |
| 789 | erp SID_34 system down | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_14 | erp SID_34 system down \n\nreceived from: rxoy... | English |
| 790 | unable to check pay slip in hr_tool | unable to check pay slip in hr_tool | gbirhjat fptbrhwv | GRP_0 | unable to check pay slip in hr_tool unable to... | English |
| 791 | erp密ç 忘记 id: fenthgh45 erp password wa... | \n\nreceived from: jmxqhrfa.vawptbfl@gmail.com... | jmxqhrfa vawptbfl | GRP_0 | erp密ç 忘记 id: fenthgh45 erp password wa... | English |
| 792 | erp runs very slow in apac | agents have to wait minutes for each operation... | zupifghd vdqxepun | GRP_0 | erp runs very slow in apac agents have to wait... | English |
| 793 | erp response time is very slow | as we found that the erp response time (speed)... | tqfnalpj qyoscnge | GRP_0 | erp response time is very slow as we found tha... | English |
| 794 | plant_298 erp SID_34 system slow | \r\n\r\nreceived from: rxoynvgi.ntgdsehl@gmail... | rxoynvgi ntgdsehl | GRP_0 | plant_298 erp SID_34 system slow \r\n\r\nrecei... | English |
| 795 | pls. help to check erp due to slow response,thx! | pls. help to check erp due to slow response,thx! | wktesmbp lorjymef | GRP_0 | pls. help to check erp due to slow response,th... | English |
| 796 | job bkwin_HostName_770_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_770_inc failed in job_sched... | English |
| 797 | HostName_957 & 662 fence | HostName_957 & 662 fence are at 11 instead of 9 | jloygrwh acvztedi | GRP_8 | HostName_957 & 662 fence HostName_957 & 662 fe... | English |
| 798 | a termination for hwddwwd wdflefrong, 11175wdn... | a termination for hwddwwd wdflefrong, 11175wdn... | homsxpyw qgcsaymo | GRP_2 | a termination for hwddwwd wdflefrong, 11175wdn... | English |
| 799 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 800 | terminate action for svfuhlnx aqrzskpg has com... | \r\na termination for svfuhlnx aqrzskpg, 11177... | wvngzrca sfmrzdth | GRP_2 | terminate action for svfuhlnx aqrzskpg has com... | English |
| 801 | old emails | \r\n\r\nreceived from: pojhkxua.frpxtsca@gmail... | pojhkxua frpxtsca | GRP_27 | old emails \r\n\r\nreceived from: pojhkxua.frp... | English |
| 802 | job SID_39hotf failed in job_scheduler at: 83.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_39hotf failed in job_scheduler at: 83.... | English |
| 803 | job SID_37hotf failed in job_scheduler at: 83.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_37hotf failed in job_scheduler at: 83.... | English |
| 804 | job SID_38hotf failed in job_scheduler at: 83.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_38hotf failed in job_scheduler at: 83.... | English |
| 805 | job Job_564 failed in job_scheduler at: 83.69.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_564 failed in job_scheduler at: 83.69.... | English |
| 806 | job SID_79hot failed in job_scheduler at: 83.6... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_79hot failed in job_scheduler at: 83.6... | English |
| 807 | job SID_79hot failed in job_scheduler at: 83.6... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_79hot failed in job_scheduler at: 83.6... | English |
| 808 | windows password reset request | windows password reset request | uyjcxkql amcvnfbs | GRP_0 | windows password reset request windows passwor... | English |
| 809 | job Job_555 failed in job_scheduler at: 83.69.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_555 failed in job_scheduler at: 83.69.... | English |
| 810 | unable to log in to ethics | unable to log in to ethics | fsvnjexu yxaevupi | GRP_23 | unable to log in to ethics unable to log in to... | English |
| 811 | query to send a skype meeting | query to send a skype meeting | fsvnjexu yxaevupi | GRP_0 | query to send a skype meeting query to send a ... | English |
| 812 | unable to connect to home printer | unable to connect to home printer | wstxjbpv tjlncygd | GRP_0 | unable to connect to home printer unable to co... | English |
| 813 | folder access required | \nreceived from: naruedlk.mpvhakdq@gmail.com\n... | naruedlk mpvhakdq | GRP_12 | folder access required \nreceived from: narued... | English |
| 814 | ticket update inplant_871302 | ticket update inplant_871302 | fumkcsji sarmtlhy | GRP_0 | ticket update inplant_871302 ticket update inp... | English |
| 815 | outlook issue :ms crm dynamics | outlook issue :ms crm dynamics | gdnwlkit jokidavy | GRP_0 | outlook issue :ms crm dynamics outlook issue :... | English |
| 816 | please usa sasqkjqh lwddkqddq access to printe... | please usa sasqkjqh lwddkqddq access to printe... | lpoebzsc grknswyo | GRP_0 | please usa sasqkjqh lwddkqddq access to printe... | English |
| 817 | password update query | password update query | gdnwlkit jokidavy | GRP_0 | password update query password update query | English |
| 818 | vpn query for user vvtdfettc67 | vpn query for user vvtdfettc67 | lwgytuxq qspdztiw | GRP_0 | vpn query for user vvtdfettc67 vpn query for u... | English |
| 819 | collaboration_platform - industrial | \r\n\r\nreceived from: okmhzgcq.wzvetbqa@gmail... | okmhzgcq wzvetbqa | GRP_16 | collaboration_platform - industrial \r\n\r\nre... | English |
| 820 | job SID_37hotf failed in job_scheduler at: 83.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hotf failed in job_scheduler at: 83.... | English |
| 821 | erp station in castings is not working. | erp station in castings is not working. | juaxnvwz reampilj | GRP_3 | erp station in castings is not working. erp st... | English |
| 822 | dalmdwppi56 pc in castings is not working. | dalmdwppi56 pc in castings is not working. | ljpgedia bzqcwsgf | GRP_3 | dalmdwppi56 pc in castings is not working. dal... | English |
| 823 | no boot | no boot | jinyluhq wpvelhtz | GRP_0 | no boot no boot | English |
| 824 | my outlook doesn´t work. | in last fourth weeks i have same problem. i st... | dismypxe zkwcmgsr | GRP_0 | my outlook doesn´t work. in last fourth week... | English |
| 825 | erp SID_34 : account lock out | erp SID_34 : account lock out | pizcefdg wkyxbgda | GRP_0 | erp SID_34 : account lock out erp SID_34 : ac... | English |
| 826 | not able to get a delivery to create for 50193... | i believe apo is out of synch and cif programd... | khvzugxm yqfrcjwl | GRP_45 | not able to get a delivery to create for 50193... | English |
| 827 | ticket update on inplant_871350 | ticket update on inplant_871350 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_871350 ticket update ... | English |
| 828 | quoting engine: error | quoting engine: error | lagqkmto xqtldrcs | GRP_14 | quoting engine: error quoting engine: error | English |
| 829 | password reset | 413475046745\nreset outlook password for theec... | mfeyouli ndobtzpw | GRP_0 | password reset 413475046745\nreset outlook pa... | English |
| 830 | guest internet access. | \n\nreceived from: etnroabk.jkvshlfm@gmail.com... | etnroabk jkvshlfm | GRP_0 | guest internet access. \n\nreceived from: etnr... | English |
| 831 | files on servers not available. files cannot ... | details provided when trying to open a file on... | pkfvoucw yhmicuba | GRP_12 | files on servers not available. files cannot ... | English |
| 832 | modem in the idg area is down at the usa plant | contact # : \nsummary:modem in the idg area i... | zlpkfdox gzlciskf | GRP_4 | modem in the idg area is down at the usa plant... | English |
| 833 | interface 'serial0/0/0 and serial0/1/1:0 · co... | interface 'serial0/0/0 and serial0/1/1:0 · co... | rkupnshb gsmzfojw | GRP_8 | interface 'serial0/0/0 and serial0/1/1:0 · co... | English |
| 834 | ad account locked out | ad account locked out | nacrbmxo ptbjlxar | GRP_0 | ad account locked out ad account locked out | English |
| 835 | multiple location across europe went down at 1... | what type of outage: ___x__network _____c... | uvrbhlnt bjrmalzi | GRP_8 | multiple location across europe went down at 1... | English |
| 836 | citrix access. | \n\nreceived from: lenxvcbq.vwnhjtoi@gmail.com... | lenxvcbq vwnhjtoi | GRP_12 | citrix access. \n\nreceived from: lenxvcbq.vw... | English |
| 837 | erp SID_34 password reset request | erp SID_34 password reset request | ikerxqwz prkyuitl | GRP_0 | erp SID_34 password reset request erp SID_34 ... | English |
| 838 | symantec pop query : ran quick scan and delete... | symantec pop query : ran quick scan and delete... | jhwgydeb ufiatosg | GRP_3 | symantec pop query : ran quick scan and delete... | English |
| 839 | access to http:://bddjwwwdw/ for axcbfuqo yiag... | axcbfuqo yiagubvh no longer has access to http... | axcbfuqo yiagubvh | GRP_25 | access to http:://bddjwwwdw/ for axcbfuqo yiag... | English |
| 840 | unable to connect to outlook | unable to connect to outlook | wjslkzfr jxlbzwrp | GRP_0 | unable to connect to outlook unable to connec... | English |
| 841 | error with customization (engineering tool) - ... | hi team, \n\ni need your help with two error t... | qasdhyzm yuglsrwx | GRP_46 | error with customization (engineering tool) - ... | English |
| 842 | job Job_3051 failed in job_scheduler at: 83.69... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3051 failed in job_scheduler at: 83.69... | English |
| 843 | mobile device activation : company owned | \nsummary:need phone to connect to outlook | iehdjwvt rndtlyhv | GRP_0 | mobile device activation : company owned \nsu... | English |
| 844 | outlook outage | \n\nreceived from: dxwuovgs.lmuxizht@gmail.com... | dxwuovgs lmuxizht | GRP_0 | outlook outage \n\nreceived from: dxwuovgs.lmu... | English |
| 845 | urgent - please create tax code a0 in cc54yks09. | please create tax code a0 in cc54yks09.this is... | kxcawjet xmybdwfh | GRP_10 | urgent - please create tax code a0 in cc54yks0... | English |
| 846 | crm access issue | hi, poland cannot log into crm. all users in p... | utrvshcp bjlwcovt | GRP_0 | crm access issue hi, poland cannot log into cr... | English |
| 847 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 848 | email license | i need to check on email license for productio... | wvngzrca sfmrzdth | GRP_0 | email license i need to check on email license... | English |
| 849 | can not sign into crm or single sign on portal... | can not sign into crm or single sign on portal... | uyjcxkql amcvnfbs | GRP_0 | can not sign into crm or single sign on portal... | English |
| 850 | password reset | password reset | qcehailo wqynckxg | GRP_0 | password reset password reset | English |
| 851 | calibration system printer | printer dymo labelwriter 450 turbo is not work... | vushymxe ifrbzdtl | GRP_0 | calibration system printer printer dymo labelw... | English |
| 852 | unable to change password | unable to change password | sdgqujpr dtilnycz | GRP_0 | unable to change password unable to change pas... | English |
| 853 | not able to login to sso : one team : it never... | not able to login to sso : one team : it never... | fbwqocvh olapczwf | GRP_0 | not able to login to sso : one team : it never... | English |
| 854 | job SID_37hotf failed in job_scheduler at: 83.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_37hotf failed in job_scheduler at: 83.... | English |
| 855 | pc rqxw8515267 setup for remote company use ca... | pc rqxw8515267 setup for remote company use ca... | xweclugf qmhbjsyi | GRP_3 | pc rqxw8515267 setup for remote company use ca... | English |
| 856 | bdwdwarbara needs the permissions to save to t... | bdwdwarbara needs the permissions to save to t... | tfesaxip cvorpnth | GRP_12 | bdwdwarbara needs the permissions to save to t... | English |
| 857 | needs access to server \\HostName_852\drafting... | the name of the employee who needs access is w... | bkscnoqz umaojbci | GRP_12 | needs access to server \\HostName_852\drafting... | English |
| 858 | need access to ess | need access to ess | jqhtkfsm xoehtbnl | GRP_2 | need access to ess need access to ess | English |
| 859 | engineering_tool installation | engineering_tool installation | mcphgvnb bdegqtyj | GRP_0 | engineering_tool installation engineering_tool... | English |
| 860 | EU_tool for plant plant_197 is working very sl... | EU_tool for plant plant_197 is working very sl... | wckrxovs aunsgzmd | GRP_25 | EU_tool for plant plant_197 is working very sl... | English |
| 861 | crm issue : ms ouutlook issue | crm issue : ms outlook issue | jartombc ghnxkmsl | GRP_0 | crm issue : ms ouutlook issue crm issue : ms ... | English |
| 862 | user needs help to login to the mii. | user needs help to login to the mii.\r\n | jnlzsubr cfgustlo | GRP_0 | user needs help to login to the mii. user need... | English |
| 863 | EU_tool, pdv, batch management does not work | working with the systems is almost impossible.... | hwxqoijt cotsgwrj | GRP_25 | EU_tool, pdv, batch management does not work ... | English |
| 864 | xvwchsdg pladjmxt - employee termination pn | gehe einmal davon aus das herr aurwddwacher zu... | upiyobvj lwohuizr | GRP_33 | xvwchsdg pladjmxt - employee termination pn ge... | German |
| 865 | please reset my SID_34 password | \n\nreceived from: azxhejvq.fyemlavd@gmail.com... | azxhejvq fyemlavd | GRP_0 | please reset my SID_34 password \n\nreceived... | English |
| 866 | user needs help to login to the collaboration_... | user needs help to login to the collaboration_... | ajzycbnu ntfvpsqu | GRP_0 | user needs help to login to the collaboration_... | English |
| 867 | account lockout | account lockout | wqfpkcgh vxtqeris | GRP_0 | account lockout account lockout | English |
| 868 | outlook table view incorrect | outlook table view incorrect | ylqvitsk bfnackrw | GRP_0 | outlook table view incorrect outlook table vie... | English |
| 869 | computer problem | \r\n\r\nreceived from: uskydftv.sgwbfkjz@gmail... | uskydftv sgwbfkjz | GRP_0 | computer problem \r\n\r\nreceived from: uskydf... | English |
| 870 | design pane not showing up in "analysis for ms... | hello,\r\n\r\nwhen i use analysis for ms excel... | entuakhp xrnhtdmk | GRP_0 | design pane not showing up in "analysis for ms... | English |
| 871 | browser issue : flash player and addins issue | browser issue : flash player and addins issue | csmhykge mpxbjudw | GRP_0 | browser issue : flash player and addins issue ... | English |
| 872 | not able to do pgi del. 9169653789- customer v... | not able to do pgi for delivery 9169653789- cu... | jaeuqbvt orlhenfj | GRP_44 | not able to do pgi del. 9169653789- customer v... | English |
| 873 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | qidgvtwa qvbutayx | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 874 | bex analyzer report not working | i open bex analyzer and connect to SID_37\r\ni... | wgothrzl iokdftgn | GRP_0 | bex analyzer report not working i open bex ana... | English |
| 875 | cannot print on usa printer prtqx4580 any long... | cannot print on usa printer prtqx4580 any long... | xzcwlqrv fjrdhiqt | GRP_3 | cannot print on usa printer prtqx4580 any long... | English |
| 876 | unable to print from the printer qc0567 | unable to print from the printer qc0567 | lagqkmto xqtldrcs | GRP_0 | unable to print from the printer qc0567 unable... | English |
| 877 | i need to have k-rckf grind added to my micros... | no one has helped me with this. i am not sure ... | raifstow gfeymtql | GRP_0 | i need to have k-rckf grind added to my micros... | English |
| 878 | user unable to connect at the companysecure a... | user unable to connect at the companysecure a... | nacrbmxo ptbjlxar | GRP_0 | user unable to connect at the companysecure a... | English |
| 879 | barcode über word etikettendruck | ich will im etikettendruck eine zahlen buchsta... | cwrikael oanmsecr | GRP_42 | barcode über word etikettendruck ich will im... | German |
| 880 | job SID_37hotf failed in job_scheduler at: 83.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hotf failed in job_scheduler at: 83.... | English |
| 881 | folder access required | \n\nreceived from: naruedlk.mpvhakdq@gmail.com... | naruedlk mpvhakdq | GRP_34 | folder access required \n\nreceived from: naru... | English |
| 882 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | nmujidyk suylrqbi | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 883 | job Job_1309 failed in job_scheduler at: 83.69... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1309 failed in job_scheduler at: 83.69... | English |
| 884 | bitte user gogtyektdgwo richtig einstellen .na... | bitte user gogtyektdgwo richtig einstellen .na... | vzqomdgt jwoqbuml | GRP_12 | bitte user gogtyektdgwo richtig einstellen .na... | German |
| 885 | called in to get in touch with ecwtrjnq jpecxuty | called in to get in touch with ecwtrjnq jpecxuty | gzjtweph mnslwfqv | GRP_0 | called in to get in touch with ecwtrjnq jpecxu... | English |
| 886 | vip1: account unlock | vip1: account unlock | tqjsmwvk arqoytbh | GRP_0 | vip1: account unlock vip1: account unlock | English |
| 887 | support für roboworker \sandstrahlen \xwirzvd... | support für roboworker \sandstrahlen \xwirzvd... | xwirzvda okhyipgr | GRP_24 | support für roboworker \sandstrahlen \xwirzvd... | German |
| 888 | setup new ws \lndypaqg dhqwtcsr | setup new ws \lndypaqg dhqwtcsr | lndypaqg dhqwtcsr | GRP_24 | setup new ws \lndypaqg dhqwtcsr setup new ws \... | un |
| 889 | ticket update for-ticket_no0447000 | ticket update for-ticket_no0447000 | gzjtweph mnslwfqv | GRP_0 | ticket update for-ticket_no0447000 ticket upda... | English |
| 890 | circuit outage:india -admin-4503-core-sw01 is ... | circuit outage:india -admin-4503-core-sw01 is ... | bozdftwx smylqejw | GRP_8 | circuit outage:india -admin-4503-core-sw01 is ... | English |
| 891 | circuit outage: company-ap-ind-telecom_vendor_... | what type of outage: _____network ___x__c... | jyoqwxhz clhxsoqy | GRP_8 | circuit outage: company-ap-ind-telecom_vendor_... | English |
| 892 | login issue | login issue\r\n-verified user details.(employe... | iwqfelcu gsubfiml | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 893 | telefon im "meeting room 3" telefonnummer 263 ... | wenn jemand von außerhalb anruft dann klingel... | fhzeoyws gudfnirz | GRP_33 | telefon im "meeting room 3" telefonnummer 263 ... | German |
| 894 | unable to launch outlook | unable to launch outlook | iuoavmpx suojykvf | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 895 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | waekugzo dwzfghqo | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 896 | erp account locked | \r\n\r\nreceived from: uexodhqa.txqoifsl@gmail... | uexodhqa txqoifsl | GRP_0 | erp account locked \r\n\r\nreceived from: uexo... | English |
| 897 | job Job_593 failed in job_scheduler at: 83.69.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 83.69.... | English |
| 898 | erp printing - !production order! printer mp74... | production order printer mp7456 is being repla... | xvwchsdg pladjmxt | GRP_5 | erp printing - !production order! printer mp74... | English |
| 899 | HostName_1030 is currently experiencing high c... | HostName_1030 is currently experiencing high c... | jloygrwh acvztedi | GRP_12 | HostName_1030 is currently experiencing high c... | English |
| 900 | hedjdbwlmut.nwwiebler called regarding a folde... | hedjdbwlmut.nwwiebler called regarding a folde... | olckhmvx pcqobjnd | GRP_0 | hedjdbwlmut.nwwiebler called regarding a folde... | English |
| 901 | folder read and write access needed | \r\n\r\nreceived from: unzfipac.opwzmlbc@gmail... | unzfipac opwzmlbc | GRP_34 | folder read and write access needed \r\n\r\nre... | English |
| 902 | activation of outlook email access on iphone 7... | \n\nreceived from: kbclinop.vsczklfp@gmail.com... | kbclinop vsczklfp | GRP_0 | activation of outlook email access on iphone 7... | English |
| 903 | access issue to ess | \n\nreceived from: ihkolepb.ozhnjyef@gmail.com... | ihkolepb ozhnjyef | GRP_0 | access issue to ess \n\nreceived from: ihkolep... | English |
| 904 | probleme mit barcode etiketten \volume format ... | obleme mit barcode etiketten \volume format zu... | vzqomdgt jwoqbuml | GRP_24 | probleme mit barcode etiketten \volume format ... | German |
| 905 | setup new ws in br \usalikfj lfmpxbcn | setup new ws in br \usalikfj lfmpxbcn | usalikfj lfmpxbcn | GRP_24 | setup new ws in br \usalikfj lfmpxbcn setup ne... | un |
| 906 | der monitor an unser längenmessmaschine ist d... | guten morgen hkydrfdw,\n\nder monitor an unser... | ctbsupdy auhocbli | GRP_24 | der monitor an unser längenmessmaschine ist d... | German |
| 907 | fregabe für ordner applications wurde gekappt??? | bitte wieder freigeben | lzpuyrvw zkxbacvn | GRP_0 | fregabe für ordner applications wurde gekappt... | German |
| 908 | reinstall eagl9111361 from scratch - device ch... | reinstall eagl9111361 from scratch - device ch... | jksgwdyi greuqxko | GRP_28 | reinstall eagl9111361 from scratch - device ch... | English |
| 909 | restore | \n\nreceived from: trgqbeax.hfyzudql@gmail.com... | trgqbeax hfyzudql | GRP_12 | restore \n\nreceived from: trgqbeax.hfyzudql@g... | English |
| 910 | job Job_1378 failed in job_scheduler at: 83.69... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1378 failed in job_scheduler at: 83.69... | English |
| 911 | printer not working. | \r\n\r\nreceived from: yhmzxcia.heszapvl@gmail... | yhmzxcia heszapvl | GRP_19 | printer not working. \r\n\r\nreceived from: y... | English |
| 912 | EU_tool, pls and wqw are working very slow. | EU_tool, pls and wqw are working very slow. | jltebswi zmvohjws | GRP_25 | EU_tool, pls and wqw are working very slow. EU... | English |
| 913 | schreibrechte für ksdvp3, ce_leiter | schreibrechte für ksdvp3, ce_leiter | nemzycxb xpsgkahw | GRP_34 | schreibrechte für ksdvp3, ce_leiter schreibre... | German |
| 914 | on the english forms we are printing german in... | there was a change in bank details made with t... | ujxvrlzg pkaegicn | GRP_13 | on the english forms we are printing german in... | English |
| 915 | EU_tool jobs again not running, please help im... | released orders do not make it into the "to-do... | qmhikdzl zatcorjd | GRP_25 | EU_tool jobs again not running, please help im... | English |
| 916 | is skype down? | \n\nreceived from: lenxvcbq.vwnhjtoi@gmail.com... | lenxvcbq vwnhjtoi | GRP_0 | is skype down? \n\nreceived from: lenxvcbq.vwn... | English |
| 917 | whenever i fill in any amount money into erp, ... | whenever i fill in any amount money into erp, ... | facrghdv velfjros | GRP_0 | whenever i fill in any amount money into erp, ... | English |
| 918 | job Job_1388 failed in job_scheduler at: 83.69... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1388 failed in job_scheduler at: 83.69... | English |
| 919 | SID_1 - configair server responds with " 500 ... | configair server responds with " 500 interna... | rednkluh lrpyvcxs | GRP_14 | SID_1 - configair server responds with " 500 ... | English |
| 920 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 921 | unable to create delivery [urgent] | plant_304 have 5pcs cannot created d/n for mm#... | mgpfntcl mjoigcdb | GRP_6 | unable to create delivery [urgent] plant_304 h... | English |
| 922 | backup data | \r\n\r\nreceived from: ucdwyxko.apktrsyq@gmail... | ucdwyxko apktrsyq | GRP_12 | backup data \r\n\r\nreceived from: ucdwyxko.ap... | English |
| 923 | SID_34 - purchase requisition approval issue | \r\n\r\nreceived from: izwtdnfq.xptuoaid@gmail... | izwtdnfq xptuoaid | GRP_29 | SID_34 - purchase requisition approval issue \... | English |
| 924 | seit 20.10.2016 06:00mesz serverprobleme qmsof... | seit 20.10.2016 06:00mesz serverprobleme qmsof... | qkedpfyj qechgaty | GRP_25 | seit 20.10.2016 06:00mesz serverprobleme qmsof... | German |
| 925 | ibm pmr#902s9kr:problem report from pwr8hmc1.h... | \nfrom: toolonicserviceagent_pwr8hmc1@pwr8hmc... | jloygrwh acvztedi | GRP_47 | ibm pmr#902s9kr:problem report from pwr8hmc1.h... | English |
| 926 | reset the password for arsbtkvd qieagkos on er... | \r\n\r\nreceived from: arsbtkvd.qieagkos@gmail... | arsbtkvd qieagkos | GRP_0 | reset the password for arsbtkvd qieagkos on er... | English |
| 927 | not able to add lean project into collaboratio... | \n\nreceived from: jhyazros.azdxonjg@gmail.com... | jhyazros azdxonjg | GRP_0 | not able to add lean project into collaboratio... | English |
| 928 | prints (business_client) | \n\nreceived from: vciknubg.wdlkabms@gmail.com... | vciknubg wdlkabms | GRP_2 | prints (business_client) \n\nreceived from: vc... | English |
| 929 | can't log in ticketing_tool | \n\nreceived from: zuxcfonv.nyhpkrbe@gmail.com... | zuxcfonv nyhpkrbe | GRP_0 | can't log in ticketing_tool \n\nreceived from... | English |
| 930 | network outage:cantabria (mecftgobusa) - (kenc... | what type of outage: __x___network _____c... | jloygrwh acvztedi | GRP_8 | network outage:cantabria (mecftgobusa) - (kenc... | English |
| 931 | job SID_37stat failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_1 | job SID_37stat failed in job_scheduler at: 10/... | English |
| 932 | mm # 2639483 iak-urgent | from: kwddwdw hudfefwe \nsent: thursday, octob... | ovhtgsxd dcqhnrmy | GRP_18 | mm # 2639483 iak-urgent from: kwddwdw hudfefw... | English |
| 933 | the note which was always printed at bottom of... | please see attachment, | tfazwrdv upwonzvd | GRP_13 | the note which was always printed at bottom of... | English |
| 934 | erp locked | \n\nreceived from: vqefplhm.mfpjaleo@gmail.com... | vqefplhm mfpjaleo | GRP_0 | erp locked \n\nreceived from: vqefplhm.mfpjale... | English |
| 935 | error erp /SID_34/sa38 /zsd_mexico_inwarehouse... | \r\n\r\nreceived from: zvjwleuo.tdfqgcal@gmail... | zvjwleuo tdfqgcal | GRP_2 | error erp /SID_34/sa38 /zsd_mexico_inwarehouse... | English |
| 936 | collaboration_platform access issue | first name: trtgoywdd\n\nlast name: povirttch\... | cmifnspg icauzxfh | GRP_16 | collaboration_platform access issue first nam... | English |
| 937 | access to SID_1 | i need access to SID_1 uacyltoe hxgaycze syste... | varldgiw hfyogqnj | GRP_0 | access to SID_1 i need access to SID_1 uacylto... | English |
| 938 | no authorization in apps | no authorization in apps | vcnjqfta islabdft | GRP_25 | no authorization in apps no authorization in apps | English |
| 939 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | quxtnlgd tqnjyzsm | GRP_0 | unable to log in to erp SID_34 unable to log i... | English |
| 940 | job Job_1315 failed in job_scheduler at: 10/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1315 failed in job_scheduler at: 10/19... | English |
| 941 | access to erp SID_1 for user rgpvdhcm mgvpabsj | access to erp SID_1 for user rgpvdhcm mgvpabsj | rgpvdhcm mgvpabsj | GRP_2 | access to erp SID_1 for user rgpvdhcm mgvpabsj... | English |
| 942 | folder access requested for HostName_768 | zugriff auf verzeichnis angefragt.\r\nfolder a... | qkmgtnla buraxcij | GRP_0 | folder access requested for HostName_768 zugri... | English |
| 943 | folder access request | \nsummary:need access to the following folder ... | vsbtygin oufhtbas | GRP_34 | folder access request \nsummary:need access t... | English |
| 944 | unlocked account | unlocked account | htsnaodb adjtmlzn | GRP_0 | unlocked account unlocked account | English |
| 945 | pricing and availability look up in dynamics c... | the attached screenshot is from ptljghyk qhtvl... | qmglkaru qiwhfkdv | GRP_40 | pricing and availability look up in dynamics c... | English |
| 946 | engineering_tool : not able to update new cust... | engineering_tool : not able to update new cust... | crjhotyk pxslorbe | GRP_0 | engineering_tool : not able to update new cust... | English |
| 947 | unable to access collaboration_platform | unable to access collaboration_platform | gakceqyb edrjthvo | GRP_0 | unable to access collaboration_platform unable... | English |
| 948 | unable to open engineering_tool | unable to open engineering_tool | crjhotyk pxslorbe | GRP_0 | unable to open engineering_tool unable to ope... | English |
| 949 | permission to create cost centers in SID_1 erp... | i no longer have access to create cost centers... | zujpycos pogmachd | GRP_2 | permission to create cost centers in SID_1 erp... | English |
| 950 | collaboration_platform issue | \nsummary:having issues with collaboration_pla... | lpoebzsc grknswyo | GRP_0 | collaboration_platform issue \nsummary:having... | English |
| 951 | static ip address | it has been requested by our temporary service... | wvngzrca sfmrzdth | GRP_4 | static ip address it has been requested by o... | English |
| 952 | collaboration_platform system not working | the collaboration_platform system is not worki... | wgqkKupL esgahtqn | GRP_16 | collaboration_platform system not working the ... | English |
| 953 | cannot get my usb wifi adapter to work on my l... | cannot get my usb wifi adapter to work on my l... | gqkedvzu czoniyra | GRP_3 | cannot get my usb wifi adapter to work on my l... | English |
| 954 | unable to access collaboration_platform | unable to access collaboration_platform | qzioyhud csehbrfy | GRP_0 | unable to access collaboration_platform unable... | English |
| 955 | collaboration_platform issue | \nsummary:i was thrown off of vpn and tried se... | nibaotpy vmxathog | GRP_0 | collaboration_platform issue \nsummary:i was ... | English |
| 956 | collaboration_platform issue | collaboration_platform issue | mknoeicg aziptqvu | GRP_0 | collaboration_platform issue collaboration_pl... | English |
| 957 | collaboration_platform down | collaboration_platform down | wsomjhce afjkuwih | GRP_0 | collaboration_platform down collaboration_pla... | English |
| 958 | skype for business is not connected to the exc... | ihuogcqd ihusvgcw phone. my skype for busine... | ihuogcqd ihusvgcw | GRP_0 | skype for business is not connected to the exc... | English |
| 959 | the company collaboration_platform is reportin... | the company collaboration_platform is reportin... | spxqmiry zpwgoqju | GRP_16 | the company collaboration_platform is reportin... | English |
| 960 | vip 1: collaboration_platform page access issue | vip 1: collaboration_platform page access issue | lqdpfamz mqitfrcv | GRP_16 | vip 1: collaboration_platform page access issu... | English |
| 961 | when running sa38 report zsdr0100, open order ... | when running the report, example would be mm #... | prgewfly ndtfvple | GRP_13 | when running sa38 report zsdr0100, open order ... | English |
| 962 | no boot : service tag : 5lkzddens1 | windows running into problem : goes to start u... | qdtywmkv aolijwnx | GRP_3 | no boot : service tag : 5lkzddens1 windows run... | English |
| 963 | HostName_1003 : volume: c:\ label:sys-HostName... | HostName_1003 : volume: c:\ label:sys-HostName... | spxqmiry zpwgoqju | GRP_12 | HostName_1003 : volume: c:\ label:sys-HostName... | English |
| 964 | i need my address added to xerox prtqx7300 | i need my address added to xerox prtqx7300 | lrhfoxen hlqsumgx | GRP_3 | i need my address added to xerox prtqx7300 i n... | English |
| 965 | personal number : locked : expense report | personal number : locked : expense report | uyhceqzr tpbdwiyv | GRP_0 | personal number : locked : expense report pe... | English |
| 966 | erp SID_37 password reset | erp SID_37 password reset | mpihysnw wrctgoan | GRP_0 | erp SID_37 password reset erp SID_37 password ... | English |
| 967 | it_ passwort | \n\nreceived from: soldfnbq.uhnbsvqd@gmail.com... | soldfnbq uhnbsvqd | GRP_0 | it_ passwort \n\nreceived from: soldfnbq.uhnbs... | German |
| 968 | skype and outlook synch issue , meeting are no... | skype and outlook synch issue , meeting are no... | ncksqfmz fzcjunai | GRP_0 | skype and outlook synch issue , meeting are no... | English |
| 969 | outlook hang | unable to open the outlook its hang at process... | oncidblt ucewizyd | GRP_19 | outlook hang unable to open the outlook its ha... | English |
| 970 | this message was sent to the company quarantin... | from: ncasrpvx fijwprtv \nsent: wednesday, oct... | ncasrpvx fijwprtv | GRP_26 | this message was sent to the company quarantin... | English |
| 971 | companyguest account for 2 days | mechmet hswddwk\ncompany:sllwdw75\ntel.\nemail... | mfeyouli ndobtzpw | GRP_0 | companyguest account for 2 days mechmet hswddw... | English |
| 972 | unable to print. driver not found. | unable to print. driver not found. | khrflgcj zxojidhe | GRP_0 | unable to print. driver not found. unable to p... | English |
| 973 | unable to open outlook | unable to open outlook | stvpxkbf gqchobaj | GRP_0 | unable to open outlook unable to open outlook | English |
| 974 | no access to ethics. see below failure message... | welcome to the company business ethics & condu... | jkuaslxe hrodszpl | GRP_23 | no access to ethics. see below failure message... | English |
| 975 | needs to change password | needs to change password | cukzsyjo lxspyctf | GRP_0 | needs to change password needs to change pass... | English |
| 976 | fails to log in to erp and engineering tool | i changed my password using the password manag... | hftanwjr lhdqcwsr | GRP_0 | fails to log in to erp and engineering tool i ... | English |
| 977 | job Job_1318 failed in job_scheduler at: 10/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1318 failed in job_scheduler at: 10/19... | English |
| 978 | unable to open netweaver | unable to open netweaver | ueqoimkc mhqyzklv | GRP_0 | unable to open netweaver unable to open netwe... | English |
| 979 | skype is not functioning | trying to use skype, is not responding, was wo... | mscgnafj bvftidka | GRP_0 | skype is not functioning trying to use skype, ... | English |
| 980 | vip 1 :user unable to login to the pc. | vip 1 :user unable to login to the pc.\r\n-adv... | jetgpdqn rpfqxzvb | GRP_27 | vip 1 :user unable to login to the pc. vip 1 :... | English |
| 981 | employment status - new non-employee ycgkinov ... | *page down to ensure that all required data fi... | lfikjasz tjbqcmvl | GRP_2 | employment status - new non-employee ycgkinov ... | English |
| 982 | business_clientæ— æ³•ç™»å…¥ | \n\nreceived from: ktghvuwr.uwtakcmj@gmail.com... | ktghvuwr uwtakcmj | GRP_0 | business_clientæ— æ³•ç™»å…¥ \n\nreceived from:... | English |
| 983 | company guest account set up | company guest account set up | vmqcyzda kgvrfwcj | GRP_0 | company guest account set up company guest ac... | English |
| 984 | in our west coast email box, we can grab an em... | not updating so that the other 3 people workin... | wlhxrogv yawtxuod | GRP_0 | in our west coast email box, we can grab an em... | English |
| 985 | query regarding unread sync failure emails | query regarding unread sync failure emails | wstxjbpv tjlncygd | GRP_0 | query regarding unread sync failure emails que... | English |
| 986 | unable to login to mii system : yrhackgt sfhxckgq | unable to login to mii system : yrhackgt sfhxc... | djlpawmc nyzwqofu | GRP_0 | unable to login to mii system : yrhackgt sfhxc... | English |
| 987 | unable to launch ethics. flash player issue. | unable to launch ethics. flash player issue. | ebikdrqw empubwxo | GRP_0 | unable to launch ethics. flash player issue. u... | English |
| 988 | unable to access e-time. | unable to access e-time. | ebikdrqw empubwxo | GRP_0 | unable to access e-time. unable to access e-t... | English |
| 989 | pls reset me the SID_39 crm production access | name:francestrhuco\nlanguage:\nbrowser:microso... | uvdqkbgi suabfdci | GRP_0 | pls reset me the SID_39 crm production access ... | English |
| 990 | cannot get thru to customer application suppor... | their number is | wlhxrogv yawtxuod | GRP_7 | cannot get thru to customer application suppor... | English |
| 991 | microsoft outlook not responding, cannot open | krthdelly sthytachnik, phone , usa location, l... | stvpxkbf gqchobaj | GRP_0 | microsoft outlook not responding, cannot open ... | English |
| 992 | called to unlock nvyjtmca xjhpznds account use... | called to unlock nvyjtmca xjhpznds account use... | shloyakw jztsxdln | GRP_0 | called to unlock nvyjtmca xjhpznds account use... | English |
| 993 | bitte scanner für we111 einstellen.drucker wu... | bitte scanner für we111 einstellen.drucker wu... | vzqomdgt jwoqbuml | GRP_24 | bitte scanner für we111 einstellen.drucker wu... | German |
| 994 | help to change the windows password using pass... | help to change the windows password using pass... | crjhotyk pxslorbe | GRP_0 | help to change the windows password using pass... | English |
| 995 | bei herrn potthryzler (benutzerkennung: potsff... | fehlermeldung: systemfehler &h91115116 \n\nwit... | txkgmwbc qohmgwrp | GRP_33 | bei herrn potthryzler (benutzerkennung: potsff... | English |
| 996 | account unlock | account unlock | usalikfj lfmpxbcn | GRP_0 | account unlock account unlock | English |
| 997 | probleme mit login in br \usalikfj lfmpxbcn | probleme mit login in br \usalikfj lfmpxbcn | usalikfj lfmpxbcn | GRP_24 | probleme mit login in br \usalikfj lfmpxbcn pr... | Portuguese |
| 998 | erp | \n\nreceived from: tdkfuobm.qrtmaxos@gmail.com... | tdkfuobm qrtmaxos | GRP_0 | erp \n\nreceived from: tdkfuobm.qrtmaxos@gmail... | English |
| 999 | unable to login to SID_1 | unable to login to SID_1 | svhuewoy dluchbfg | GRP_0 | unable to login to SID_1 unable to login to SID_1 | English |
| 1000 | winwip not working , asking to buy trial versi... | winwip not working , asking to buy trial versi... | jhwgydeb ufiatosg | GRP_0 | winwip not working , asking to buy trial versi... | English |
| 1001 | erp ksff dashbankrds - need to push to compute... | \n\nreceived from: dpuifqeo.eglwsfkn@gmail.com... | dpuifqeo eglwsfkn | GRP_41 | erp ksff dashbankrds - need to push to compute... | English |
| 1002 | need access to erp SID_1 like rpgcdbfa reuwibpt | need access to erp SID_1 like rpgcdbfa reuwibpt | svhuewoy dluchbfg | GRP_2 | need access to erp SID_1 like rpgcdbfa reuwibp... | English |
| 1003 | user needs help to login to erp SID_34. | user needs help to login to erp SID_34.\r\n-co... | sidyuncg ptvogsxa | GRP_0 | user needs help to login to erp SID_34. user n... | English |
| 1004 | need the configuration of new pc | need the configuration of new pc | xbjrphgk unbzmyhk | GRP_0 | need the configuration of new pc need the conf... | English |
| 1005 | it training - polycom | \r\n\r\nreceived from: lkfzibrx.ljnabpgx@gmail... | lkfzibrx ljnabpgx | GRP_0 | it training - polycom \r\n\r\nreceived from: ... | English |
| 1006 | can you please give me access to the SID_1 uac... | can you please give me access to the SID_1 uac... | vtzhelgs ivewqogm | GRP_0 | can you please give me access to the SID_1 uac... | English |
| 1007 | acces to SID_1 | \r\n\r\nreceived from: rgpvdhcm.mgvpabsj@gmail... | rgpvdhcm mgvpabsj | GRP_0 | acces to SID_1 \r\n\r\nreceived from: rgpvdhcm... | English |
| 1008 | my collaboration_platform and sync keeps promp... | i changed my password yesterday, ever since i ... | geylvotd msadrzkj | GRP_0 | my collaboration_platform and sync keeps promp... | English |
| 1009 | npc in erp system stuck due to employees leavi... | npc 311190814 was created by svuxizgr mkynswqd... | fgaulydz crswlkev | GRP_11 | npc in erp system stuck due to employees leavi... | English |
| 1010 | re: ticket_no1538187::cpp user ids - password ... | \n\nreceived from: wibovsru.ulmqyhsk@gmail.com... | wibovsru ulmqyhsk | GRP_0 | re: ticket_no1538187::cpp user ids - password ... | English |
| 1011 | need access to \\eagcldaten\aese\leitung\csd_e... | need access to \\eagcldaten\aese\leitung\csd_e... | mdfugwzt wbcaqkgr | GRP_34 | need access to \\eagcldaten\aese\leitung\csd_e... | English |
| 1012 | folder deletion from s: drive | \r\n\r\nreceived from: hjokrfpv.fhpaxsqc@gmail... | hjokrfpv fhpaxsqc | GRP_12 | folder deletion from s: drive \r\n\r\nreceived... | English |
| 1013 | not able to view drawings in business_client | not able to view drawings in business_client | tvirflky febluink | GRP_0 | not able to view drawings in business_client n... | English |
| 1014 | job SID_37filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_37filesys failed in job_scheduler at: ... | English |
| 1015 | job Job_736 failed in job_scheduler at: 10/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_736 failed in job_scheduler at: 10/19/... | English |
| 1016 | impact award | \n\nreceived from: lzvdyouh.imqgfadb@gmail.com... | lzvdyouh imqgfadb | GRP_0 | impact award \n\nreceived from: lzvdyouh.imqgf... | German |
| 1017 | erp access issue : reset password for SID_37 f... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | nrugzxkl lohqkvry | GRP_2 | erp access issue : reset password for SID_37 f... | English |
| 1018 | folder access : s:\globalace_holemaking\ha646 | please see below in red:\r\n\r\nviele grüße ... | cltszugw tgzbklec | GRP_34 | folder access : s:\globalace_holemaking\ha646 ... | English |
| 1019 | outlook not working | outlook not working | dwxlipbo vxmgbefs | GRP_0 | outlook not working outlook not working | English |
| 1020 | not able to access walkme plugin | \nevery time i click on the "walkme" link , i ... | lqvdoijm yntmlehu | GRP_0 | not able to access walkme plugin \nevery time ... | English |
| 1021 | german caller | german caller | pwkrlqbc zslqfmka | GRP_0 | german caller german caller | English |
| 1022 | unable to get old mails in outlook | \r\n\r\nreceived from: kirtyywpuo.dcksxjeq@gma... | kilywpuo dcksxjeq | GRP_0 | unable to get old mails in outlook \r\n\r\nrec... | English |
| 1023 | job SID_37hoti failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_37hoti failed in job_scheduler at: 10/... | English |
| 1024 | not able to open the existing hana report | not able to open the existing hana report | rcbdyslq zuspjbtw | GRP_9 | not able to open the existing hana report not ... | English |
| 1025 | login issue | login issue\r\n-verified user details.(employe... | urevbjcp krcaylpz | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 1026 | collaboration_platform | \r\n\r\nreceived from: nmgesubf.wugbalmy@gmail... | nmgesubf wugbalmy | GRP_0 | collaboration_platform \r\n\r\nreceived from: ... | English |
| 1027 | a termination for ckfobaxd wgnejyvt, 11173878,... | a termination for ckfobaxd wgnejyvt, 11173878,... | uazkjifp dhtnevcq | GRP_2 | a termination for ckfobaxd wgnejyvt, 11173878,... | English |
| 1028 | waste email from workflow system | \r\n\r\nreceived from: creojvdh.ciblyskg@gmail... | creojvdh ciblyskg | GRP_29 | waste email from workflow system \r\n\r\nrecei... | English |
| 1029 | not able to take skype meetings via head phone | laptop model : dell precision m4800 | aiprzulo lzvmgqwy | GRP_19 | not able to take skype meetings via head phone... | English |
| 1030 | belgium callsariving at agnwfwieszka kubiadfffk. | there are belgium costumers calling the polish... | kydirtgu idwzeojv | GRP_7 | belgium callsariving at agnwfwieszka kubiadfff... | English |
| 1031 | job Job_593 failed in job_scheduler at: 10/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/19/... | English |
| 1032 | HostName_106:volume consumed 85% ,out of 20gb ... | HostName_106:volume consumed 85% ,out of 20gb ... | utyeofsk rdyzpwhi | GRP_12 | HostName_106:volume consumed 85% ,out of 20gb ... | English |
| 1033 | power outage:company-na-mex-juarez-dmvpn-1811-... | what type of outage: __x___network _____c... | utyeofsk rdyzpwhi | GRP_8 | power outage:company-na-mex-juarez-dmvpn-1811-... | English |
| 1034 | lüfter defekt \industriekontrollmonitor \nipt... | lüfter defekt \industriekontrollmonitor \nipt... | niptbwdq csenjruz | GRP_24 | lüfter defekt \industriekontrollmonitor \nipt... | Waray |
| 1035 | reinstall win7 \qidgvtwa qvbutayx | reinstall win7 \qidgvtwa qvbutayx | qidgvtwa qvbutayx | GRP_24 | reinstall win7 \qidgvtwa qvbutayx reinstall wi... | Norwegian |
| 1036 | probleme mit kamera und monitor . | guten morgen dhthykts,\n\num die kamera an den... | vrfpyjwi nzhvgqiw | GRP_24 | probleme mit kamera und monitor . guten morgen... | German |
| 1037 | unable to create delivery | please provide the following:\n\nwhat order nu... | qnstifeb hybrjfex | GRP_6 | unable to create delivery please provide the f... | English |
| 1038 | probleme mit fp \rechner bleibt hängen \ksxc... | probleme mit fp \rechner bleibt hängen \ksxc... | ksxchbaf rhquvzfm | GRP_24 | probleme mit fp \rechner bleibt hängen \ksxc... | German |
| 1039 | need help in changing password in password_man... | need help in changing password in password_man... | wbilvncd idavhsxy | GRP_0 | need help in changing password in password_man... | English |
| 1040 | amssm003: windows disk space utilization alert... | amssm003: windows disk space utilization alert... | bozdftwx smylqejw | GRP_12 | amssm003: windows disk space utilization alert... | English |
| 1041 | erp SID_34 ( erp production). | \r\n\r\nreceived from: ydvmibwn.eljtsdar@gmail... | ydvmibwn eljtsdar | GRP_14 | erp SID_34 ( erp production). \r\n\r\nreceived... | English |
| 1042 | telecom_vendor_3 dongle connection issue | telecom_vendor_3 donggle connection issue\n-co... | ojgfmvep zbatowgi | GRP_19 | telecom_vendor_3 dongle connection issue telec... | English |
| 1043 | wild card search for grade is not working in s... | wild card search for grade is not working in s... | hbmwlprq ilfvyodx | GRP_20 | wild card search for grade is not working in s... | English |
| 1044 | reset passwords for soldfnbq uhnbsvqd using pa... | mein erp passwort funktioniert nicht. ich bin ... | soldfnbq uhnbsvqd | GRP_17 | reset passwords for soldfnbq uhnbsvqd using pa... | English |
| 1045 | access needed | \r\n\r\nreceived from: fwypxqcs.twsqoimy@gmail... | fwypxqcs twsqoimy | GRP_34 | access needed \r\n\r\nreceived from: fwypxqcs.... | English |
| 1046 | job Job_485 failed in job_scheduler at: 10/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_485 failed in job_scheduler at: 10/19/... | English |
| 1047 | pc an der EU_tool-station 21 in germany funkti... | pc an der EU_tool-station 21(oder bde21) in ge... | rphoiduv hfbevpir | GRP_33 | pc an der EU_tool-station 21 in germany funkti... | German |
| 1048 | verbindung zum internet server nicht möglich ... | fehlermeldung in der mail,: dieser vorgang wur... | usdhpatm icgmphjk | GRP_0 | verbindung zum internet server nicht möglich ... | German |
| 1049 | reset passwords for soldfnbq uhnbsvqd using pa... | the | soldfnbq uhnbsvqd | GRP_17 | reset passwords for soldfnbq uhnbsvqd using pa... | English |
| 1050 | erp SID_34 passowrd | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_0 | erp SID_34 passowrd \n\nreceived from: rxoyn... | English |
| 1051 | erp account entsperren | bitte erp account von fygrwuna gomcekzi entspe... | tohxswej pmnlxyrv | GRP_0 | erp account entsperren bitte erp account von f... | German |
| 1052 | delivery blocked status :blocked | same issue with inc1561759. i have found anoth... | nwlhcfpa zdlfmthq | GRP_13 | delivery blocked status :blocked same issue wi... | English |
| 1053 | reset passwords for fygrwuna gomcekzi using pa... | bitte erp kennwort zurücksetzen. | fygrwuna gomcekzi | GRP_17 | reset passwords for fygrwuna gomcekzi using pa... | English |
| 1054 | reset passwords for fygrwuna gomcekzi using pa... | the | fygrwuna gomcekzi | GRP_17 | reset passwords for fygrwuna gomcekzi using pa... | English |
| 1055 | quote required laptop bag & projector adopter ... | \r\n\r\nreceived from: kxmidsga.zokivdfa@gmail... | kxmidsga zokivdfa | GRP_19 | quote required laptop bag & projector adopter ... | English |
| 1056 | job Job_2584 failed in job_scheduler at: 10/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2584 failed in job_scheduler at: 10/19... | English |
| 1057 | verbindung zwischen drucker em98 und pc eemw81... | verbindung zwischen drucker em98 und pc eemw81... | nemzycxb xpsgkahw | GRP_0 | verbindung zwischen drucker em98 und pc eemw81... | German |
| 1058 | *deilvery block status* | \n\nreceived from: nwlhcfpa.zdlfmthq@gmail.com... | nwlhcfpa zdlfmthq | GRP_13 | *deilvery block status* \n\nreceived from: nw... | English |
| 1059 | netzteil oder netzstecker defekt - pc warenein... | bitte netzteil oder netzstecker am pc evhw8114... | ipeajlvk idmbyztf | GRP_33 | netzteil oder netzstecker defekt - pc warenein... | German |
| 1060 | account locked in erp SID_34 | account locked in erp SID_34 | fhgmxnce jbwqivhc | GRP_0 | account locked in erp SID_34 account locked i... | English |
| 1061 | in hub , for commstorage_product-company folde... | in hub , for commstorage_product-company folde... | jacgtfxo vlbeuxif | GRP_0 | in hub , for commstorage_product-company folde... | English |
| 1062 | erp issue | \r\n\r\nreceived from: ublisodp.qydfvpgw@gmail... | ublisodp qydfvpgw | GRP_29 | erp issue \r\n\r\nreceived from: ublisodp.qydf... | English |
| 1063 | job Job_1967d failed in job_scheduler at: 10/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1967d failed in job_scheduler at: 10/1... | English |
| 1064 | job Job_1967d failed in job_scheduler at: 10/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1967d failed in job_scheduler at: 10/1... | English |
| 1065 | : insert to d/n no. | please insert the delivery note no. in erp book | cthaborg cahbxlmr | GRP_18 | : insert to d/n no. please insert the delivery... | English |
| 1066 | t/o not generated automatically for dn 8058525297 | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_18 | t/o not generated automatically for dn 8058525... | English |
| 1067 | ms office 365 pro plus french has got corrupt... | ms office 365 pro plus french has got corrupt... | axcbfuqo yiagubvh | GRP_19 | ms office 365 pro plus french has got corrupt... | English |
| 1068 | unable to login to windows account | unable to login to windows account | mqxkanzt xryzfhpe | GRP_0 | unable to login to windows account unable to ... | English |
| 1069 | my mobile phone cannot be use for skype busine... | also my initial is wrong, the right one is wai... | jgautdmk fpurxzew | GRP_19 | my mobile phone cannot be use for skype busine... | English |
| 1070 | termination for lauredwwden hwffiglhkins, | \n \n\n\na termination for lauredwwden hwffi... | yrwvnsxq wqlfarny | GRP_2 | termination for lauredwwden hwffiglhkins, \n ... | English |
| 1071 | job Job_3050 failed in job_scheduler at: 10/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3050 failed in job_scheduler at: 10/18... | English |
| 1072 | job SID_37hoti failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_47 | job SID_37hoti failed in job_scheduler at: 10/... | English |
| 1073 | unable to access email | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_0 | unable to access email \n\nreceived from: rxoy... | English |
| 1074 | hello , a termination for phvwitud kvetadzo,... | from: [mailto:system@hr_tool.com] \nsent: wed... | nvawmlch ubyjolnc | GRP_2 | hello , a termination for phvwitud kvetadzo,... | English |
| 1075 | tracking# | \n\nreceived from: gkwcxzum.answkqpe@gmail.com... | gkwcxzum answkqpe | GRP_18 | tracking# \n\nreceived from: gkwcxzum.answkqpe... | English |
| 1076 | hello on my order below. i have 5 drop s... | from: pvjdtrya oevyhtdx [mailto:pvjdtrya.oevyh... | pvjdtrya oevyhtdx | GRP_13 | hello on my order below. i have 5 drop s... | English |
| 1077 | termination for brthryian lsgthhuart | termination for brthryian lsgthhuart\n\nhello ... | lfikjasz tjbqcmvl | GRP_2 | termination for brthryian lsgthhuart terminati... | English |
| 1078 | unable to sync mails on iphone 6s | unable to sync mails on iphone 6s | smhepfdn aypgzieh | GRP_0 | unable to sync mails on iphone 6s unable to sy... | English |
| 1079 | exchange with phone | \n\nreceived from: kiduhltr.ofrdvnux@gmail.com... | kiduhltr ofrdvnux | GRP_0 | exchange with phone \n\nreceived from: kiduhlt... | English |
| 1080 | unable to access erp | unable to access erp | ptgwfymc mchpwvgf | GRP_0 | unable to access erp unable to access erp | English |
| 1081 | 用å‹è½¯ä»¶é—®é¢˜ | 打开已关é—çš„é”€å”®è®¢å•æ—¶ï¼Œæ˜¾ç¤º"ä¸... | bwstnmjh yqumwrsk | GRP_48 | 用å‹è½¯ä»¶é—®é¢˜ 打开已关é—的销售订... | English |
| 1082 | job SID_43hoti failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_43hoti failed in job_scheduler at: 10/... | English |
| 1083 | termination for yhteijwf llwlfazo, 1117529567 | hello , \n\na termination for yhteijwf llwlfaz... | horeduca ogrhivnm | GRP_2 | termination for yhteijwf llwlfazo, 1117529567 ... | English |
| 1084 | ticket update on inplant_870573 | ticket update on inplant_870573 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_870573 ticket update ... | English |
| 1085 | suspected spam mail | this looks like spam to me, just wanted to mak... | iehdjwvt rndtlyhv | GRP_27 | suspected spam mail this looks like spam to me... | English |
| 1086 | tool data site - cannot search with out securi... | dwmnad macwdlmwkey - this is the error i am ge... | ndyrowef biwecrgx | GRP_25 | tool data site - cannot search with out securi... | English |
| 1087 | password reset to login hub | password reset to login hub | tovracdn tjnvswrq | GRP_0 | password reset to login hub password reset to... | English |
| 1088 | no display on the monitor | no display on the monitor | vktxjamz whbdetvp | GRP_0 | no display on the monitor no display on the mo... | English |
| 1089 | distribution list not updating | distribution list not updating \r\nremoved and... | tqpbazxm jhbkycgd | GRP_0 | distribution list not updating distribution l... | English |
| 1090 | em event: critical:SID_37 the value of datafil... | host=HostName_221.company.com \r\ntarget type=... | mnlazfsr mtqrkhnx | GRP_1 | em event: critical:SID_37 the value of datafil... | English |
| 1091 | cannot post delivery 8058506120 | cannot post delivery 9169617231. about 153 ma... | khvzugxm yqfrcjwl | GRP_13 | cannot post delivery 8058506120 cannot post de... | English |
| 1092 | supply_chain_software pw | \n\nreceived from: bmudkpie.qolrvbip@gmail.com... | bmudkpie qolrvbip | GRP_0 | supply_chain_software pw \n\nreceived from: bm... | English |
| 1093 | assign user "corsthroc34" to the ad ltabthrysa... | hello, \npls assign user "corsthroc34" to the ... | xfdkwusj gyklresa | GRP_2 | assign user "corsthroc34" to the ad ltabthrysa... | English |
| 1094 | envoyé à partir de l’outil capture d’écran | \r\n\r\nreceived from: orvsydzf.rbqtpdaz@gmail... | orvsydzf rbqtpdaz | GRP_0 | envoyé à partir de l’outil capture d’éc... | English |
| 1095 | infopath installation for lean event | ' i m not able to "add a lean event" through "... | xernsfqa uzvsnlbd | GRP_0 | infopath installation for lean event ' i m no... | English |
| 1096 | job Job_1967d failed in job_scheduler at: 10/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1967d failed in job_scheduler at: 10/1... | English |
| 1097 | unable to load outlook as ost file got corrupted | unable to load outlook as ost file got corrupt... | xziwkgeo gdiraveu | GRP_0 | unable to load outlook as ost file got corrupt... | English |
| 1098 | ticket update on inplant_870499 | ticket update on inplant_870499 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_870499 ticket update ... | English |
| 1099 | finance portal on the hub | \r\n\r\nreceived from: qfcxbpht.oiykfzlr@gmail... | qfcxbpht oiykfzlr | GRP_16 | finance portal on the hub \r\n\r\nreceived fro... | English |
| 1100 | unable to access drawings | unable to access drawings | qcfmxgid jvxanwre | GRP_0 | unable to access drawings unable to access dr... | English |
| 1101 | update on inplant_868966 | update on inplant_868966 | rbozivdq gmlhrtvp | GRP_0 | update on inplant_868966 update on inplant_868966 | English |
| 1102 | network outage: south amerirtca site is hard d... | what type of outage: __x___network _____c... | rkupnshb gsmzfojw | GRP_8 | network outage: south amerirtca site is hard d... | English |
| 1103 | i don't receive any team workflows anymore int... | von: ydigzqbu xdgjizek \ngesendet: dienstag, 1... | ydigzqbu xdgjizek | GRP_13 | i don't receive any team workflows anymore int... | English |
| 1104 | vip 2 // mobile device activation | vip 2 // mobile device activation | jcsmxrgl ibhsnket | GRP_0 | vip 2 // mobile device activation vip 2 // mob... | English |
| 1105 | oulook not updating | \nsummary:my email is not update again | gzhjstxr mdnsfipg | GRP_0 | oulook not updating \nsummary:my email is not... | English |
| 1106 | bex is not responding | hello,\r\ni have used several times in the pas... | qcfmxgid jvxanwre | GRP_9 | bex is not responding hello,\r\ni have used se... | English |
| 1107 | need access to sharepont approved by blktuiae ... | need access to collaboration_platform approved... | tigwlquj evynjiar | GRP_16 | need access to sharepont approved by blktuiae ... | English |
| 1108 | i need my password in SID_1 changed.. thanks | \n\nreceived from: azxhejvq.fyemlavd@gmail.com... | azxhejvq fyemlavd | GRP_0 | i need my password in SID_1 changed.. thanks ... | English |
| 1109 | skype | \r\n\r\nreceived from: eqxyvfpi.gbaljypo@gmail... | eqxyvfpi gbaljypo | GRP_0 | skype \r\n\r\nreceived from: eqxyvfpi.gbaljyp... | English |
| 1110 | printer issue : hp office jet printer offline. | not able to clear printer queue\r\ncleared que... | dijxefrq nbgykjpr | GRP_0 | printer issue : hp office jet printer offline.... | English |
| 1111 | uacyltoe hxgaycze call from benethrytte cthour... | uacyltoe hxgaycze call from benethrytte cthour... | gzjtweph mnslwfqv | GRP_0 | uacyltoe hxgaycze call from benethrytte cthour... | English |
| 1112 | expense report submittal : refer ticket # : in... | \r\n\r\nreceived from: ytqhfmwi.itnakpmc@gmail... | ytqhfmwi itnakpmc | GRP_0 | expense report submittal : refer ticket # : in... | English |
| 1113 | bplnyedg vobluewg placed a uacyltoe hxgaycze c... | bplnyedg vobluewg placed a uacyltoe hxgaycze c... | efbwiadp dicafxhv | GRP_0 | bplnyedg vobluewg placed a uacyltoe hxgaycze c... | English |
| 1114 | my email keeps disconnecting and i have not ha... | from: wjslkzfr jxlbzwrp \nsent: tuesday, octob... | wjslkzfr jxlbzwrp | GRP_0 | my email keeps disconnecting and i have not ha... | English |
| 1115 | no access to appreciatehub | i have no access to appreciatehub.com. it says... | asktjmqe yfwbzleo | GRP_0 | no access to appreciatehub i have no access to... | English |
| 1116 | ghost call with interaction id-1064870877 | ghost call with interaction id-1064870877 | gzjtweph mnslwfqv | GRP_0 | ghost call with interaction id-1064870877 ghos... | English |
| 1117 | blank call // call came and got disconnected | blank call // call came and got disconnected | rbozivdq gmlhrtvp | GRP_0 | blank call // call came and got disconnected b... | English |
| 1118 | id : 1064870825 | id : 2175981936\r\n\r\nperson on other side di... | efbwiadp dicafxhv | GRP_0 | id : 1064870825 id : 2175981936\r\n\r\nperson ... | English |
| 1119 | outlook not updating | outlook not updating | gzhjstxr mdnsfipg | GRP_0 | outlook not updating outlook not updating | English |
| 1120 | problem with kpm time keeping and e-time | \n\nreceived from: zywoxerf.paqxtrfk@gmail.com... | zywoxerf paqxtrfk | GRP_0 | problem with kpm time keeping and e-time \n\nr... | English |
| 1121 | unable to see engineering_tool | unable to see engineering_tool | jgxclrzp jzeantui | GRP_0 | unable to see engineering_tool unable to see ... | English |
| 1122 | need file pulled from the backup - h:\manufact... | current file is corrupt and not working\r\nser... | eirkpyfv zdipasul | GRP_12 | need file pulled from the backup - h:\manufact... | English |
| 1123 | wifi companysecure not working at sao bernardo... | iwifi companysecure not working at sao bernard... | kbnfxpsy gehxzayq | GRP_4 | wifi companysecure not working at sao bernardo... | English |
| 1124 | blank call | call came and got disconnected.\r\nprivate num... | rbozivdq gmlhrtvp | GRP_0 | blank call call came and got disconnected.\r\n... | English |
| 1125 | blank call | blank call | rbozivdq gmlhrtvp | GRP_0 | blank call blank call | English |
| 1126 | account lockout | account lockout | nfhaople pywbcozt | GRP_0 | account lockout account lockout | English |
| 1127 | not able to post delivery 8058337294 | get the attached error when trying to post del... | khvzugxm yqfrcjwl | GRP_44 | not able to post delivery 8058337294 get the a... | English |
| 1128 | skype addin disabled | name:pfzxecbo ptygkvzl\nlanguage:\nbrowser:mic... | pfzxecbo ptygkvzl | GRP_0 | skype addin disabled name:pfzxecbo ptygkvzl\nl... | English |
| 1129 | password reset | password reset | geylvotd msadrzkj | GRP_0 | password reset password reset | English |
| 1130 | uninstalling driver update // slimware technol... | uninstalling driver update // slimware technol... | csmhykge mpxbjudw | GRP_0 | uninstalling driver update // slimware technol... | English |
| 1131 | unable to open outlook | unable to open outlook | yiramjqc qtrcepsa | GRP_0 | unable to open outlook unable to open outlook | English |
| 1132 | venue 11 pro 7130 vpro 2 - detachable keybankr... | hello,\r\n\r\nplease send me a replacement det... | dxwuovgs lmuxizht | GRP_3 | venue 11 pro 7130 vpro 2 - detachable keybankr... | English |
| 1133 | lost access to mii scanning | name : tim hopes\nemail : dkxlpvnr.narxcgjh@gm... | dkxlpvnr narxcgjh | GRP_41 | lost access to mii scanning name : tim hopes\n... | English |
| 1134 | odbc-fehler - systemfehler 126: das angegebene... | ich möchte einen serienbrief erstellen, kann ... | upiyobvj lwohuizr | GRP_33 | odbc-fehler - systemfehler 126: das angegebene... | German |
| 1135 | unable to connect to internet | unable to connect to internet | wjslkzfr jxlbzwrp | GRP_0 | unable to connect to internet unable to connec... | English |
| 1136 | system freezing | system freezing | bihypqsn kbaegpcd | GRP_0 | system freezing system freezing | English |
| 1137 | erp login issue, password reset | erp login issue, password reset | wbilvncd idavhsxy | GRP_0 | erp login issue, password reset erp login issu... | English |
| 1138 | circuit outage: company-na-usa-usa-eh-2811-mpl... | what type of outage: _____network __x___c... | utyeofsk rdyzpwhi | GRP_4 | circuit outage: company-na-usa-usa-eh-2811-mpl... | English |
| 1139 | erp SID_34 account unlock | erp SID_34 account unlock | gfjqrsxz bcyhezsl | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 1140 | reset the password for rzxfgmcu xprwayoc on ot... | please unlock my password. i forgot it.\r\n | rzxfgmcu xprwayoc | GRP_0 | reset the password for rzxfgmcu xprwayoc on ot... | English |
| 1141 | outlook issue : not loading | outlook issue : not loading | vitpjxgm zxiqkrns | GRP_0 | outlook issue : not loading outlook issue : n... | English |
| 1142 | password reset from password_management_tool | password reset from password_management_tool | yiramjqc qtrcepsa | GRP_0 | password reset from password_management_tool p... | English |
| 1143 | please redirect to local it: word document 134... | das folgende word-dokument kann nicht mehr bea... | cwtrgeup nxctkmzo | GRP_49 | please redirect to local it: word document 134... | German |
| 1144 | reset passwords for wvdxnkhf jirecvta using pa... | the | wvdxnkhf jirecvta | GRP_17 | reset passwords for wvdxnkhf jirecvta using pa... | English |
| 1145 | scheduled job needs canceled | \n\nreceived from: bwfhtumx.japznrvb@gmail.com... | bwfhtumx japznrvb | GRP_5 | scheduled job needs canceled \n\nreceived from... | English |
| 1146 | fc for eweausbildung for jannek hündling | hallo,\n\nbitte für jannek hündling zugriff ... | fdyietau dvsyxwbu | GRP_12 | fc for eweausbildung for jannek hündling hall... | German |
| 1147 | engineering tool will not work | \r\n\r\nreceived from: wlsazrce.uwehsqbk@gmail... | wlsazrce uwehsqbk | GRP_25 | engineering tool will not work \r\n\r\nreceive... | English |
| 1148 | windows password reset | windows password reset | vzqomdgt jwoqbuml | GRP_0 | windows password reset windows password reset | English |
| 1149 | erp und EU_tool geht sehr langsam | EU_tool funktioniert teilweise gar nicht | efjzbtcm mdpviqbf | GRP_25 | erp und EU_tool geht sehr langsam EU_tool funk... | German |
| 1150 | erp complete system very slow | erp SID_34 system in germany is extremly slow ... | cwrikael oanmsecr | GRP_14 | erp complete system very slow erp SID_34 syste... | English |
| 1151 | erp logon | \r\n\r\nreceived from: xaertwdh.kcsagvpy@gmail... | epAYsqnX RAkuDnXG | GRP_0 | erp logon \r\n\r\nreceived from: xaertwdh.kcsa... | English |
| 1152 | windows account unlock | windows account unlock | emtwgzxh sgkrzinp | GRP_0 | windows account unlock windows account unlock | English |
| 1153 | windows account lockout | windows account lockout | mqxkanzt xryzfhpe | GRP_0 | windows account lockout windows account lockout | English |
| 1154 | reset password | reset password | vzqomdgt jwoqbuml | GRP_12 | reset password reset password | English |
| 1155 | erp reagiert extrem langsam | transaktionen in erp dauern zu lange | hbcejwsz cejsmdpf | GRP_0 | erp reagiert extrem langsam transaktionen in e... | German |
| 1156 | monitor für video messmaschine liefern \ozifl... | monitor für video messmaschine liefern \ozifl... | vrfpyjwi nzhvgqiw | GRP_24 | monitor für video messmaschine liefern \ozifl... | English |
| 1157 | probleme mit outlook \cwivnxuk izmxqfud | probleme mit outlook \cwivnxuk izmxqfud | cwivnxuk izmxqfud | GRP_24 | probleme mit outlook \cwivnxuk izmxqfud proble... | English |
| 1158 | rechner optiplex790 defekt \ ewew8323670 \xpug... | rechner optiplex790 defekt \ ewew8323670 \xpug... | xpugntjv zcaermdt | GRP_24 | rechner optiplex790 defekt \ ewew8323670 \xpug... | English |
| 1159 | engineering tool is not working... | error: you are not authorized to view this pag... | aunkpchr qsyvrmjl | GRP_25 | engineering tool is not working... error: you ... | English |
| 1160 | outlook does not start anymore | after clicking the outlook icon, the start win... | ebldwvth qzsfkyuw | GRP_0 | outlook does not start anymore after clicking ... | English |
| 1161 | res: inc1559160-problem with engineering_tool ... | \n\nreceived from: qasdhyzm.yuglsrwx@gmail.com... | qasdhyzm yuglsrwx | GRP_25 | res: inc1559160-problem with engineering_tool ... | English |
| 1162 | network outage: company-russia-ups-vpn-rtr.com... | what type of outage: ___x__network _____c... | utyeofsk rdyzpwhi | GRP_8 | network outage: company-russia-ups-vpn-rtr.com... | English |
| 1163 | EU_tool is down in plant germany | please restart the EU_tool server aerp, so we ... | qmhikdzl zatcorjd | GRP_25 | EU_tool is down in plant germany please restar... | English |
| 1164 | create business partner id - vvtathadnda1 | \n\nreceived from: rtpcnyhq.ceqmwkhi@gmail.com... | rtpcnyhq ceqmwkhi | GRP_2 | create business partner id - vvtathadnda1 \n\n... | English |
| 1165 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 1166 | unable to loin to ess portable | unable to loin to ess portable | makypvlb vslirqhy | GRP_0 | unable to loin to ess portable unable to loin... | English |
| 1167 | multiple app problems, user jesjnlyenmrest34 | \n\nreceived from: vogtfyne.isugmpcn@gmail.com... | gkzedilm tkpfumeb | GRP_25 | multiple app problems, user jesjnlyenmrest34 \... | English |
| 1168 | setup EU_tool \we_wu185 \8323738 \jionmpsf wnk... | setup EU_tool \we_wu185 \8323738 \jionmpsf wnk... | jionmpsf wnkpzcmv | GRP_24 | setup EU_tool \we_wu185 \8323738 \jionmpsf wnk... | English |
| 1169 | fc for HostName_717\sk-leitung for user mokolt... | hallo ,\n\nbitte lese- u. schreibberechtigung ... | lhmxposv lnpgjhus | GRP_12 | fc for HostName_717\sk-leitung for user mokolt... | German |
| 1170 | insert to d/n no. | please insert the delivery note no. in erp book. | cthaborg cahbxlmr | GRP_18 | insert to d/n no. please insert the delivery n... | English |
| 1171 | erp SID_34 password reset | erp SID_34 password reset | vzqomdgt jwoqbuml | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 1172 | purchase order print | dear all\n\nthis is jathyrsy from plant_69.\nw... | gkwcxzum answkqpe | GRP_29 | purchase order print dear all\n\nthis is jathy... | English |
| 1173 | network outage: company-na-usa-usa-township-dm... | what type of outage: _ x____network ____... | utyeofsk rdyzpwhi | GRP_8 | network outage: company-na-usa-usa-township-dm... | English |
| 1174 | outlook 2010 - 64 bit - prompts for password r... | we are downloading the sp2 for outlook and wil... | thrmnwjf sxzkeymq | GRP_0 | outlook 2010 - 64 bit - prompts for password r... | English |
| 1175 | bitte das iphone-6 001 freischalten für mail-... | \n\nreceived from: rtnyumbg.yzemkhbq@gmail.com... | rtnyumbg yzemkhbq | GRP_0 | bitte das iphone-6 001 freischalten für mail-... | German |
| 1176 | can you please unlock and reset password for u... | can you please unlock and reset password for u... | hbmwlprq ilfvyodx | GRP_0 | can you please unlock and reset password for u... | English |
| 1177 | user needs help to open .rar file. | user needs help to open .rar file.\r\n-connect... | ufvprezt soqlikch | GRP_0 | user needs help to open .rar file. user needs ... | English |
| 1178 | ç”µè¯æœºæ²¡æœ‰å£°éŸ³ | ç”µè¯æœºæ²¡æœ‰å£°éŸ³ | cyjlqdwm kywiuosn | GRP_30 | ç”µè¯æœºæ²¡æœ‰å£°éŸ³ ç”µè¯æœºæ²¡æœ‰å£°éŸ³ | English |
| 1179 | media server disconnect lpapr952(south_amerirt... | received below email from inin tried to ping t... | jloygrwh acvztedi | GRP_8 | media server disconnect lpapr952(south_amerirt... | English |
| 1180 | not able to access business_client | \r\n\r\nreceived from: ntuhoafg.bzwefjvk@gmail... | ntuhoafg bzwefjvk | GRP_0 | not able to access business_client \r\n\r\nrec... | English |
| 1181 | system bankrd temperature alerts in monitoring... | system bankrd inlet temp alert for HostName_1... | jloygrwh acvztedi | GRP_12 | system bankrd temperature alerts in monitoring... | English |
| 1182 | erp SID_34 password sign on is cabane please ... | name:fyzceglp vfnraqxc\nlanguage:\nbrowser:mic... | fyzceglp vfnraqxc | GRP_0 | erp SID_34 password sign on is cabane please ... | English |
| 1183 | :user pluytd54 ( erthryika plaunyud ) locked h... | name:fyzceglp vfnraqxc\nlanguage:\nbrowser:mic... | fyzceglp vfnraqxc | GRP_0 | :user pluytd54 ( erthryika plaunyud ) locked h... | English |
| 1184 | reset passwords for pxvjczdt kizsjfpq using pa... | the | pxvjczdt kizsjfpq | GRP_17 | reset passwords for pxvjczdt kizsjfpq using pa... | English |
| 1185 | unable to access emails on outlook | unable to access emails on outlook | xmunoklw bnmswalv | GRP_0 | unable to access emails on outlook unable to ... | English |
| 1186 | erp did not pull the customer part number from... | hello it-team,\r\n\r\nplease help to check the... | bswlorek yhdrlgbs | GRP_13 | erp did not pull the customer part number from... | English |
| 1187 | not able to login to collaboration_platform | not able to login to collaboration_platform | wsxhlagq rqejbwfu | GRP_0 | not able to login to collaboration_platform n... | English |
| 1188 | ticket update on ticket_no0448767 | ticket update on ticket_no0448767 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0448767 ticket updat... | English |
| 1189 | action could not be performed | henvrkuo nogrfadw is getting the following err... | mpihysnw wrctgoan | GRP_29 | action could not be performed henvrkuo nogrfad... | English |
| 1190 | i would like to be able to use the camera on m... | if this option is currently available, please ... | yswgzvrc frjzcnsu | GRP_0 | i would like to be able to use the camera on m... | English |
| 1191 | no audio on ethics page | no audio on ethics page | vyluaepi dtwfaejr | GRP_0 | no audio on ethics page no audio on ethics page | English |
| 1192 | intermittent audio issue on computer | intermittent audio issue on computer | ypetnhio ouhlpvig | GRP_0 | intermittent audio issue on computer intermit... | English |
| 1193 | outlook query | \nsummary:when logging in remotely, i am unabl... | xmunoklw bnmswalv | GRP_0 | outlook query \nsummary:when logging in remot... | English |
| 1194 | inc1559962 - ticket update | inc1559962 - ticket update | olckhmvx pcqobjnd | GRP_0 | inc1559962 - ticket update inc1559962 - ticket... | English |
| 1195 | hpqc uacyltoe hxgaycze client login error | \r\n\r\nreceived from: nuhfwplj.ojcwxser@gmail... | nuhfwplj ojcwxser | GRP_0 | hpqc uacyltoe hxgaycze client login error \r\n... | English |
| 1196 | ticket query on ticket_no1559208 | ticket query on ticket_no1559208 | efbwiadp dicafxhv | GRP_0 | ticket query on ticket_no1559208 ticket query... | English |
| 1197 | skype | \r\n\r\nreceived from: nuhfwplj.ojcwxser@gmail... | nuhfwplj ojcwxser | GRP_0 | skype \r\n\r\nreceived from: nuhfwplj.ojcwxser... | English |
| 1198 | monitor on x-ray instrument pc will not stay t... | monitor on x-ray instrument pc will not stay t... | budighfl izbxvary | GRP_3 | monitor on x-ray instrument pc will not stay t... | English |
| 1199 | sever hqap101 has a hd failure light | sever hqap101 has a hd failure light, kindly c... | spxqmiry zpwgoqju | GRP_26 | sever hqap101 has a hd failure light sever hqa... | English |
| 1200 | interaction id : 1064857564 | static sound from telephony_software phones : ... | efbwiadp dicafxhv | GRP_0 | interaction id : 1064857564 static sound from ... | English |
| 1201 | plant_269 xerox workcentre 5335 - rr18 printer | \r\n\r\nreceived from: dpuifqeo.eglwsfkn@gmail... | dpuifqeo eglwsfkn | GRP_3 | plant_269 xerox workcentre 5335 - rr18 printer... | English |
| 1202 | need installation of msoffice 2010 | need installation of msoffice 2010.\r\n\r\nuse... | jqhtkfsm xoehtbnl | GRP_3 | need installation of msoffice 2010 need instal... | English |
| 1203 | \\HostName_768\teams\rta full control access f... | \\HostName_768\teams\rta full control access f... | ntsowaem jfgslyde | GRP_34 | \\HostName_768\teams\rta full control access f... | English |
| 1204 | password reset rqeuest for SID_34 erp for fdui... | \nsummary:i need to have a user id reset for S... | idlupnzr nkxylwrc | GRP_0 | password reset rqeuest for SID_34 erp for fdui... | English |
| 1205 | unlock password | \n\nreceived from: bihfazru.bhjqvtzm@gmail.com... | bihfazru bhjqvtzm | GRP_0 | unlock password \n\nreceived from: bihfazru.bh... | English |
| 1206 | frequent lock out issue. | \r\n\r\nreceived from: ksxjcvze.ognyetrp@gmail... | ksxjcvze ognyetrp | GRP_0 | frequent lock out issue. \r\n\r\nreceived from... | English |
| 1207 | the engineering tool is not installed properly | there are two different engineering tools inst... | ypetnhio ouhlpvig | GRP_0 | the engineering tool is not installed properly... | English |
| 1208 | job Job_2668 failed in job_scheduler at: 10/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2668 failed in job_scheduler at: 10/17... | English |
| 1209 | help with programdnty nx9 | hi , \n\nwe need your help with programdnty nx... | pvimkcfw sarxkfvj | GRP_46 | help with programdnty nx9 hi , \n\nwe need you... | English |
| 1210 | crm add in will not come up | crm add in will not come up | aqyjewmf ceksapdw | GRP_0 | crm add in will not come up crm add in will no... | English |
| 1211 | analysis not working to run my quote reports. ... | when i try to open through erp business analys... | gdpxqyhj iapghvke | GRP_9 | analysis not working to run my quote reports. ... | English |
| 1212 | password reset request for erp | \n\nreceived from: irqpwgtn.dpautgeh@gmail.com... | irqpwgtn dpautgeh | GRP_0 | password reset request for erp \n\nreceived fr... | English |
| 1213 | flash player update issue | flash player update issue | pbrmgyzo hzoxdijn | GRP_0 | flash player update issue flash player update ... | English |
| 1214 | folder access rqeuest : ldgm003 i:\lean | contact :\nneed read/write access to folder ld... | gjbcengineering_tooll gidsekfo | GRP_12 | folder access rqeuest : ldgm003 i:\lean contac... | English |
| 1215 | erp prtgghj4k password reset | erp prtgghj4k password reset | zfebmujk mtdzqjue | GRP_2 | erp prtgghj4k password reset erp prtgghj4k pas... | English |
| 1216 | needs to change password | needs to change password | tqvpohwj tbkywpqz | GRP_0 | needs to change password needs to change pass... | English |
| 1217 | windows account unlock | windows account unlock | zidcxslw clyfdaki | GRP_0 | windows account unlock windows account unlock | English |
| 1218 | forward bcxfhekz bplfrnis's emails to zneyrlhg... | bcxfhekz bplfrnis (2118145) exited the company... | zneyrlhg bfiwanze | GRP_26 | forward bcxfhekz bplfrnis's emails to zneyrlhg... | English |
| 1219 | cothyshy has access to the above link. she can... | telephone:\nsummary:i have completed a nda for... | avglmrts vhqmtiua | GRP_16 | cothyshy has access to the above link. she can... | English |
| 1220 | job Job_2668 failed in job_scheduler at: 10/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_29 | job Job_2668 failed in job_scheduler at: 10/17... | English |
| 1221 | icloud account is synched with outlook. need t... | icloud account is synched with outlook. need t... | aguxobqs upgtdafh | GRP_0 | icloud account is synched with outlook. need t... | English |
| 1222 | erp SID_34 account locked out. | erp SID_34 account locked out. | jmsaopew dnuvpfci | GRP_0 | erp SID_34 account locked out. erp SID_34 acco... | English |
| 1223 | erp SID_34 password change | name:bettymcdanghtnuell\nlanguage:\nbrowser:mi... | vwaejqrh kmtvyesb | GRP_0 | erp SID_34 password change name:bettymcdanghtn... | English |
| 1224 | new employee phone number needed | \nsummary:new employee phone number needed\n | oqbstujm sutjvker | GRP_3 | new employee phone number needed \nsummary:new... | English |
| 1225 | cannot connect pvn | \r\n\r\nreceived from: aqrhwjgo.cyelqkvs@gmail... | aqrhwjgo cyelqkvs | GRP_50 | cannot connect pvn \r\n\r\nreceived from: aqrh... | English |
| 1226 | server HostName_858 automatically cancelled ba... | received the following email for the last two ... | mlckvyfq aonlxvwb | GRP_12 | server HostName_858 automatically cancelled ba... | English |
| 1227 | mobile device activation. | mobile device activation. | detboaws rvuelfci | GRP_0 | mobile device activation. mobile device activa... | English |
| 1228 | i cannot access the planner app in owa | name:giuliasana byhdderni\nlanguage:\nbrowser:... | ajnpuqym gvoncems | GRP_0 | i cannot access the planner app in owa name:gi... | English |
| 1229 | password expired // unable to change the password | password expired // unable to change the password | phvgbire ekbhqcap | GRP_0 | password expired // unable to change the passw... | English |
| 1230 | password reset through password_management_to... | \nsummary:i am having difficulty changing my p... | ferxqvsm esmwxqlf | GRP_0 | password reset through password_management_to... | English |
| 1231 | unable to access collaboration_platform | \r\n\r\nreceived from: mfizgpoy.akbvznci@gmail... | mfizgpoy akbvznci | GRP_16 | unable to access collaboration_platform \r\n\r... | English |
| 1232 | ticket update - inplant_870028 | ticket update - inplant_870028 | olckhmvx pcqobjnd | GRP_0 | ticket update - inplant_870028 ticket update -... | English |
| 1233 | branding site | \n\nreceived from: jefguyza.mkhwcnes@gmail.com... | jefguyza mkhwcnes | GRP_16 | branding site \n\nreceived from: jefguyza.mkhw... | English |
| 1234 | getting an error when trying to access the pre... | keinyujo torvxeda can not access the pre call ... | keinyujo torvxeda | GRP_0 | getting an error when trying to access the pre... | English |
| 1235 | costing issue for material 6526474 in plant_3... | \r\n\r\nreceived from: aytjedki.rucfxpla@gmail... | aytjedki rucfxpla | GRP_44 | costing issue for material 6526474 in plant_3... | English |
| 1236 | erp SID_34 locked. | erp SID_34 locked. | hfpkmiwn wcxrfani | GRP_0 | erp SID_34 locked. erp SID_34 locked. | English |
| 1237 | dedalus report on pdf blocked. | \nsummary:cannot open downloaded dedalus repor... | cqwtksbu tgxockrn | GRP_0 | dedalus report on pdf blocked. \nsummary:canno... | English |
| 1238 | push-out reports | \r\n\r\nreceived from: ctzykflo.evzbhgru@gmail... | ctzykflo evzbhgru | GRP_9 | push-out reports \r\n\r\nreceived from: ctzykf... | English |
| 1239 | urgent : local server down HostName_1326 | error : windows cannot access \\HostName_1326"... | ewsybazi otkuaxhw | GRP_12 | urgent : local server down HostName_1326 error... | English |
| 1240 | unable to open business_client // install .net... | unable to open business_client // install .net... | ewotmgpx xkalcwsz | GRP_0 | unable to open business_client // install .net... | English |
| 1241 | network drive not loading | network drive not loading | lagqkmto xqtldrcs | GRP_12 | network drive not loading network drive not lo... | English |
| 1242 | weekly sales activity reports | \n\nreceived from: mnlvhtug.imvetgoa@gmail.com... | mnlvhtug imvetgoa | GRP_0 | weekly sales activity reports \n\nreceived fro... | English |
| 1243 | skype | \r\n\r\nreceived from: btvmxdfc.yfahetsc@gmail... | btvmxdfc yfahetsc | GRP_27 | skype \r\n\r\nreceived from: btvmxdfc.yfahetsc... | English |
| 1244 | rechner für EU_tool stäbe hängt sich auf .\... | rechner für EU_tool stäbe hängt sich auf .\... | spdczoth vajtodny | GRP_24 | rechner für EU_tool stäbe hängt sich auf .\... | German |
| 1245 | reset passwords for ldmwqubi sovqeynk using pa... | forgot password for erp login | ldmwqubi sovqeynk | GRP_17 | reset passwords for ldmwqubi sovqeynk using pa... | English |
| 1246 | not able to open single sign on portal on hub | not able to open single sign on portal on hub | zqyikobt ufxamgwr | GRP_0 | not able to open single sign on portal on hub ... | English |
| 1247 | rechner für infostand defekt \probleme mit lÃ... | rechner für infostand defekt \probleme mit lÃ... | niptbwdq csenjruz | GRP_24 | rechner für infostand defekt \probleme mit lÃ... | German |
| 1248 | wir brauchen usb-stick (16gb) für 1.lehrjahr ... | hallo ,\n\nwir brauchen usb-stick (16gb) für ... | dknejifu dljvtebc | GRP_24 | wir brauchen usb-stick (16gb) für 1.lehrjahr ... | German |
| 1249 | not able to submit lean tracker in collaborati... | not able to submit lean tracker in collaborati... | eudkoiny zfwtoiun | GRP_0 | not able to submit lean tracker in collaborati... | English |
| 1250 | outlook- skype problem | \r\n\r\nreceived from: cspkeyza.bzpyfcki@gmail... | cspkeyza bzpyfcki | GRP_0 | outlook- skype problem \r\n\r\nreceived from:... | English |
| 1251 | unable to get to password_management_tool to c... | unable to get to password_management_tool to c... | lxmpfiez katjygbp | GRP_0 | unable to get to password_management_tool to c... | English |
| 1252 | vpn is suddenly not accepting credentials. | vpn is suddenly not accepting credentials. | ubqiygva zdkfxyel | GRP_0 | vpn is suddenly not accepting credentials. vpn... | English |
| 1253 | erp SID_34 account unlock | erp SID_34 account unlock | vwaejqrh kmtvyesb | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 1254 | in pm_tool_for_sd i can not upload projects to... | please see the attached jpg file that show the... | jghqolyd cydthpjv | GRP_25 | in pm_tool_for_sd i can not upload projects to... | English |
| 1255 | account locked. | account locked. | ewvibrfg atlurzdn | GRP_0 | account locked. account locked. | English |
| 1256 | job Job_3028 failed in job_scheduler at: 10/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_3028 failed in job_scheduler at: 10/17... | English |
| 1257 | bobj webi publications services are not running. | all the bobj webi publications have failed ove... | froajhdb ijetmkuc | GRP_14 | bobj webi publications services are not runnin... | English |
| 1258 | pending pr status & workflow details of approver | \n\nreceived from: ilbkhgxd.hirsqytd@gmail.com... | ilbkhgxd hirsqytd | GRP_29 | pending pr status & workflow details of approv... | English |
| 1259 | job Job_1142 failed in job_scheduler at: 10/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1142 failed in job_scheduler at: 10/17... | English |
| 1260 | re: ticket_no1558511 -- comments added | \n\nreceived from: stdiondwd.rawdwu@company.co... | kmnsvzuq euyvihzc | GRP_0 | re: ticket_no1558511 -- comments added \n\nrec... | English |
| 1261 | HostName_1013 stibo server physical drive and ... | HostName_1013 stibo server physical drive and ... | rkupnshb gsmzfojw | GRP_8 | HostName_1013 stibo server physical drive and ... | English |
| 1262 | not able to open drtawings in pdf | not able to open drtawings in pdf | uxpytsdk kyamilds | GRP_0 | not able to open drtawings in pdf not able to ... | English |
| 1263 | bobj - not working | \r\n\r\nreceived from: ctzykflo.evzbhgru@gmail... | ctzykflo evzbhgru | GRP_0 | bobj - not working \r\n\r\nreceived from: ctzy... | English |
| 1264 | volume: c:\ label:sys-amssm003 94ef9088 on ser... | volume: c:\ label:sys-amssm003 94ef9088 on ser... | jloygrwh acvztedi | GRP_12 | volume: c:\ label:sys-amssm003 94ef9088 on ser... | English |
| 1265 | job Job_3181 failed in job_scheduler at: 10/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3181 failed in job_scheduler at: 10/17... | English |
| 1266 | loaner laptop germany location required | \n\nreceived from: ubiqcrvy.mxjcnqfs@gmail.com... | ubiqcrvy mxjcnqfs | GRP_28 | loaner laptop germany location required \n\nr... | English |
| 1267 | not able to see sny information spaces n bobj ... | not able to see sny information spaces n bobj ... | xagyhbio jvrdnpkh | GRP_14 | not able to see sny information spaces n bobj ... | English |
| 1268 | reset the password for mdvlkbac uhefoqtg on er... | please unlock the account ( hanx123 ) and rese... | mdvlkbac uhefoqtg | GRP_0 | reset the password for mdvlkbac uhefoqtg on er... | English |
| 1269 | set up hand phone for email | \r\n\r\nreceived from: ynsqjehx.kqgrsawl@gmail... | ynsqjehx kqgrsawl | GRP_0 | set up hand phone for email \r\n\r\nreceived f... | English |
| 1270 | im not able to login to SID_32 system.plese lo... | im not able to login to SID_32 system.plese lo... | pxsghrjd wiehqmka | GRP_2 | im not able to login to SID_32 system.plese lo... | English |
| 1271 | fe10 å¤å°å‡ºæ¥çº¸å¼ æ–‡å—䏿¸…æ™° | fe10 å¤å°å‡ºæ¥çº¸å¼ æ–‡å—䏿¸…æ™° | omatlyrd bvraipdt | GRP_30 | fe10 å¤å°å‡ºæ¥çº¸å¼ æ–‡å—䏿¸…æ™° fe10 å¤... | English |
| 1272 | probleme mit benutzer erneut nur temporär! \m... | probleme mit benutzer erneut nur temporär! \m... | xwirzvda okhyipgr | GRP_24 | probleme mit benutzer erneut nur temporär! \m... | German |
| 1273 | anmeldefehler lync \qidgvtwa qvbutayx | anmeldefehler lync \qidgvtwa qvbutayx | qidgvtwa qvbutayx | GRP_24 | anmeldefehler lync \qidgvtwa qvbutayx anmeldef... | German |
| 1274 | dvi schnittstelle ohne funktion. | dvi schnittstelle ohne funktion. vermutlich gr... | iqwymodv gbarydmw | GRP_42 | dvi schnittstelle ohne funktion. dvi schnittst... | German |
| 1275 | EU_tool funktioniert nicht | fehlermeldung: systemfehler &h91115116 (). un... | cieagtub vwyzjlqm | GRP_25 | EU_tool funktioniert nicht fehlermeldung: sys... | German |
| 1276 | my engineering tool is not taking new password... | name:syhunil krishnyhda\nlanguage:\nbrowser:mi... | mpvasqwy rotkyeja | GRP_0 | my engineering tool is not taking new password... | English |
| 1277 | bob j | hello,\r\n\r\nbob-j geht wieder mal nicht.\r\n... | gmneclxj czqthmrs | GRP_0 | bob j hello,\r\n\r\nbob-j geht wieder mal nich... | German |
| 1278 | unable to create delivery-35934304/item 70 | please provide the following:\r\n\r\nwhat orde... | hrqvkemg dmcxbrqj | GRP_6 | unable to create delivery-35934304/item 70 ple... | English |
| 1279 | æ›´æ›å¯†ç¢¼å¾Œ, company connectå¯ç™»å…¥,但ç... | æ›´æ›å¯†ç¢¼å¾Œ, company connectå¯ç™»å…¥,但ç... | zhpwcdea cboefuis | GRP_0 | æ›´æ›å¯†ç¢¼å¾Œ, company connectå¯ç™»å…¥,但ç... | English |
| 1280 | job Job_1332 failed in job_scheduler at: 10/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1332 failed in job_scheduler at: 10/17... | English |
| 1281 | item on sales order not pulling through to pic... | \r\n\r\nreceived from: htnvbwxs.gwfrzuex@gmail... | htnvbwxs gwfrzuex | GRP_13 | item on sales order not pulling through to pic... | English |
| 1282 | r126 pc def. evtl. netzgerät | r126 pc def. evtl. netzgerät | fasirxzo xlvnhptm | GRP_33 | r126 pc def. evtl. netzgerät r126 pc def. ev... | German |
| 1283 | keine datenübertragung erp datenbank zu tinte... | bitte sofort lokalen it support smpijawb eawkp... | cwrikael oanmsecr | GRP_42 | keine datenübertragung erp datenbank zu tinte... | German |
| 1284 | EU_tool performance is very low again | as in the last weeks, the EU_tool performance ... | pmweoxyq zrkjnydi | GRP_25 | EU_tool performance is very low again as in th... | English |
| 1285 | not able to submit lean tracker | not able to submit lean tracker | ilbkhgxd hirsqytd | GRP_0 | not able to submit lean tracker not able to su... | English |
| 1286 | EU_tool und chargenverwaltung geht nicht. | EU_tool und chargenverwaltung geht nicht. | ctixyzku jitrahgx | GRP_25 | EU_tool und chargenverwaltung geht nicht. EU_t... | German |
| 1287 | file scanning problem in richoscan-wy14 | from: yotyhga narthdyhy \nsent: monday, octobe... | vwhkldyp efblthqc | GRP_12 | file scanning problem in richoscan-wy14 from... | English |
| 1288 | EU_tool ausfall in germany | keine rückmeldungen und zuteillisten möglich | vumbyikw kqsiougd | GRP_25 | EU_tool ausfall in germany keine rückmeldunge... | German |
| 1289 | serverprobleme qm-soft nicht anwendbar | serverprobleme qm-soft nicht anwendbar | qkedpfyj qechgaty | GRP_25 | serverprobleme qm-soft nicht anwendbar serverp... | German |
| 1290 | battery not charging when the power adapter is... | battery not charging when the power adapoter i... | mcphgvnb bdegqtyj | GRP_19 | battery not charging when the power adapter is... | English |
| 1291 | computer will not turn on. | the computer 5lthyqzns1 service code 127619903... | xbhqcayd smkbuphw | GRP_19 | computer will not turn on. the computer 5lthyq... | English |
| 1292 | reset passwords for cubdsrml znewqgop using pa... | the | cubdsrml znewqgop | GRP_17 | reset passwords for cubdsrml znewqgop using pa... | English |
| 1293 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | nmujidyk suylrqbi | GRP_0 | error login on to the SID_34 system. error log... | English |
| 1294 | printer offline (see attachment) | printer offline (see attachment) | ryaudfxm shjdaolm | GRP_42 | printer offline (see attachment) printer offli... | English |
| 1295 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 1296 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 1297 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 1298 | login issue erp SID_34 | login issue erp SID_34\r\n-user getting "logon... | fqhlvcxn zdfymgjp | GRP_0 | login issue erp SID_34 login issue erp SID_34\... | English |
| 1299 | dn 9169508476,t/o 642392 | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_6 | dn 9169508476,t/o 642392 \r\n\r\nreceived from... | English |
| 1300 | cannot review stock at mdw04 // mm 6720004 | \r\n\r\nreceived from: aqrhwjgo.cyelqkvs@gmail... | aqrhwjgo cyelqkvs | GRP_6 | cannot review stock at mdw04 // mm 6720004 \r... | English |
| 1301 | cannot review stock at mdw04 // mm 6720004 | \r\n\r\nreceived from: aqrhwjgo.cyelqkvs@gmail... | aqrhwjgo cyelqkvs | GRP_0 | cannot review stock at mdw04 // mm 6720004 \r... | English |
| 1302 | access to network drive and printer | \n\nreceived from: sxnzacoj.lwvqgfby@gmail.com... | sxnzacoj lwvqgfby | GRP_12 | access to network drive and printer \n\nreceiv... | English |
| 1303 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 1304 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 1305 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 1306 | 转å‘: recall plant_247-101516-02 ref 650007... | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_18 | 转å‘: recall plant_247-101516-02 ref 650007... | English |
| 1307 | job Job_3050 failed in job_scheduler at: 10/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3050 failed in job_scheduler at: 10/16... | English |
| 1308 | ned on to vpn, but can not access hana or erp. | name:pfzxecbo ptygkvzl\nlanguage:\nbrowser:mic... | pfzxecbo ptygkvzl | GRP_3 | ned on to vpn, but can not access hana or erp.... | English |
| 1309 | outlook not launching. | outlook not launching.\n-contact : \n-connecte... | dslamtcb ezbmonjr | GRP_0 | outlook not launching. outlook not launching.\... | English |
| 1310 | erp been locked, please help to un-lock, and t... | please help to unlock erp, and tell me the new... | cjdkhuxz bwmldgor | GRP_0 | erp been locked, please help to un-lock, and t... | English |
| 1311 | job Job_2114 failed in job_scheduler at: 10/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_2114 failed in job_scheduler at: 10/16... | English |
| 1312 | bobj | \r\n\r\nreceived from: vxzahrlc.frtkpehy@gmail... | vxzahrlc frtkpehy | GRP_20 | bobj \r\n\r\nreceived from: vxzahrlc.frtkpehy@... | English |
| 1313 | account unlock | ic\n welcome, our next available agent will be... | jqxtbspr mpfdivlh | GRP_0 | account unlock ic\n welcome, our next availabl... | English |
| 1314 | need to change password and sync new password ... | need to change password and sync new password ... | vyluaepi dtwfaejr | GRP_0 | need to change password and sync new password ... | English |
| 1315 | unable to sign in to skype | unable to sign in to skype | vyluaepi dtwfaejr | GRP_0 | unable to sign in to skype unable to sign in t... | English |
| 1316 | password reset for ess user nothrdaj12 | password reset for ess user nothrdaj12 | kihwsrdu ucnjwtxo | GRP_0 | password reset for ess user nothrdaj12 passwor... | English |
| 1317 | circuit outage:company-na-usa-usa-plant-bld1-q... | circuit outage:company-na -usa-usa-plant-bld1-... | bozdftwx smylqejw | GRP_8 | circuit outage:company-na-usa-usa-plant-bld1-q... | English |
| 1318 | job Job_3343 failed in job_scheduler at: 10/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3343 failed in job_scheduler at: 10/16... | English |
| 1319 | application "plm conversion server" on node "H... | warning: alwaysupservice.exe process count | jloygrwh acvztedi | GRP_14 | application "plm conversion server" on node "H... | English |
| 1320 | job Job_1140 failed in job_scheduler at: 10/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1140 failed in job_scheduler at: 10/16... | English |
| 1321 | job Job_3343 failed in job_scheduler at: 10/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3343 failed in job_scheduler at: 10/16... | English |
| 1322 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 1323 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | English |
| 1324 | job Job_480 failed in job_scheduler at: 10/16/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_480 failed in job_scheduler at: 10/16/... | English |
| 1325 | job snp_heu_6_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job snp_heu_6_regen failed in job_scheduler at... | English |
| 1326 | job Job_1653 failed in job_scheduler at: 10/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1653 failed in job_scheduler at: 10/16... | English |
| 1327 | job snp_heu_5_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job snp_heu_5_regen failed in job_scheduler at... | English |
| 1328 | job pp_EU_tool_netch_ap2 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap2 failed in job_schedul... | English |
| 1329 | job Job_3050 failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3050 failed in job_scheduler at: 10/15... | English |
| 1330 | job Job_3050 failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3050 failed in job_scheduler at: 10/15... | English |
| 1331 | circuit outage:india :company-ap-ind-carrier-8... | what type of outage: _____network xcircui... | utyeofsk rdyzpwhi | GRP_8 | circuit outage:india :company-ap-ind-carrier-8... | English |
| 1332 | planned power outage :matlxjgi elrndiuy - (com... | what type of outage: __x___network _____c... | jloygrwh acvztedi | GRP_8 | planned power outage :matlxjgi elrndiuy - (com... | English |
| 1333 | job Job_737 failed in job_scheduler at: 10/15/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_737 failed in job_scheduler at: 10/15/... | English |
| 1334 | sound not working , suspecting email threat | from: thaybd mhasttdd \nsent: saturday, octobe... | esaqztby mhnbqiyc | GRP_0 | sound not working , suspecting email threat fr... | English |
| 1335 | inquiry on erp SID_34 maintenance | inquiry on erp SID_34 maintenance | rzckwufx vgysnlab | GRP_0 | inquiry on erp SID_34 maintenance inquiry on... | English |
| 1336 | apac, company: multiple switches went down at ... | company-ap-chn-apac-company-fpsf-2960s-access-... | mnlazfsr mtqrkhnx | GRP_8 | apac, company: multiple switches went down at ... | English |
| 1337 | job bcv117_SID_37 failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_1 | job bcv117_SID_37 failed in job_scheduler at: ... | English |
| 1338 | job SID_38hoti failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_38hoti failed in job_scheduler at: 10/... | English |
| 1339 | job SID_55hoti failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_55hoti failed in job_scheduler at: 10/... | English |
| 1340 | job Job_563 failed in job_scheduler at: 10/15/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_563 failed in job_scheduler at: 10/15/... | English |
| 1341 | job Job_480 failed in job_scheduler at: 10/15/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_480 failed in job_scheduler at: 10/15/... | English |
| 1342 | job bwhrattr failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 10/15... | English |
| 1343 | job Job_1320 failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1320 failed in job_scheduler at: 10/15... | English |
| 1344 | pc an r241 in halle c nähe büro nesner fähr... | einlasten bei it-germany, da hierfür bereits ... | dtrvxiuq bwuqdtfo | GRP_33 | pc an r241 in halle c nähe büro nesner fähr... | German |
| 1345 | laptop model latitude 7350 speakers are not w... | name:ilypdtno mkdfetuq\nlanguage:\nbrowser:mic... | ilypdtno mkdfetuq | GRP_19 | laptop model latitude 7350 speakers are not w... | English |
| 1346 | jobs are getting fail due to dbif_rsql_sql_err... | jobs are getting fail due to dbif_rsql_sql_err... | xagyhbio jvrdnpkh | GRP_1 | jobs are getting fail due to dbif_rsql_sql_err... | English |
| 1347 | network outage: vogelfontein, south africa ,sa... | what type of outage: ___x__network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: vogelfontein, south africa ,sa... | English |
| 1348 | job bwsdslspln failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwsdslspln failed in job_scheduler at: 10/... | English |
| 1349 | job Job_1338 failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 10/15... | English |
| 1350 | job Job_1373 failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1373 failed in job_scheduler at: 10/15... | English |
| 1351 | job Job_1382 failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1382 failed in job_scheduler at: 10/15... | English |
| 1352 | server lnbdm839 (active directory) located in... | server lnbdm839 (active directory) located in... | dkmcfreg anwmfvlg | GRP_8 | server lnbdm839 (active directory) located in... | English |
| 1353 | job bk_hana_SID_62_erp_dly_dp failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_62_erp_dly_dp failed in job_sc... | English |
| 1354 | erp SID_34 account locked | erp SID_34 account locked | iczltbdf cmvjhyxl | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 1355 | m drive access request | \r\n\r\nreceived from: ajlbguzn.fxrwivyg@gmail... | ajlbguzn fxrwivyg | GRP_12 | m drive access request \r\n\r\nreceived from: ... | English |
| 1356 | job SID_56filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_56filesys failed in job_scheduler at: ... | English |
| 1357 | job Job_1653 failed in job_scheduler at: 10/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1653 failed in job_scheduler at: 10/15... | English |
| 1358 | pass word reset | \n\nreceived from: ujzhflpn.oibnxrvq@gmail.com... | ujzhflpn oibnxrvq | GRP_0 | pass word reset \n\nreceived from: ujzhflpn.o... | English |
| 1359 | network outage: engineering_toolkuznetsk wareh... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: engineering_toolkuznetsk wareh... | English |
| 1360 | job SID_56filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_56filesys failed in job_scheduler at: ... | English |
| 1361 | vogelfontein, south africa , sa:company-eu-zaf... | vogelfontein, south africa , sa:company-eu-zaf... | oldrctiu bxurpsyi | GRP_8 | vogelfontein, south africa , sa:company-eu-zaf... | English |
| 1362 | password reset request | password reset request | svnptdwu zopxaqib | GRP_0 | password reset request password reset request | English |
| 1363 | unable to sync mails or calendars on mobile de... | unable to sync mails or calendars on mobile de... | jyzkbgpm vxmjcbdw | GRP_0 | unable to sync mails or calendars on mobile de... | English |
| 1364 | ticket update on inplant_869636 | ticket update on inplant_869636 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_869636 ticket update ... | English |
| 1365 | unable to connect to network printer | unable to connect to network printer\r\n\r\nti... | fumkcsji sarmtlhy | GRP_0 | unable to connect to network printer unable to... | English |
| 1366 | job Job_562 failed in job_scheduler at: 10/14/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_562 failed in job_scheduler at: 10/14/... | English |
| 1367 | password not update | \r\n\r\nreceived from: cuzhydjl.fugwxdqh@gmail... | cuzhydjl fugwxdqh | GRP_0 | password not update \r\n\r\nreceived from: cu... | English |
| 1368 | network printer not working | \r\n\r\nreceived from: umzcxfah.aoshpjiu@gmail... | umzcxfah aoshpjiu | GRP_0 | network printer not working \r\n\r\nreceived f... | English |
| 1369 | ticket update on inplant_869625 | ticket update on inplant_869625 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_869625 ticket update ... | English |
| 1370 | folder deleted in HostName_768 | folder deleted in HostName_768\n\nfolder needs... | pyrtfdxu nxfkqmoy | GRP_5 | folder deleted in HostName_768 folder deleted ... | English |
| 1371 | unable to log in to erp netweaver | unable to log in to erp netweaver | lzqbyner jyncfahz | GRP_0 | unable to log in to erp netweaver unable to l... | English |
| 1372 | windows password reset | windows password reset | mxifcasu cxsembup | GRP_0 | windows password reset windows password reset | English |
| 1373 | ess password reset | ess password reset | qdezvfts raikxeon | GRP_0 | ess password reset ess password reset | English |
| 1374 | request: unlock user account (sekarf4ts) | \n\nreceived from: sthyuraj.sektyhar@company.c... | sxhqfaoe evobwgiy | GRP_0 | request: unlock user account (sekarf4ts) \n\n... | English |
| 1375 | windows account lockout | windows account lockout | dmtcvxow xkjriven | GRP_0 | windows account lockout windows account lockout | English |
| 1376 | company center accounts added- help with a del... | please add to my company center accounts 81543... | dypabsjm nuzvhjik | GRP_21 | company center accounts added- help with a del... | English |
| 1377 | job snp_heu_6_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job snp_heu_6_regen failed in job_scheduler at... | English |
| 1378 | cannot create a delivery. please fix this in apo | \n\nreceived from: hybiaxlk.lawptzir@gmail.com... | hybiaxlk lawptzir | GRP_6 | cannot create a delivery. please fix this in a... | English |
| 1379 | job snp_heu_5_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job snp_heu_5_regen failed in job_scheduler at... | English |
| 1380 | create telephony_software id for the gso new h... | create telephony_software id for the gso new h... | sewilrxm cbikymvf | GRP_0 | create telephony_software id for the gso new h... | English |
| 1381 | unable to save exe file | \r\n\r\nreceived from: rlphwiqn.zagvbkro@gmail... | edqylkio ykomciav | GRP_3 | unable to save exe file \r\n\r\nreceived from:... | English |
| 1382 | vip 2: user unable to join skype meeting from ... | vip 2: user unable to join skype meeting from ... | mfdaluin gxtkyzeb | GRP_0 | vip 2: user unable to join skype meeting from ... | English |
| 1383 | analysis for office (aao) tool | install the analysis for office (aao) tool o... | hkfipags sdilxrfk | GRP_19 | analysis for office (aao) tool install the a... | English |
| 1384 | error: no sto possible with these combinations | error: no sto possible with these combinations... | koqntham sqiuctfl | GRP_29 | error: no sto possible with these combinations... | English |
| 1385 | system hangs and slow | help to format and reinstall the os on the lap... | aqourvgz mkehgcdu | GRP_19 | system hangs and slow help to format and reins... | English |
| 1386 | java error | help to update the java ver.on the internet ex... | ejmdqfbl xuqkwdfa | GRP_19 | java error help to update the java ver.on the ... | English |
| 1387 | access issue | unable to install the software asking for admi... | ydgasebx ceuyrjhs | GRP_19 | access issue unable to install the software as... | English |
| 1388 | access denied on the collaboration_platform fi... | link where user needs access \r\n\r\n | wqxzleky uwjchqor | GRP_16 | access denied on the collaboration_platform fi... | English |
| 1389 | melisdfysa is not receiving emails from k-rgrtrs | melisdfysa is not included on the k-rgrtrs ema... | owfecbnx gfloariu | GRP_2 | melisdfysa is not receiving emails from k-rgr... | English |
| 1390 | phone issue | phone issue | gzjtweph mnslwfqv | GRP_0 | phone issue phone issue | English |
| 1391 | generirtc information | generirtc information | rbozivdq gmlhrtvp | GRP_0 | generirtc information generirtc information | Icelandic |
| 1392 | account lockout | account lockout | nrmjhuox ktuyqewp | GRP_0 | account lockout account lockout | English |
| 1393 | when i click on the download to pdf i don't ge... | when i click on the download to pdf i don't ge... | ijplstng juybetlo | GRP_0 | when i click on the download to pdf i don't ge... | English |
| 1394 | blank call | blank call | olckhmvx pcqobjnd | GRP_0 | blank call blank call | English |
| 1395 | unable to connect to vpn | unable to connect to vpn | ijplstng juybetlo | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 1396 | outlook issue | outlook issue // unable to open new email and ... | vfsjoquc razepdqb | GRP_0 | outlook issue outlook issue // unable to open ... | English |
| 1397 | inc1559041 - ticket update | inc1559041 - ticket update | olckhmvx pcqobjnd | GRP_0 | inc1559041 - ticket update inc1559041 - ticket... | English |
| 1398 | lost connection to \\hqn029 which is a persona... | i lost connection to \\hqn029 which is a perso... | zhwktnia dfhormwk | GRP_0 | lost connection to \\hqn029 which is a persona... | English |
| 1399 | i cant see my archived emails in outlook. i a... | outlook | koiapqbg teyldpkw | GRP_0 | i cant see my archived emails in outlook. i a... | English |
| 1400 | erp printer rerouting | name:uicjxvng jcoshmbf\nlanguage:\nbrowser:mic... | uicjxvng jcoshmbf | GRP_5 | erp printer rerouting name:uicjxvng jcoshmbf\n... | English |
| 1401 | interface: fastethernet0/48 cisco aircap 3702 ... | interface: fastethernet0/48 cisco aircap 3702... | jyoqwxhz clhxsoqy | GRP_8 | interface: fastethernet0/48 cisco aircap 3702 ... | English |
| 1402 | unable to open SID_1 and password issue in SID_21 | unable to open SID_1 and password issue in SID_21 | rtpcnyhq ceqmwkhi | GRP_0 | unable to open SID_1 and password issue in SID... | English |
| 1403 | bobj | \n\nreceived from: yhtdon.zdyhazula@company.co... | ijplstng juybetlo | GRP_9 | bobj \n\nreceived from: yhtdon.zdyhazula@compa... | English |
| 1404 | erp password locked out after updating passwor... | everything else works. just erp SID_34 is loc... | fjhqiwau gvkiuanl | GRP_0 | erp password locked out after updating passwor... | English |
| 1405 | unable to login to hub to check pay statements | unable to login to hub to check pay statements | wrdmxloh dshplynj | GRP_0 | unable to login to hub to check pay statements... | English |
| 1406 | HostName_106:windows disk space utilization al... | HostName_106:windows disk space utilization al... | utyeofsk rdyzpwhi | GRP_12 | HostName_106:windows disk space utilization al... | English |
| 1407 | problem with erp sales info | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_9 | problem with erp sales info \n\nreceived from:... | English |
| 1408 | unable to create skype meetings onbehalf of to... | unable to create skype meetings on behalf of t... | ztnpeshl vmdyglqn | GRP_26 | unable to create skype meetings onbehalf of to... | English |
| 1409 | interface1/0/40 is down on switch company-eu-d... | interface1/0/40 is down on switch company-eu-d... | bozdftwx smylqejw | GRP_8 | interface1/0/40 is down on switch company-eu-d... | English |
| 1410 | issues viewing drawings. | issues viewing drawings. please see the attac... | dctvfjrn oypnxftq | GRP_0 | issues viewing drawings. issues viewing drawin... | English |
| 1411 | a kündigung for dxnzkcuh eqdgoxap, 11161751, ... | hello , \r\n\r\na kündigung for dxnzkcuh eqdg... | ucawbivs ountxzir | GRP_2 | a kündigung for dxnzkcuh eqdgoxap, 11161751, ... | English |
| 1412 | unable to see all the tabs under ess | unable to see all the tabs under ess | uiotbkhs grymzxiq | GRP_0 | unable to see all the tabs under ess unable to... | English |
| 1413 | let's talk video is not playing. | let's talk video is not playing. | ghuwlrqk tzgbolhk | GRP_0 | let's talk video is not playing. let's talk vi... | English |
| 1414 | i cannot access ethics portal | i have recently switched account from company.... | ajnpuqym gvoncems | GRP_23 | i cannot access ethics portal i have recently ... | English |
| 1415 | issue with microsoft office - key entry. | \r\n\r\nreceived from: hcyemunl.lnecsgpd@gmail... | hcyemunl lnecsgpd | GRP_0 | issue with microsoft office - key entry. \r\n\... | English |
| 1416 | ticket update for-ticket_no0448195 | user called to inform that she was kicked out ... | gzjtweph mnslwfqv | GRP_0 | ticket update for-ticket_no0448195 user called... | English |
| 1417 | engineering tool will not open | mathrv macyhtkey, - my engineering tool client... | ndyrowef biwecrgx | GRP_0 | engineering tool will not open mathrv macyhtke... | English |
| 1418 | need access to vpn | need access to vpn computer name-lcvl7406035 | txjwyami fhlgpsim | GRP_34 | need access to vpn need access to vpn compute... | English |
| 1419 | job Job_1653 failed in job_scheduler at: 10/14... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1653 failed in job_scheduler at: 10/14... | English |
| 1420 | error message trying to log into purchasing to... | error message trying to log into purchasing to... | mohryldw meutqjzy | GRP_0 | error message trying to log into purchasing to... | English |
| 1421 | password reset request. | password reset request. | htwsufnv zaguhmki | GRP_0 | password reset request. password reset request. | English |
| 1422 | blocked out from expense report | blocked out from expense report | ikgrtwhz tmqdiwge | GRP_0 | blocked out from expense report blocked out fr... | English |
| 1423 | some confidential document was shared on the h... | some confidential document was shared on the h... | azxhejvq fyemlavd | GRP_16 | some confidential document was shared on the h... | English |
| 1424 | request you to reset my erp password | \r\n\r\nreceived from: dshferby.houtnzdi@gmail... | dshferby houtnzdi | GRP_0 | request you to reset my erp password \r\n\r\nr... | English |
| 1425 | usa backup exec server rgtsm005 has a filed ra... | usa backup exec server rgtsm005 has a filed ra... | zbhfrsto vhgtoxib | GRP_12 | usa backup exec server rgtsm005 has a filed ra... | English |
| 1426 | unable to open outlook and mobile device activ... | unable to open outlook and mobile device activ... | vzrbocfl wxtpoyez | GRP_0 | unable to open outlook and mobile device activ... | English |
| 1427 | please reset password in SID_34 for user id... | please reset password in SID_34 for user id... | ikerxqwz prkyuitl | GRP_0 | please reset password in SID_34 for user id... | English |
| 1428 | user id & password fail | \n\nreceived from: yxliakph.soucfnqe@gmail.com... | yxliakph soucfnqe | GRP_0 | user id & password fail \n\nreceived from: yxl... | English |
| 1429 | telefon defekt | telefon defekt | sxabotdw xlozwcyk | GRP_33 | telefon defekt telefon defekt | English |
| 1430 | invoicing error | invoicing error | yhmwxsqj ugnthxky | GRP_13 | invoicing error invoicing error | English |
| 1431 | account locked in ad | account locked in ad | gwmspqeo vwfetaqg | GRP_0 | account locked in ad account locked in ad | English |
| 1432 | skype account login problem | name:ilypdtno mkdfetuq\nlanguage:\nbrowser:mic... | ilypdtno mkdfetuq | GRP_0 | skype account login problem name:ilypdtno mkdf... | English |
| 1433 | the plm services is reporting a : down status ... | the plm services is reporting a : down status ... | jloygrwh acvztedi | GRP_8 | the plm services is reporting a : down status ... | English |
| 1434 | monitor tauschen \dhoalycb yopvwrjq | monitor tauschen \dhoalycb yopvwrjq | dhoalycb yopvwrjq | GRP_24 | monitor tauschen \dhoalycb yopvwrjq monitor ta... | German |
| 1435 | password is not getting synchronized. | password is not getting synchronized. | bgohnwer ybinfojr | GRP_0 | password is not getting synchronized. password... | English |
| 1436 | unable login ethics | \r\n\r\nreceived from: igdnsjhz.awnftgev@gmail... | igdnsjhz awnftgev | GRP_23 | unable login ethics \r\n\r\nreceived from: igd... | English |
| 1437 | circuit outage:company-na-usa-usa-mpls-2811-rt... | what type of outage: _____network ____x_c... | bozdftwx smylqejw | GRP_8 | circuit outage:company-na-usa-usa-mpls-2811-rt... | English |
| 1438 | install office2010 \ ewel8323894 \qidgvtwa qvb... | install office2010 \ ewel8323894 \qidgvtwa qvb... | qidgvtwa qvbutayx | GRP_24 | install office2010 \ ewel8323894 \qidgvtwa qvb... | Waray |
| 1439 | quote save / material creation process for con... | quote save in erp SID_34 broken for configured... | iavozegx jpcudyfi | GRP_20 | quote save / material creation process for con... | English |
| 1440 | setup new ws \batuhan gueduel | setup new ws \batuhan gueduel | kglnimxw nhdqaupz | GRP_24 | setup new ws \batuhan gueduel setup new ws \ba... | Tagalog |
| 1441 | setup new ws \szockfpj izohlgcq | setup new ws \szockfpj izohlgcq | szockfpj izohlgcq | GRP_24 | setup new ws \szockfpj izohlgcq setup new ws \... | un |
| 1442 | setup new ws \qdztknml hpcxnyrq | setup new ws \qdztknml hpcxnyrq | qdztknml hpcxnyrq | GRP_24 | setup new ws \qdztknml hpcxnyrq setup new ws \... | un |
| 1443 | reporting_tool dashbankrd not appearing in my ... | \n\nreceived from: xfdkwusj.gyklresa@gmail.com... | xfdkwusj gyklresa | GRP_22 | reporting_tool dashbankrd not appearing in my ... | English |
| 1444 | cannot add the lean event | i cannot launch 'add the lean event icon' in c... | svdefgwl sgtmurfh | GRP_0 | cannot add the lean event i cannot launch 'add... | English |
| 1445 | account zugriff dyqekzuc djhznybt wiederherst... | \r\n\r\nreceived from: urpbyoke.vwcbhmds@gmail... | urpbyoke vwcbhmds | GRP_0 | account zugriff dyqekzuc djhznybt wiederherst... | German |
| 1446 | problem with laptop- latitude 7350 | \n\nreceived from: ybxsujwi.yzwanorl@gmail.com... | ybxsujwi yzwanorl | GRP_19 | problem with laptop- latitude 7350 \n\nreceive... | English |
| 1447 | reset the password for imjwbogq xfizlnap on er... | please reset password to 'daypay3' | imjwbogq xfizlnap | GRP_0 | reset the password for imjwbogq xfizlnap on er... | English |
| 1448 | a next issue to bobj account dbednyuarski | \r\n\r\nreceived from: pgacouel.mpgfkxwr@gmail... | pgacouel mpgfkxwr | GRP_9 | a next issue to bobj account dbednyuarski \r\n... | English |
| 1449 | account locked. | account locked. | dyqekzuc djhznybt | GRP_0 | account locked. account locked. | English |
| 1450 | outlook freezes after crm update. | outlook freezes after crm update. | axdyfojg nyjlxbsk | GRP_0 | outlook freezes after crm update. outlook free... | English |
| 1451 | probleme mit der anzeige von offenen emails | \n\nreceived from: ecoljnvt.lbdqmvfs@gmail.com... | ecoljnvt lbdqmvfs | GRP_0 | probleme mit der anzeige von offenen emails \n... | German |
| 1452 | 考勤系统进ä¸åŽ»è¯·å¤„ç†è°¢è°¢ï¼ | 考勤系统进ä¸åŽ»è¯·å¤„ç†è°¢è°¢ï¼ | spgdcvhb ocagnpmj | GRP_30 | 考勤系统进ä¸åŽ»è¯·å¤„ç†è°¢è°¢ï¼ 考勤... | English |
| 1453 | telephony_software - issue very bad quality - ... | the sound is horrible - customer was very hard... | gmwdvrou aupnvems | GRP_7 | telephony_software - issue very bad quality - ... | English |
| 1454 | engineering tool and erp not working | engineering tool and erp not working | hukefojy sdquiely | GRP_0 | engineering tool and erp not working engineer... | English |
| 1455 | need help in resetting password in password_ma... | need help in resetting password in password_ma... | axdyfojg nyjlxbsk | GRP_0 | need help in resetting password in password_ma... | English |
| 1456 | need extra awb copy for all vendor | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_18 | need extra awb copy for all vendor \n\nreceive... | English |
| 1457 | www.company.com & www.company.com are showing... | observing below alerts in monitoring_tool sinc... | jloygrwh acvztedi | GRP_51 | www.company.com & www.company.com are showing... | English |
| 1458 | windows account locked | windows account locked | blksigdy nzapgrlx | GRP_0 | windows account locked windows account locked | English |
| 1459 | standby laptop for mcae course 5 day 17th to 2... | \n\nreceived from: rnueobcz.lwhcbati@gmail.com... | rnueobcz lwhcbati | GRP_19 | standby laptop for mcae course 5 day 17th to 2... | English |
| 1460 | job Job_3052 failed in job_scheduler at: 10/13... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3052 failed in job_scheduler at: 10/13... | English |
| 1461 | erp working slow | \n\nreceived from: rayhtukumujar.br2@company.c... | fgdsvija qvixmubh | GRP_14 | erp working slow \n\nreceived from: rayhtukumu... | English |
| 1462 | business_client - authorisation | \n\nreceived from: vomtbcej.lyiwqrct@gmail.com... | vomtbcej lyiwqrct | GRP_0 | business_client - authorisation \n\nreceived f... | English |
| 1463 | job Job_562 failed in job_scheduler at: 10/13/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_562 failed in job_scheduler at: 10/13/... | English |
| 1464 | job bkwin_HostName_770_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_770_inc failed in job_sched... | English |
| 1465 | error _ sto from plant_44 to plant_55 | when creating sto to return complained goods f... | tqfnalpj qyoscnge | GRP_29 | error _ sto from plant_44 to plant_55 when cre... | English |
| 1466 | so#36131539 / condition type | \r\n\r\nreceived from: qgvbalix.smehqkyj@gmail... | qgvbalix smehqkyj | GRP_13 | so#36131539 / condition type \r\n\r\nreceived ... | English |
| 1467 | job SID_43filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_43filesys failed in job_scheduler at: ... | English |
| 1468 | ticket update on inplant_869308 | ticket update on inplant_869308 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_869308 ticket update ... | English |
| 1469 | show me the text that is written on the email ... | show me the text that is written on the email ... | uisewznr ewtmkphs | GRP_26 | show me the text that is written on the email ... | English |
| 1470 | unable to submit expense report | \r\n\r\nreceived from: vxzahrlc.frtkpehy@gmail... | vxzahrlc frtkpehy | GRP_0 | unable to submit expense report \r\n\r\nreceiv... | English |
| 1471 | unable to install engineering_tool | unable to install engineering_tool | eagvusbr nguqityl | GRP_0 | unable to install engineering_tool unable to i... | English |
| 1472 | order shipped ups ground | \r\n\r\nfrom: tjlgzkbp iervwjzg \r\nsent: thur... | tjlgzkbp iervwjzg | GRP_18 | order shipped ups ground \r\n\r\nfrom: tjlgzkb... | English |
| 1473 | ticket update on ticket_no0449295 | ticket update on ticket_no0449295 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0449295 ticket updat... | English |
| 1474 | ticket update on ticket_no0449268 | ticket update on ticket_no0449268 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0449268 ticket updat... | English |
| 1475 | ticket update on inplant_869259 | ticket update on inplant_869259 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_869259 ticket update ... | English |
| 1476 | reset passwords for bnoupaki cpeioxdz using pa... | the | bnoupaki cpeioxdz | GRP_17 | reset passwords for bnoupaki cpeioxdz using pa... | English |
| 1477 | impact awards email | from: nwqktzlx vnlqkgpb \nsent: thursday, octo... | nwqktzlx vnlqkgpb | GRP_0 | impact awards email from: nwqktzlx vnlqkgpb \n... | English |
| 1478 | expense report not going to correct manager | expense report not going to correct manager | lkecfram tweaokch | GRP_0 | expense report not going to correct manager ex... | English |
| 1479 | unable to sync passwords on all accounts | unable to sync passwords on all accounts | dabkvsqt grtwfdxb | GRP_0 | unable to sync passwords on all accounts unabl... | English |
| 1480 | password reset | password reset | rhpqxsuy vcukgdfe | GRP_0 | password reset password reset | English |
| 1481 | cannot get prtqx7318 to print on pc rqxw851773... | cannot get prtqx7318 to print on pc rqxw851773... | vwaejqrh kmtvyesb | GRP_3 | cannot get prtqx7318 to print on pc rqxw851773... | English |
| 1482 | kpm issue / ie upgrade from 10 to ie11 | kpm issue / ie upgrade from 10 to ie11 | zywoxerf paqxtrfk | GRP_0 | kpm issue / ie upgrade from 10 to ie11 kpm iss... | English |
| 1483 | amssm003:volume: c:\ disk is over 88% space co... | amssm003:volume: c:\ disk is over 88% space co... | oldrctiu bxurpsyi | GRP_12 | amssm003:volume: c:\ disk is over 88% space co... | English |
| 1484 | blank call //gso // loud noise | blank call //gso // loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call //gso // loud noise blank call //gs... | English |
| 1485 | erp password reset for user kambthryes2 ( ex... | please reset erp - password of kambthryes2 ( e... | mrwucjho tjeaxnhu | GRP_0 | erp password reset for user kambthryes2 ( ex... | English |
| 1486 | reset SID_39 password for jidhewlg jufskody | could you please reset the password for the us... | gifpuwtb aykegsvr | GRP_0 | reset SID_39 password for jidhewlg jufskody co... | English |
| 1487 | ticket update on inplant_869231 | ticket update on inplant_869231 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_869231 ticket update ... | English |
| 1488 | need verification of proper user id | xszoedmc gmhkdsnw,. approvals in purchasing ar... | xszoedmc gmhkdsnw | GRP_2 | need verification of proper user id xszoedmc g... | English |
| 1489 | outlook issue | outlook issue | pbfscenq qvaylkne | GRP_0 | outlook issue outlook issue | English |
| 1490 | lean tracker | \n\nreceived from: sdbcpvtx.hzpctsla@gmail.com... | sdbcpvtx hzpctsla | GRP_0 | lean tracker \n\nreceived from: sdbcpvtx.hzpct... | English |
| 1491 | msd - office 2013 specifically outlook | outlook is very slow to respond, i'm having to... | pbfscenq qvaylkne | GRP_0 | msd - office 2013 specifically outlook outloo... | English |
| 1492 | home folder share delegation of dtheb mulhylen... | vip 1 // please usa user access to dtheb mulhy... | lpoebzsc grknswyo | GRP_2 | home folder share delegation of dtheb mulhylen... | English |
| 1493 | res: ticket_no1558759 -- register - ie rj tax... | \r\n\r\nreceived from: lokiwfhg.udkoqrcg@gmail... | lokiwfhg udkoqrcg | GRP_10 | res: ticket_no1558759 -- register - ie rj tax... | English |
| 1494 | cannot download or print drawings from erp net... | \nsummary:hello! i cannot download or print dr... | deqmzotr zhrjngbi | GRP_3 | cannot download or print drawings from erp net... | English |
| 1495 | outlook not updating ; crashing intermittently | outlook not updating ; crashing intermittently | wipzvlug urmdkgpa | GRP_0 | outlook not updating ; crashing intermittently... | English |
| 1496 | HostName_175: dev/SID_36data4a the space has b... | HostName_175: dev/SID_36data4a the space has b... | rkupnshb gsmzfojw | GRP_1 | HostName_175: dev/SID_36data4a the space has b... | English |
| 1497 | ticket update on ticket_no0449233 | ticket update on ticket_no0449233 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0449233 ticket updat... | English |
| 1498 | mobile device activation | from: sbgvrncj idfhtoqv \nsent: thursday, octo... | przcxbml vnjdghui | GRP_0 | mobile device activation from: sbgvrncj idfhto... | English |
| 1499 | need access to assistant programdnty in nx | need access to assistant programdnty in nx | ajdcnwtb bvijwxko | GRP_2 | need access to assistant programdnty in nx ne... | English |
| 1500 | unable to login to collaboration_platform with... | unable to login to collaboration_platform with... | aeykqxlr brpdswvu | GRP_0 | unable to login to collaboration_platform with... | English |
| 1501 | email delegation | i would like to have todthyd renytrner email f... | xziwkgeo gdiraveu | GRP_26 | email delegation i would like to have todthyd ... | English |
| 1502 | windows account unlock | windows account unlock | gvdkupew waphsuen | GRP_0 | windows account unlock windows account unlock | English |
| 1503 | hpqc - initialization error | trying to access hpqc \r\n\r\nerror:\r\ninitia... | erckhtzj tdmkgoie | GRP_3 | hpqc - initialization error trying to access h... | English |
| 1504 | static issue on phone..interaction id : 106482... | static issue on phone..interaction id : 106482... | efbwiadp dicafxhv | GRP_0 | static issue on phone..interaction id : 106482... | English |
| 1505 | unable to connect to vpn | unable to connect to vpn | gakceqyb edrjthvo | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 1506 | unable to access ap remote or eu remote while ... | when i try to access either one i receive the ... | gakceqyb edrjthvo | GRP_0 | unable to access ap remote or eu remote while ... | English |
| 1507 | engineering_tool not opening | engineering_tool not opening | ibsywxpc icxhsbfv | GRP_0 | engineering_tool not opening engineering_tool... | English |
| 1508 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | wvngzrca sfmrzdth | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 1509 | email activation on company provided device | email activation on company provided device | rqfmcjak gcxvtbrz | GRP_0 | email activation on company provided device em... | English |
| 1510 | not able to login | \r\n\r\nreceived from: uypsqcbm.fqpybgri@gmail... | axdyfojg nyjlxbsk | GRP_0 | not able to login \r\n\r\nreceived from: uypsq... | English |
| 1511 | office asking for license key | office asking for license key | cjsukemx lqkcesuf | GRP_0 | office asking for license key office asking fo... | English |
| 1512 | erp inbox, ich bin nicht im workcenter nr. 511... | workflow meiner gruppe für mich nicht sichtba... | xsnrlygw nmqyraec | GRP_13 | erp inbox, ich bin nicht im workcenter nr. 511... | German |
| 1513 | engineering_tool company and company not working | engineering_tool company and company not working | shkwgxln ikpvtjgn | GRP_0 | engineering_tool company and company not worki... | English |
| 1514 | unable to save docs on t drive. internet not w... | unable to save docs on t drive. internet not w... | rjwbntef nmuikjgo | GRP_0 | unable to save docs on t drive. internet not w... | English |
| 1515 | unable to open excel file from collaboration_p... | name:wqxzleky uwjchqor\nlanguage:\nbrowser:mic... | wqxzleky uwjchqor | GRP_0 | unable to open excel file from collaboration_p... | English |
| 1516 | circuit outage : company-na-usa-usa-anira-rtr0... | what type of outage: _____network __x___c... | jyoqwxhz clhxsoqy | GRP_8 | circuit outage : company-na-usa-usa-anira-rtr0... | English |
| 1517 | res: ticket_no1558759 -- register - ie rj tax... | \n\nreceived from: lokiwfhg.udkoqrcg@gmail.com... | lokiwfhg udkoqrcg | GRP_10 | res: ticket_no1558759 -- register - ie rj tax... | English |
| 1518 | msd crm popup when try to lunch outlook and ou... | msd crm popup when try to lunch outlook and ou... | gbirhjat fptbrhwv | GRP_0 | msd crm popup when try to lunch outlook and ou... | English |
| 1519 | unable to edit in collaboration_platform | name : budighfl izbxvary\n\nbrowser : microsof... | budighfl izbxvary | GRP_16 | unable to edit in collaboration_platform name ... | English |
| 1520 | ms crm emails not coming to outlook | ms crm emails not coming to outlook | ghfvmpqi fehkscza | GRP_40 | ms crm emails not coming to outlook ms crm em... | English |
| 1521 | unable to login to ethics | unable to login to ethics | ekracmdp yphqstfj | GRP_0 | unable to login to ethics unable to login to e... | English |
| 1522 | ticket update for-inplant_866222 | ticket update for-inplant_866222 | gzjtweph mnslwfqv | GRP_0 | ticket update for-inplant_866222 ticket update... | English |
| 1523 | secure logon does not work | when try and initialize secure logon get messa... | otagsuzp xazhusry | GRP_0 | secure logon does not work when try and initia... | English |
| 1524 | account locked out : windows | account locked out : windows | wjsfbpuv lcpdfihr | GRP_0 | account locked out : windows account locked o... | English |
| 1525 | account locked. | account locked. | ndrtahvm kjhdybzm | GRP_0 | account locked. account locked. | English |
| 1526 | account locked | account locked | vgzmjkop rgeubdco | GRP_0 | account locked account locked | English |
| 1527 | ticket query regarding : ticket_no0447258 | ticket query regarding : ticket_no0447258 | efbwiadp dicafxhv | GRP_0 | ticket query regarding : ticket_no0447258 tick... | English |
| 1528 | unable to open outlook | unable to open outlook | naehwsgr guwlzejm | GRP_0 | unable to open outlook unable to open outlook | English |
| 1529 | unable to login to skype | unable to login to skype | zjuciaxv przcfied | GRP_0 | unable to login to skype unable to login to skype | English |
| 1530 | the new iphone 6s is not getting quaraintined. | the new iphone 6s is not getting quaraintined. | jkraueqn gthlexzo | GRP_28 | the new iphone 6s is not getting quaraintined.... | English |
| 1531 | having issues with outlook | having issues with outlook | otpkzifh gywinoml | GRP_19 | having issues with outlook having issues with ... | English |
| 1532 | i need accsess to this link. | \r\n\r\nreceived from: rcmziuob.xhblozqe@gmail... | rcmziuob xhblozqe | GRP_0 | i need accsess to this link. \r\n\r\nreceived ... | German |
| 1533 | vip 2: outlook freezing. | vip 2: outlook freezing. | ihozauxs ohdqmipz | GRP_0 | vip 2: outlook freezing. vip 2: outlook freezing. | English |
| 1534 | account lockout | account lockout | tqjsmwvk arqoytbh | GRP_0 | account lockout account lockout | English |
| 1535 | please update change for user "giuliasana byhd... | change for user "giuliasana byhdderni" from "c... | vpityxbu qktwepmz | GRP_2 | please update change for user "giuliasana byhd... | English |
| 1536 | telephony_software phone | benelthyux team has bad phone connection of in... | xdtiwshm ijyrtulh | GRP_7 | telephony_software phone benelthyux team has b... | English |
| 1537 | probleme mit lan am rechner \ we_wu113 \ essa ... | probleme mit lan am rechner \ we_wu113 \ essa ... | wrcktgbd wzrgyunp | GRP_24 | probleme mit lan am rechner \ we_wu113 \ essa ... | German |
| 1538 | pdf dateien gehen nicht auf | pdf dateien gehen nicht auf | fiwaltqr utykjmwi | GRP_33 | pdf dateien gehen nicht auf pdf dateien gehen ... | German |
| 1539 | unable to re print inwarehouse_tool | \r\n\r\nreceived from: rxoynvgi.ntgdsehl@gmail... | rxoynvgi ntgdsehl | GRP_19 | unable to re print inwarehouse_tool \r\n\r\nre... | English |
| 1540 | cannot find workgroups in telephony_software | i cannot find 2/de/fd/gso/de/v as well as 2/d... | fdmaluyo tvecikxn | GRP_7 | cannot find workgroups in telephony_software i... | English |
| 1541 | wireless mouse is missing from desk | wireless mouse is missing from desk, need new ... | qkmgtnla buraxcij | GRP_3 | wireless mouse is missing from desk wireless m... | English |
| 1542 | msd -unable to sync all the contact informatio... | unable to sync all the contact information fro... | crjhotyk pxslorbe | GRP_22 | msd -unable to sync all the contact informatio... | English |
| 1543 | probleme mit portal \ user : gogtyekthyto \vzq... | probleme mit portal \ user : gogtyekthyto \vzq... | vzqomdgt jwoqbuml | GRP_24 | probleme mit portal \ user : gogtyekthyto \vzq... | English |
| 1544 | re: inc1547248- logging into mii supervisor da... | \r\n\r\nreceived from: wsabzycm.pbhrmnyz@gmail... | wsabzycm pbhrmnyz | GRP_41 | re: inc1547248- logging into mii supervisor da... | English |
| 1545 | job Job_593 failed in job_scheduler at: 10/13/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/13/... | English |
| 1546 | automatical stock transfers shows wrong (tool ... | hello,\r\n\r\nwe have again the problem with w... | yfmaqovp wdonhbez | GRP_6 | automatical stock transfers shows wrong (tool ... | English |
| 1547 | ethics training course | \r\n\r\nreceived from: aunkpchr.qsyvrmjl@gmail... | aunkpchr qsyvrmjl | GRP_23 | ethics training course \r\n\r\nreceived from: ... | English |
| 1548 | drucker em93 macht willkürlich flecken auf de... | drucker em93 macht willkürlich flecken auf de... | ltxzfcgm sxvigclz | GRP_42 | drucker em93 macht willkürlich flecken auf de... | German |
| 1549 | company-eu-deu-germany-e-b2-f2-new-office-3550... | internal power supply - on company-eu-deu-ge... | bozdftwx smylqejw | GRP_4 | company-eu-deu-germany-e-b2-f2-new-office-3550... | English |
| 1550 | computer check | \n\nreceived from: qhyoiwls.uynrhiva@gmail.com... | qhyoiwls uynrhiva | GRP_28 | computer check \n\nreceived from: qhyoiwls.uyn... | German |
| 1551 | reset the password for xaykwtrf amlswjfr on er... | reset the password for xaykwtrf amlswjfr on er... | xaykwtrf amlswjfr | GRP_0 | reset the password for xaykwtrf amlswjfr on er... | English |
| 1552 | probleme mit lan \youfzmgp xvysrnmb | probleme mit lan \youfzmgp xvysrnmb | youfzmgp xvysrnmb | GRP_24 | probleme mit lan \youfzmgp xvysrnmb probleme m... | Danish |
| 1553 | no vpn connection my employee p. financial. | name:jvxtfhkg heptuizn\nlanguage:\nbrowser:mic... | jvxtfhkg heptuizn | GRP_0 | no vpn connection my employee p. financial. na... | English |
| 1554 | ç”å¤: ticket_no1559458 : wireless guest acce... | \n\nreceived from: krnzfoct.mnjbuedp@gmail.com... | krnzfoct mnjbuedp | GRP_0 | ç”å¤: ticket_no1559458 : wireless guest acce... | English |
| 1555 | wifi connection is intermittent (getting frequ... | wifi connection is intermittent (getting frequ... | ykcvjwax cfigbjuo | GRP_8 | wifi connection is intermittent (getting frequ... | English |
| 1556 | [erp] reroute production order printer mp74 to... | production order printer mp74 (10.16.77.212) n... | xvwchsdg pladjmxt | GRP_5 | [erp] reroute production order printer mp74 to... | English |
| 1557 | :network problem in india office | telephone:\nsummary:network problem in india\n... | ruhvqcwz kdqzlijw | GRP_4 | :network problem in india office telephone:\ns... | English |
| 1558 | reset passwords for usa feathers using passwor... | the | lmqysdec ljvbnpqw | GRP_17 | reset passwords for usa feathers using passwor... | English |
| 1559 | missing punches | hello, there are punches out missing in erp fo... | qwghibcf uptkgzbe | GRP_52 | missing punches hello, there are punches out m... | English |
| 1560 | upgrade pc ramdnty | i raised a ticket to upgrade the system ramdnt... | nrugzxkl lohqkvry | GRP_19 | upgrade pc ramdnty i raised a ticket to upgrad... | English |
| 1561 | ticket_no1559458 : wireless guest access- hr_t... | \n\nreceived from: aorthyme.rnsuipbk@gmail.com... | aorthyme rnsuipbk | GRP_0 | ticket_no1559458 : wireless guest access- hr_t... | English |
| 1562 | \r\nthis link can not be open | \r\nthis link can not be open | vroxskje bixtmefd | GRP_0 | \r\nthis link can not be open \r\nthis link ca... | English |
| 1563 | grir issues plant_322 for ice alt. routes from... | email from maryhtutina bauuyternfeyt to athynd... | cbligfne wmoxktnj | GRP_53 | grir issues plant_322 for ice alt. routes from... | English |
| 1564 | account blocked | \r\n\r\nreceived from: kmzwjdsb.ejgnafcy@gmail... | kmzwjdsb ejgnafcy | GRP_0 | account blocked \r\n\r\nreceived from: kmzwjds... | English |
| 1565 | datenübertragung nicht möglich! | keine datenübertragung von pc auf maschine mÃ... | ajiqfrkz dolmpkqf | GRP_42 | datenübertragung nicht möglich! keine datenÃ... | English |
| 1566 | ess portal | \r\n\r\nreceived from: ygkzwsud.cvjgkxws@gmail... | ygkzwsud cvjgkxws | GRP_0 | ess portal \r\n\r\nreceived from: ygkzwsud.cvj... | English |
| 1567 | current learning - ethics | \r\n\r\nreceived from: bcxpeuko.utorqehx@gmail... | bcxpeuko utorqehx | GRP_23 | current learning - ethics \r\n\r\nreceived fro... | English |
| 1568 | ç”µè„‘æ— æ³•æ‰“å¼€ç½‘é¡µã€‚ | å¼ å·¥æ‚¨å¥½ï¼\r\n我的电脑连接公å¸ç½‘... | tmufgokq qtzavows | GRP_31 | ç”µè„‘æ— æ³•æ‰“å¼€ç½‘é¡µã€‚ å¼ å·¥æ‚¨å¥½ï¼\r\... | Irish |
| 1569 | production order cannot be released - 115991131 | hello it,\r\n\r\nproduction order cannot be re... | vujymcls sgpmyviq | GRP_45 | production order cannot be released - 11599113... | English |
| 1570 | usa warehouse:long distance service down | from: mdghayi redytudy \nsent: wednesday, oct... | jvhqyamt wodzrcjg | GRP_8 | usa warehouse:long distance service down from:... | English |
| 1571 | account locked in ad | account locked in ad | vhqgbpik fkvigjbu | GRP_0 | account locked in ad account locked in ad | English |
| 1572 | payment method change from "t" to "c" for all ... | \nfrom: gnasmtvx cwxtsvkm \nsent: wednesday, o... | gnasmtvx cwxtsvkm | GRP_10 | payment method change from "t" to "c" for all ... | English |
| 1573 | anti-fmxcnwpu tcwrdqboinition is not updated f... | anti-fmxcnwpu tcwrdqboinition is not updated f... | ldsjntax eqozfasc | GRP_50 | anti-fmxcnwpu tcwrdqboinition is not updated f... | English |
| 1574 | job Job_1329 failed in job_scheduler at: 10/13... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1329 failed in job_scheduler at: 10/13... | English |
| 1575 | pricing condition issue in oa | \r\n\r\nreceived from: rayhtukumujar.br2@compa... | fgdsvija qvixmubh | GRP_13 | pricing condition issue in oa \r\n\r\nreceived... | English |
| 1576 | need network connection for alicona edgemaster... | \r\n\r\nreceived from: vtwxaefm.ljisafue@gmail... | vtwxaefm ljisafue | GRP_19 | need network connection for alicona edgemaster... | English |
| 1577 | the printer is defaulting to the usa printer f... | from: kryuisti turleythy \nsent: wednesday, oc... | hybiaxlk lawptzir | GRP_18 | the printer is defaulting to the usa printer f... | English |
| 1578 | folder missing | \n\nreceived from: munxvfhw.texsbopi@gmail.com... | munxvfhw texsbopi | GRP_0 | folder missing \n\nreceived from: munxvfhw.tex... | English |
| 1579 | windows account frequently getting locked. | windows account frequently getting locked. | wyxqkzmf urigtqnp | GRP_0 | windows account frequently getting locked. win... | English |
| 1580 | job Job_568 failed in job_scheduler at: 10/12/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_568 failed in job_scheduler at: 10/12/... | English |
| 1581 | job bkwin_HostName_770_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_770_inc failed in job_sched... | English |
| 1582 | no power on the laptop | no power on the laptop | vgtpkjhn flwsytik | GRP_0 | no power on the laptop no power on the laptop | English |
| 1583 | frequent account lockout on windows | frequent account lockout on windows | lwgytuxq qspdztiw | GRP_2 | frequent account lockout on windows frequent ... | English |
| 1584 | HostName_894 : volume: c:\ label:sys-HostName_... | HostName_894 : volume: c:\ label:sys-HostName_... | spxqmiry zpwgoqju | GRP_39 | HostName_894 : volume: c:\ label:sys-HostName_... | English |
| 1585 | ticket update on ticket_no0448847 | ticket update on ticket_no0448847 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0448847 ticket updat... | English |
| 1586 | engineering_tool not working | engineering_tool not working | gpdywmbt pmxfiqkl | GRP_0 | engineering_tool not working engineering_tool... | English |
| 1587 | need help resetting one of my team members hub... | need help resetting one of my team members hub... | mzyejqvd xzbtcfar | GRP_0 | need help resetting one of my team members hub... | English |
| 1588 | password reset instruction | \nsummary:hello i need to reset one of my team... | jdlxkygf wlzqaivr | GRP_0 | password reset instruction \nsummary:hello i ... | English |
| 1589 | ticket update on ticket_no0448893 | ticket update on ticket_no0448893 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0448893 ticket updat... | English |
| 1590 | please give schoegdythu read/write access to a... | please give schoegdythu read/write access to a... | bwfhtumx japznrvb | GRP_34 | please give schoegdythu read/write access to a... | English |
| 1591 | please give gethyoff schoemerujt (schoegdythu)... | please give gethyoff schoemerujt (schoegdythu)... | bwfhtumx japznrvb | GRP_12 | please give gethyoff schoemerujt (schoegdythu)... | English |
| 1592 | skype does not work | skype will for load. phone . same problem as l... | otagsuzp xazhusry | GRP_0 | skype does not work skype will for load. phone... | English |
| 1593 | ticket update on inplant_868930 | ticket update on inplant_868930 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_868930 ticket update ... | English |
| 1594 | unable to open emails in outlook | unable to open emails in outlook | lrbjqcmh jbiwtzqr | GRP_0 | unable to open emails in outlook unable to ope... | English |
| 1595 | access to hr_tool denied | access to hr_tool denied | uyhceqzr tpbdwiyv | GRP_2 | access to hr_tool denied access to hr_tool denied | English |
| 1596 | no access to engineering_tool : see attachment | no access to engineering_tool : see attachment | eagvusbr nguqityl | GRP_25 | no access to engineering_tool : see attachment... | English |
| 1597 | vpn shut down | vpn shut down when i was clocking back in for ... | hdfcwmag plxstkad | GRP_0 | vpn shut down vpn shut down when i was clockin... | English |
| 1598 | outlook doesn't start-up on my tablet dell lat... | outlook doesn't start-up on my tablet dell lat... | kzbrimwx dconpwbu | GRP_0 | outlook doesn't start-up on my tablet dell lat... | English |
| 1599 | it notices on the hub do not expire on the sch... | it notices on the hub do not expire on the sch... | fdmaluyo tvecikxn | GRP_16 | it notices on the hub do not expire on the sch... | English |
| 1600 | calls are coming to me but rerouting and showi... | calls are coming to me but rerouting and showi... | vaniegrz dbocqmpt | GRP_7 | calls are coming to me but rerouting and showi... | English |
| 1601 | erp SID_37 | i am able to access SID_34 and SID_39, however... | qcfmxgid jvxanwre | GRP_2 | erp SID_37 i am able to access SID_34 and SID_... | English |
| 1602 | application erp - mii on node HostName_340 & ... | application erp - mii on node HostName_340 & H... | jyoqwxhz clhxsoqy | GRP_14 | application erp - mii on node HostName_340 & ... | English |
| 1603 | ms office : word issue | ms office : word issue | wbtrvdsi gdbuvszx | GRP_0 | ms office : word issue ms office : word issue | English |
| 1604 | access to SID_1 | \r\n\r\nreceived from: combxind.bvptuqxr@gmail... | combxind bvptuqxr | GRP_0 | access to SID_1 \r\n\r\nreceived from: combxin... | English |
| 1605 | unable to login to collaboration_platform | unable to login to collaboration_platform | zdgnlqkc zfjbpntg | GRP_0 | unable to login to collaboration_platform unab... | English |
| 1606 | unable to access company, password expired | unable to access company, password expired | uzchtpxo ksvendorjir | GRP_0 | unable to access company, password expired una... | English |
| 1607 | danyhuie deyhtwet - a plant manager - keeps sh... | danyhuie deyhtwet - a plant manager - keeps sh... | uazkjifp dhtnevcq | GRP_26 | danyhuie deyhtwet - a plant manager - keeps sh... | English |
| 1608 | wifi | \n\nreceived from: nbdljruw.axcrspyh@gmail.com... | nbdljruw axcrspyh | GRP_0 | wifi \n\nreceived from: nbdljruw.axcrspyh@gmai... | German |
| 1609 | client's pc is rebooting randomly and also hav... | client's pc is rebooting randomly and also hav... | dslamtcb ezbmonjr | GRP_3 | client's pc is rebooting randomly and also hav... | English |
| 1610 | unable to see my previous pay slips | unable to see my previous pay slips | fjciqgav ybkqvazh | GRP_0 | unable to see my previous pay slips unable to ... | English |
| 1611 | wifi not working in pennsylvania (wireless iss... | wifi not working in pennsylvania\r\n\r\naccess... | zcdirjeq azokfsdi | GRP_4 | wifi not working in pennsylvania (wireless iss... | English |
| 1612 | vpn shut down | i was fixing an order. i went to answer a ques... | hdfcwmag plxstkad | GRP_0 | vpn shut down i was fixing an order. i went to... | English |
| 1613 | vpn connectivity issues | knocked off vpn connection again. i wasn't do... | gakceqyb edrjthvo | GRP_2 | vpn connectivity issues knocked off vpn connec... | English |
| 1614 | ultramdntyet wrongful inwarehouse_tool, so# 24... | \r\n\r\nreceived from: vflagort.xyotrhlf@gmail... | lhyrskmn zbovukqm | GRP_13 | ultramdntyet wrongful inwarehouse_tool, so# 24... | English |
| 1615 | wrongful inwarehouse_tool | \r\n\r\nreceived from: vflagort.xyotrhlf@gmail... | lhyrskmn zbovukqm | GRP_13 | wrongful inwarehouse_tool \r\n\r\nreceived fro... | English |
| 1616 | vpn shut down | while searching for quotes in erp, vpn shut do... | hdfcwmag plxstkad | GRP_0 | vpn shut down while searching for quotes in er... | English |
| 1617 | unable to connect to companysecure | unable to connect to companyssecure | kiqfusgp xfzsreug | GRP_0 | unable to connect to companysecure unable to c... | English |
| 1618 | unable to login to skype | unable to login to skype | mwahtgup wfgesvxd | GRP_0 | unable to login to skype unable to login to skype | English |
| 1619 | vip zip file | \n\nreceived from: jwhmqnye.xlpvdwre@gmail.com... | jwhmqnye xlpvdwre | GRP_12 | vip zip file \n\nreceived from: jwhmqnye.xlpvd... | English |
| 1620 | need to find old emails on outlook. | need to find old emails on outlook. | epqyourg rxjipfum | GRP_0 | need to find old emails on outlook. need to fi... | English |
| 1621 | ticket update on ticket_no0444091 | ticket update on ticket_no0444091 | efbwiadp dicafxhv | GRP_0 | ticket update on ticket_no0444091 ticket updat... | English |
| 1622 | nachdem ich outlook geöffnet habe und eine e-... | mehr machen. bitte dringend um hilfe. meine mo... | byltiakh vinqkxzm | GRP_0 | nachdem ich outlook geöffnet habe und eine e-... | German |
| 1623 | benefits app on ssp | \r\n\r\nreceived from: fpbmtxei.jtqbcnfs@gmail... | fpbmtxei jtqbcnfs | GRP_0 | benefits app on ssp \r\n\r\nreceived from: fpb... | English |
| 1624 | outlook not working : crm issue | outlook not working, emails not opening : crm ... | vjwdyanl knfsjdgz | GRP_0 | outlook not working : crm issue outlook not w... | English |
| 1625 | locked out of his system | locked out of his system | jbyxkpof xetsjfgd | GRP_0 | locked out of his system locked out of his system | English |
| 1626 | erp SID_34 password reset | erp SID_34 password reset | expmsvyc thsruydf | GRP_0 | erp SID_34 password reset erp SID_34 password... | English |
| 1627 | tmunkaiv ockthiyj | \r\n\r\nreceived from: nlgkmpaq.outrnkca@gmail... | nlgkmpaq outrnkca | GRP_0 | tmunkaiv ockthiyj \r\n\r\nreceived from: nlgk... | English |
| 1628 | erp password reset SID_34 | erp password reset SID_34 | efmzltnx uehqbaxo | GRP_0 | erp password reset SID_34 erp password reset S... | English |
| 1629 | dw06 print job error | dw06 print job error | vwpxjtof vmidzswj | GRP_0 | dw06 print job error dw06 print job error | English |
| 1630 | druker | \r\n\r\nreceived from: xahuklgm.dqvkfjlb@gmail... | xahuklgm dqvkfjlb | GRP_33 | druker \r\n\r\nreceived from: xahuklgm.dqvkfjl... | German |
| 1631 | unable to login to impact award | unable to login to impact award\r\ntried passw... | cizplrvw ymxgteir | GRP_0 | unable to login to impact award unable to logi... | English |
| 1632 | need link to access outlook web mail | need link to access outlook web mail | khrflgcj zxojidhe | GRP_0 | need link to access outlook web mail need link... | English |
| 1633 | account locked out | account locked out | oiudarbk ezhnjwdt | GRP_0 | account locked out account locked out | English |
| 1634 | performance problems in different applications... | performance problems with erp, ieas and EU_too... | umykjweg jpwrfuhk | GRP_25 | performance problems in different applications... | English |
| 1635 | downloading or copying collaboration_platform ... | i want to upload directly to purchasing pdf fi... | xszoedmc gmhkdsnw | GRP_16 | downloading or copying collaboration_platform ... | English |
| 1636 | cannot print to cl92 | ever since a recent workstation move, i am una... | irpvzhym kayqlbuh | GRP_0 | cannot print to cl92 ever since a recent works... | English |
| 1637 | receiving product in logical warehouse (plant_... | when using migo/goods receipt to receive produ... | qtrmxlgv dfruzvam | GRP_54 | receiving product in logical warehouse (plant_... | English |
| 1638 | need to setup a aolhgbps pbxqtcek in SID_21 an... | need to create the aolhgbps pbxqtcek in activ... | jypowefv yzgsldrx | GRP_2 | need to setup a aolhgbps pbxqtcek in SID_21 an... | English |
| 1639 | HostName_170: volume: /dev/SID_3ora on server:... | HostName_170: volume: /dev/SID_3ora on server:... | jyoqwxhz clhxsoqy | GRP_1 | HostName_170: volume: /dev/SID_3ora on server:... | English |
| 1640 | calendar is not visible by manager | calendar is not visible by manager | pnhlrfao ivjxlyfz | GRP_0 | calendar is not visible by manager calendar i... | English |
| 1641 | probleme mit EU_tool \fehler beim auftrag abme... | probleme mit EU_tool \fehler beim auftrag abme... | ypladjeu wzfryxav | GRP_24 | probleme mit EU_tool \fehler beim auftrag abme... | German |
| 1642 | basis on-call / shift details... | \r\n\r\nreceived from: mnxbeuso.rfmdlwuo@gmail... | mnxbeuso rfmdlwuo | GRP_0 | basis on-call / shift details... \r\n\r\nrecei... | English |
| 1643 | is the finance_app system still down we need t... | is the finance_app system still down\r\nwe nee... | vsbtygin oufhtbas | GRP_55 | is the finance_app system still down we need t... | English |
| 1644 | laptop byclpwmv esafrtbh defekt | laptop byclpwmv esafrtbh defekt | sxabotdw xlozwcyk | GRP_33 | laptop byclpwmv esafrtbh defekt laptop byclpwm... | English |
| 1645 | ess password reset | ess password reset | lndypaqg dhqwtcsr | GRP_0 | ess password reset ess password reset | English |
| 1646 | mr. guruythupyhtyad is still not able to open ... | from: jayatramdntydba cvyg \nsent: wednesday, ... | uaeqlxro rzsdalyc | GRP_12 | mr. guruythupyhtyad is still not able to open ... | English |
| 1647 | deployment notification - ms .net framdntyewor... | \r\n\r\nreceived from: qaohugxw.kdeqjncw@gmail... | qaohugxw kdeqjncw | GRP_0 | deployment notification - ms .net framdntyewor... | English |
| 1648 | druckerprobleme mit em021 in germany | \r\n\r\nreceived from: mobaidfx.gviwlsrm@gmail... | mobaidfx gviwlsrm | GRP_42 | druckerprobleme mit em021 in germany \r\n\r\nr... | German |
| 1649 | need help | \r\n\r\nreceived from: axcbfuqo.yiagubvh@gmail... | axcbfuqo yiagubvh | GRP_0 | need help \r\n\r\nreceived from: axcbfuqo.yiag... | English |
| 1650 | software "babiluntr" does not work | software "babiluntr" does not work | mopuczxh mflsykip | GRP_42 | software "babiluntr" does not work software "b... | English |
| 1651 | display link not working | \n\nreceived from: pxbqkfgm.qexvrmcn@gmail.com... | pxbqkfgm qexvrmcn | GRP_19 | display link not working \n\nreceived from: px... | English |
| 1652 | need display link adaptor and simcard holder | \r\n\r\nreceived from: zdgxtfqs.tibmhxcs@gmail... | zdgxtfqs tibmhxcs | GRP_19 | need display link adaptor and simcard holder \... | English |
| 1653 | copy of desktop files | \n\nreceived from: hjcpyxtq.okycpbsz@gmail.com... | hjcpyxtq okycpbsz | GRP_19 | copy of desktop files \n\nreceived from: hjcpy... | English |
| 1654 | telephony_software via remote number | \n\nreceived from: gmwdvrou.aupnvems@gmail.com... | gmwdvrou aupnvems | GRP_7 | telephony_software via remote number \n\nrecei... | English |
| 1655 | outlook repeatedly asking for passwords | outlook repeatedly asking for passwords | bhkgxaty ovmkntah | GRP_0 | outlook repeatedly asking for passwords outloo... | English |
| 1656 | probleme mit EU_tool \tmqfjard qzhgdoua | probleme mit EU_tool \tmqfjard qzhgdoua | tmqfjard qzhgdoua | GRP_24 | probleme mit EU_tool \tmqfjard qzhgdoua proble... | Danish |
| 1657 | bitte einen ordner im teams laufwerk fürth an... | \n\nreceived from: osjqfbvw.hlmgrfpx@gmail.com... | osjqfbvw hlmgrfpx | GRP_12 | bitte einen ordner im teams laufwerk fürth an... | German |
| 1658 | job dir failed in job_scheduler at: 10/12/2016... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job dir failed in job_scheduler at: 10/12/2016... | English |
| 1659 | request lauacyltoe hxgaycze version outlook up... | \r\n\r\nreceived from: luxdnsvk.qmnyzcfs@gmail... | luxdnsvk qmnyzcfs | GRP_0 | request lauacyltoe hxgaycze version outlook up... | English |
| 1660 | latitude tab 7350 not detecting the telecom_ve... | latitude tab 7350 not detecting the telecom_ve... | neoarmgd meodvbxu | GRP_19 | latitude tab 7350 not detecting the telecom_ve... | English |
| 1661 | owner of the group "k-bhty-plc4-yhhm-er" is no... | owner of the group "k-bhty-plc4-yhhm-er" is no... | tcbonyes gpfacron | GRP_0 | owner of the group "k-bhty-plc4-yhhm-er" is no... | English |
| 1662 | gso hotline not working | gso hotline not working. new as well old numbe... | ughzilfm cfibdamq | GRP_37 | gso hotline not working gso hotline not workin... | English |
| 1663 | reset the password for wcrbmgon kcudbnrw on e-... | reset the password for wcrbmgon kcudbnrw on e-... | wcrbmgon kcudbnrw | GRP_0 | reset the password for wcrbmgon kcudbnrw on e-... | English |
| 1664 | maschinen pc r239 ohne funktion -> bitte prüfen | maschinen pc r239 ohne funktion -> bitte prüfen | ljxzyriq zqxkrcev | GRP_33 | maschinen pc r239 ohne funktion -> bitte prüf... | German |
| 1665 | faxen von purchase orders direkt aus der po sc... | faxen von purchase orders direkt aus der po sc... | rnajgdmb fioznltc | GRP_29 | faxen von purchase orders direkt aus der po sc... | English |
| 1666 | rechner für erodiermaschine defekt \youfzmgp ... | rechner für erodiermaschine defekt \youfzmgp ... | youfzmgp xvysrnmb | GRP_24 | rechner für erodiermaschine defekt \youfzmgp ... | Luxembourgish |
| 1667 | reset the password for xbsckemt durnfyxb on so... | hallo,\r\nbitte nur das passwort für "apprica... | xbsckemt durnfyxb | GRP_0 | reset the password for xbsckemt durnfyxb on so... | German |
| 1668 | new customer:81055992 has some problme | i have created new customer account 81055992 i... | pvfclkmn gebyipwr | GRP_15 | new customer:81055992 has some problme i have ... | English |
| 1669 | in outlook ,i am not getting pauhtul.phillyhui... | in outlook ,i am not getting pauhtul.phillyhui... | jacgtfxo vlbeuxif | GRP_0 | in outlook ,i am not getting pauhtul.phillyhui... | English |
| 1670 | archiving_tool viewer | archiving_tool 10.0 has been installed on my p... | dnqavlem ndymoifb | GRP_0 | archiving_tool viewer archiving_tool 10.0 has ... | English |
| 1671 | unable to submit lean tracker | unable to submit lean tracker | qnazgxml lbmukxey | GRP_0 | unable to submit lean tracker unable to submit... | English |
| 1672 | job Job_459 failed in job_scheduler at: 10/12/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_459 failed in job_scheduler at: 10/12/... | English |
| 1673 | maus defekt \niptbwdq csenjruz | maus defekt \niptbwdq csenjruz | niptbwdq csenjruz | GRP_24 | maus defekt \niptbwdq csenjruz maus defekt \ni... | Hungarian |
| 1674 | probleme mit ws cad \wsboedtj yvlswgxb | probleme mit ws cad \wsboedtj yvlswgxb | wsboedtj yvlswgxb | GRP_24 | probleme mit ws cad \wsboedtj yvlswgxb problem... | Danish |
| 1675 | engineering tool - urgent customer drawing cha... | 1.) briefly describe what you were trying ... | gdxujefz egnwtvch | GRP_11 | engineering tool - urgent customer drawing cha... | English |
| 1676 | outlook on laptop won't startup anymore. error... | name:tuzkadxv rxloutpn\nlanguage:\nbrowser:mic... | tuzkadxv rxloutpn | GRP_0 | outlook on laptop won't startup anymore. error... | English |
| 1677 | unable to create sto_mm 7340903 and mm 6239893 | we're unable to create sto for mm# 7340903 per... | tqfnalpj qyoscnge | GRP_29 | unable to create sto_mm 7340903 and mm 6239893... | English |
| 1678 | probleme mit skype | \r\n\r\nreceived from: fmhlugqk.dpraethi@gmail... | fmhlugqk dpraethi | GRP_0 | probleme mit skype \r\n\r\nreceived from: fmhl... | German |
| 1679 | accound locked in ad | accound locked in ad | iczltbdf cmvjhyxl | GRP_0 | accound locked in ad accound locked in ad | English |
| 1680 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | ypcudwsf phvatzje | GRP_0 | error login on to the SID_34 system. error log... | English |
| 1681 | sales record | \n\nreceived from: rdfjsawg.zpmxgdcw@gmail.com... | rdfjsawg zpmxgdcw | GRP_44 | sales record \n\nreceived from: rdfjsawg.zpmxg... | English |
| 1682 | 5323 - credit limit revision for company tooli... | \r\n\r\nreceived from: rdfjsawg.zpmxgdcw@gmail... | yhmwxsqj ugnthxky | GRP_10 | 5323 - credit limit revision for company tooli... | English |
| 1683 | account is getting locked daily | account is getting locked daily | wqybuifo qlwfajcb | GRP_2 | account is getting locked daily account is get... | English |
| 1684 | unlock my erp account | \r\n\r\nreceived from: jqpvitdw.vitsrceq@gmail... | jqpvitdw vitsrceq | GRP_0 | unlock my erp account \r\n\r\nreceived from: j... | English |
| 1685 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | zdgxtfqs tibmhxcs | GRP_0 | error login on to the SID_34 system. error log... | English |
| 1686 | engineering tool / kpm project numbers not in ... | \r\n\r\nreceived from: ucphibmr.dfvkbtsj@gmail... | ucphibmr dfvkbtsj | GRP_25 | engineering tool / kpm project numbers not in ... | English |
| 1687 | lan connection in training room 3 not workig -... | lan connection in training room 3 not workig -... | jemfbnyk uicenhfp | GRP_28 | lan connection in training room 3 not workig -... | English |
| 1688 | HostName_97: disk space on e:\ label:dat1-Host... | HostName_97: disk space on e:\ label:dat1-Host... | dkmcfreg anwmfvlg | GRP_12 | HostName_97: disk space on e:\ label:dat1-Host... | English |
| 1689 | solid works issue: when trying to give print ,... | solid works issue: when trying to give print ,... | hratikvm sbwefglc | GRP_19 | solid works issue: when trying to give print ,... | English |
| 1690 | outlook configuration for new mobile handset | \r\n\r\nreceived from: ckswypji.vrucgqna@gmail... | ckswypji vrucgqna | GRP_0 | outlook configuration for new mobile handset \... | English |
| 1691 | help to change the windows password using pass... | help to change the windows password using pass... | wkzrenmj vsyctbzk | GRP_0 | help to change the windows password using pass... | English |
| 1692 | not able to login into ethics | \r\n\r\nreceived from: kxmidsga.zokivdfa@gmail... | kxmidsga zokivdfa | GRP_23 | not able to login into ethics \r\n\r\nreceived... | English |
| 1693 | reset passwords for eglavnhx uprodleq using pa... | the | eglavnhx uprodleq | GRP_17 | reset passwords for eglavnhx uprodleq using pa... | English |
| 1694 | job bwhrertran failed in job_scheduler at: 10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrertran failed in job_scheduler at: 10/... | English |
| 1695 | impacts awards login issue | impacts awards login issue | ouqzfajm pioneqcg | GRP_0 | impacts awards login issue impacts awards logi... | English |
| 1696 | mm:pur_req_ko assign for user: yeyhtung kimthy... | mm:pur_req_ko assign for user: yeyhtung kimthy... | kmnsvzuq euyvihzc | GRP_29 | mm:pur_req_ko assign for user: yeyhtung kimthy... | English |
| 1697 | user needs help to create delivery. | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_0 | user needs help to create delivery. \r\n\r\nre... | English |
| 1698 | job pp_EU_tool_netch_ap2 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap2 failed in job_schedul... | English |
| 1699 | error login on to the mii system. | error login on to the mii system.\r\n-verified... | ikxrlnvu cujyriwh | GRP_0 | error login on to the mii system. error login ... | English |
| 1700 | 账户被é”定 | 用户忘记密ç ,导致账户é”定 | neovalui kabpfvic | GRP_48 | 账户被é”定 用户忘记密ç ,导致账... | English |
| 1701 | 输入用户å和密ç åŽæ˜¾ç¤ºå‡ºé”™ | 登录时输入用户å和密ç åŽï¼Œæ˜¾ç¤ºç... | ofiglcaq hvcqtzel | GRP_48 | 输入用户å和密ç åŽæ˜¾ç¤ºå‡ºé”™ 登录... | English |
| 1702 | HostName_1002 : volume: j:\ label:dat5-HostNam... | HostName_1002 : volume: j:\ label:dat5-HostNam... | spxqmiry zpwgoqju | GRP_1 | HostName_1002 : volume: j:\ label:dat5-HostNam... | English |
| 1703 | amssm003 : volume: c:\ 94ef9088 on server: i... | amssm003 : volume: c:\ 94ef9088 on server: i... | spxqmiry zpwgoqju | GRP_12 | amssm003 : volume: c:\ 94ef9088 on server: i... | English |
| 1704 | 账户被é”定 | 用户账户é”å®šï¼Œè¯·æ±‚è§£é” | yvscpgax wdfxytzu | GRP_48 | 账户被é”定 用户账户é”å®šï¼Œè¯·æ±‚è§£é” | English |
| 1705 | unable to log in to collaboration_platform | unable to log in to collaboration_platform | advqtkeu uypkfisq | GRP_0 | unable to log in to collaboration_platform un... | English |
| 1706 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 1707 | ticket update on inc1559662 | ticket update on inplant_868551 | fumkcsji sarmtlhy | GRP_0 | ticket update on inc1559662 ticket update on ... | English |
| 1708 | no power on the laptop | no power on the laptop | khrflgcj zxojidhe | GRP_3 | no power on the laptop no power on the laptop | English |
| 1709 | erp logon | \n\nreceived from: hwrxutgm.fjlwmson@gmail.com... | hwrxutgm fjlwmson | GRP_0 | erp logon \n\nreceived from: hwrxutgm.fjlwmson... | English |
| 1710 | 产å“与仓库对ä¸ä¸Š | äº§å“æ‰€åœ¨ä»“库出错。 st6p -100/+325 ... | tvykmlex hcawjigf | GRP_48 | 产å“与仓库对ä¸ä¸Š äº§å“æ‰€åœ¨ä»“库出... | Danish |
| 1711 | å¼€æœºé»‘å± | 电脑å¯åЍåŽé»‘å±ï¼Œä¸»æœºæ— æŠ¥è¦ | ofiglcaq hvcqtzel | GRP_48 | å¼€æœºé»‘å± ç”µè„‘å¯åЍåŽé»‘å±ï¼Œä¸»æœºæ— ... | English |
| 1712 | outlooké‡å¤è¦æ±‚输入密ç | outlookå¯†ç æ¡†åå¤å¼¹å‡ºï¼Œè¦æ±‚输入密... | jtplaoui uvsihfpn | GRP_48 | outlooké‡å¤è¦æ±‚输入密ç outlookå¯†ç æ... | English |
| 1713 | unable to update passwords using password_mana... | unable to update passwords using password_mana... | gonflcmq wmptisvz | GRP_0 | unable to update passwords using password_mana... | English |
| 1714 | usa's file server not responding, appears to h... | usa's file server not responding, appears to h... | qedxiryu mdupjolb | GRP_12 | usa's file server not responding, appears to h... | English |
| 1715 | ticket update on inplant_868533 | ticket update on inplant_868533 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_868533 ticket update ... | English |
| 1716 | cannot send email to this customer | from: rolcgqhx ehndjmlv \nsent: tuesday, octob... | rolcgqhx ehndjmlv | GRP_26 | cannot send email to this customer from: rolcg... | English |
| 1717 | ticket update on ticket_no0448515 | ticket update on ticket_no0448515 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0448515 ticket updat... | English |
| 1718 | please reset my pass word for s&op. | please reset my pass word for s&op. | msarjyhi fpxdbeno | GRP_0 | please reset my pass word for s&op. please res... | English |
| 1719 | provide network access rights to fuydxemo fntm... | provide network access rights to fuydxemo fntm... | snkeuizv gsjndfuk | GRP_12 | provide network access rights to fuydxemo fntm... | English |
| 1720 | unable to take ethics course | unable to take ethics course | jgxclrzp jzeantui | GRP_0 | unable to take ethics course unable to take et... | English |
| 1721 | 2nd monitor is bright yellow & gtehdnyu once i... | 2nd monitor is bright yellow & gtehdnyu once i... | wvtsiucg bfpemgol | GRP_3 | 2nd monitor is bright yellow & gtehdnyu once i... | English |
| 1722 | discount form issue ; infopath | discount form issue ; infopath | szakvjwp imacjlzv | GRP_0 | discount form issue ; infopath discount form i... | English |
| 1723 | prtqi7307 and 7280 malfunction | prtqi7307 and 7280 malfunction | zovfeyjp xflunkim | GRP_3 | prtqi7307 and 7280 malfunction prtqi7307 and 7... | English |
| 1724 | need print to pdf software | need adobe professional or any software that h... | rhwsmefo tvphyura | GRP_3 | need print to pdf software need adobe professi... | English |
| 1725 | user was unable to open reporting_tool | user was unable to open reporting_tool | mwjcsiug fbwthoca | GRP_0 | user was unable to open reporting_tool user wa... | English |
| 1726 | the finance_app system is down. i need someon... | finance_app system is down. i need someone i... | ljyfsaox paxockls | GRP_55 | the finance_app system is down. i need someon... | English |
| 1727 | laptop cannont access companysecure or company... | i recently received a 16gb engineering laptop ... | ferxqvsm esmwxqlf | GRP_0 | laptop cannont access companysecure or company... | English |
| 1728 | account locked out | account locked out | lwgytuxq qspdztiw | GRP_0 | account locked out account locked out | English |
| 1729 | cyber security - phish uacyltoe hxgaycze repor... | cyber security - phish uacyltoe hxgaycze repor... | ugyothfz ugrmkdhx | GRP_2 | cyber security - phish uacyltoe hxgaycze repor... | English |
| 1730 | cannot access usa or usa collaboration_platfor... | when i try to open documents, i am prompted to... | hoqyxkat jbampwtd | GRP_0 | cannot access usa or usa collaboration_platfor... | English |
| 1731 | i get a mysterious java error on every boot of... | i get a mysterious java error on every boot of... | qxhdcnmj caflvjrn | GRP_3 | i get a mysterious java error on every boot of... | English |
| 1732 | \n\nreceived from: raifstow.gfeymtql@gmail.com... | raifstow gfeymtql | GRP_0 | email \n\nreceived from: raifstow.gfeymtql@gma... | English | |
| 1733 | cannot print on 11x17 paper on new xerox prtqx... | cannot print on 11x17 paper on new xerox prtqx... | reybfnmc jentcopr | GRP_3 | cannot print on 11x17 paper on new xerox prtqx... | English |
| 1734 | password reset and access to reporting_enginee... | password reset and access to reporting_enginee... | mwjcsiug fbwthoca | GRP_0 | password reset and access to reporting_enginee... | English |
| 1735 | skype meeting issues | during skype meetings, i have been unable to u... | erckhtzj tdmkgoie | GRP_0 | skype meeting issues during skype meetings, i ... | English |
| 1736 | die synchronisierung mit exchange activesync i... | from: lhejbwkc xbmyvnqf \r\nsent: tuesday, oct... | lhejbwkc xbmyvnqf | GRP_0 | die synchronisierung mit exchange activesync i... | German |
| 1737 | defect scanner/printer "vh42-plant manager/con... | from: byclpwmv esafrtbh \nsent: tuesday, octob... | byclpwmv esafrtbh | GRP_33 | defect scanner/printer "vh42-plant manager/con... | English |
| 1738 | ticket update on ticket_no0447085 | ticket update on ticket_no0447085 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0447085 ticket updat... | English |
| 1739 | is there cert open for the usa telephone syste... | \r\n\r\nreceived from: oxlqvika.zrvbahym@gmail... | oxlqvika zrvbahym | GRP_37 | is there cert open for the usa telephone syste... | English |
| 1740 | password reset | from: microsoft on behalf of company inc. [mai... | wjdatzyv bhkoldjv | GRP_0 | password reset from: microsoft on behalf of co... | English |
| 1741 | supply_chain_software password reset | from: ftnijxup sbltduco \nsent: tuesday, octob... | jmxrabzy dpyvjcxr | GRP_0 | supply_chain_software password reset from: ftn... | English |
| 1742 | customer unable to hear user on telephony_sof... | i am signed in to both telephony_software and ... | nibaotpy vmxathog | GRP_7 | customer unable to hear user on telephony_sof... | English |
| 1743 | monitoring_tool is has detected an event in th... | monitoring_tool is has detected an event in th... | rkupnshb gsmzfojw | GRP_14 | monitoring_tool is has detected an event in th... | English |
| 1744 | phone issue | phone issue | gzjtweph mnslwfqv | GRP_0 | phone issue phone issue | English |
| 1745 | windows password reset | windows password reset | cydotikj wpvhfijt | GRP_0 | windows password reset windows password reset | English |
| 1746 | issue with hr_tool | when i try to put in a vacation request in hr_... | mfvkxghn mzjasxqd | GRP_0 | issue with hr_tool when i try to put in a vaca... | English |
| 1747 | 7350 : audio issue | \nsummary:since outlook crashed yesterday the ... | wpdxlbhz etvzjmhx | GRP_0 | 7350 : audio issue \nsummary:since outlook cr... | English |
| 1748 | outlook issue : crashing and not responding | outlook issue : crashing and not responding | zxobmreq udikorhv | GRP_0 | outlook issue : crashing and not responding o... | English |
| 1749 | helped user with crm site and : | helped user with crm site and : \r\nalso helpe... | flhkxeqd gwidroap | GRP_0 | helped user with crm site and : helped user w... | English |
| 1750 | ticket update on : ticket_no0447258 | ticket update on : ticket_no0447258 | efbwiadp dicafxhv | GRP_0 | ticket update on : ticket_no0447258 ticket upd... | English |
| 1751 | password_management_tool password manager ? | \r\n\r\nreceived from: itjzudor.ybtmorxp@gmail... | itjzudor ybtmorxp | GRP_0 | password_management_tool password manager ? \r... | English |
| 1752 | vip 2: windows account unlock | vip 2: windows account unlock | tqjsmwvk arqoytbh | GRP_0 | vip 2: windows account unlock vip 2: windows a... | English |
| 1753 | unable to reply to emails | unable to reply to emails | zfburidj jmilguev | GRP_0 | unable to reply to emails unable to reply to e... | English |
| 1754 | outlook is unable to connect | \n\nreceived from: gacfhedw.iqustfzh@gmail.com... | gacfhedw iqustfzh | GRP_0 | outlook is unable to connect \n\nreceived from... | English |
| 1755 | i̇lt: outlook is unable to connect | \n\nreceived from: gacfhedw.iqustfzh@gmail.com... | gacfhedw iqustfzh | GRP_0 | i̇lt: outlook is unable to connect \n\nreceiv... | English |
| 1756 | password_management_tool password manager quer... | password_management_tool password manager quer... | yctvxumf qnajdofz | GRP_0 | password_management_tool password manager quer... | English |
| 1757 | please provide ip for our 5 users | å‘件人: white, ben <ben.white@hr_tool.com>\... | krnzfoct mnjbuedp | GRP_56 | please provide ip for our 5 users å‘件人: w... | English |
| 1758 | unable to open up emails | unable to open up emails | nsoikcyf jhybqael | GRP_0 | unable to open up emails unable to open up emails | English |
| 1759 | unable to make outbound calls from usa using s... | unable to make outbound calls from usa using s... | pzsvjman podylbmj | GRP_37 | unable to make outbound calls from usa using s... | English |
| 1760 | vip 1 sending email on behalf offinance_vip1 | \n\nreceived from: lpoebzsc.grknswyo@gmail.com... | lpoebzsc grknswyo | GRP_26 | vip 1 sending email on behalf offinance_vip1 \... | English |
| 1761 | outlook freezes | outlook freezes. | techruxg wasrvkuz | GRP_0 | outlook freezes outlook freezes. | English |
| 1762 | received a message when trying to open a websi... | asking me to download a new browser to continue. | hvskpglx bpsfxmon | GRP_0 | received a message when trying to open a websi... | English |
| 1763 | johthryu's erp inbox is not updating since 6th... | johthryu's erp inbox is not updating since 6th... | bzxljkoy rvoiqthl | GRP_13 | johthryu's erp inbox is not updating since 6th... | English |
| 1764 | getting virus prompt from sep | getting virus prompt from sep\r\n\r\n | nwzhlktu plktredg | GRP_0 | getting virus prompt from sep getting virus pr... | English |
| 1765 | circuit outage: usa company, mpls router is do... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_8 | circuit outage: usa company, mpls router is do... | English |
| 1766 | handscanner an pc evhw8114203 bei r208 funktio... | handscanner an pc evhw8114203 bei r208 funktio... | ljxzyriq zqxkrcev | GRP_33 | handscanner an pc evhw8114203 bei r208 funktio... | German |
| 1767 | wg: visio software request | \r\n\r\nreceived from: przcxbml.vnjdghui@gmail... | przcxbml vnjdghui | GRP_28 | wg: visio software request \r\n\r\nreceived fr... | English |
| 1768 | setup we78 \ewewx200295 \lxfnwyuv bqmjyprz | setup we78 \ewewx200295 \lxfnwyuv bqmjyprz | lxfnwyuv bqmjyprz | GRP_24 | setup we78 \ewewx200295 \lxfnwyuv bqmjyprz set... | English |
| 1769 | setup we78 \ewew8323646 \lxfnwyuv bqmjyprz | setup we78 \ewew8323646 \lxfnwyuv bqmjyprz | lxfnwyuv bqmjyprz | GRP_24 | setup we78 \ewew8323646 \lxfnwyuv bqmjyprz set... | English |
| 1770 | momitor defekt \niptbwdq csenjruz | momitor defekt \niptbwdq csenjruz | niptbwdq csenjruz | GRP_24 | momitor defekt \niptbwdq csenjruz momitor defe... | Hungarian |
| 1771 | hip 10 ersatz- festplatte erstellen! | hip 10 ersatz- festplatte erstellen! | kuemonqi rtexzlvh | GRP_33 | hip 10 ersatz- festplatte erstellen! hip 10 er... | German |
| 1772 | neuen ordner im info von EU_tool anlegen (plea... | \r\n\r\nreceived from: qavdrpfu.ylfwnbkr@gmail... | qavdrpfu ylfwnbkr | GRP_25 | neuen ordner im info von EU_tool anlegen (plea... | English |
| 1773 | s&op password | help desk,\r\nplease check stefyty's account i... | ftnijxup sbltduco | GRP_0 | s&op password help desk,\r\nplease check stefy... | English |
| 1774 | replizieren | \r\n\r\nreceived from: trgqbeax.hfyzudql@gmail... | trgqbeax hfyzudql | GRP_0 | replizieren \r\n\r\nreceived from: trgqbeax.hf... | German |
| 1775 | network outage: engineering_toolkuznetsk wareh... | what type of outage: ____x_network _____c... | utyeofsk rdyzpwhi | GRP_8 | network outage: engineering_toolkuznetsk wareh... | English |
| 1776 | HostName_1132: oracle finance_app financial ma... | HostName_1132: oracle finance_app financial m... | rkupnshb gsmzfojw | GRP_12 | HostName_1132: oracle finance_app financial ma... | English |
| 1777 | unable to launch citrix. | unable to launch citrix. error message atttach... | izhyoqms wecyhadn | GRP_12 | unable to launch citrix. unable to launch citr... | English |
| 1778 | job Job_505 failed in job_scheduler at: 10/11/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_505 failed in job_scheduler at: 10/11/... | English |
| 1779 | crm dynamics - open opportunities from lvdyrqf... | \n\nreceived from: ctzykflo.evzbhgru@gmail.com... | ctzykflo evzbhgru | GRP_40 | crm dynamics - open opportunities from lvdyrqf... | English |
| 1780 | barcode scanner defekt \paternoster | barcode scanner defekt \paternoster | xwirzvda okhyipgr | GRP_24 | barcode scanner defekt \paternoster barcode sc... | English |
| 1781 | job Job_593 failed in job_scheduler at: 10/11/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/11/... | English |
| 1782 | reset erp password | \n\nreceived from: ztswnaom.lrapiwex@gmail.com... | ztswnaom lrapiwex | GRP_0 | reset erp password \n\nreceived from: ztswnaom... | English |
| 1783 | please check jeffrghryey's account in supply_c... | help desk,\r\nplease check jeffrghryey's accou... | ftnijxup sbltduco | GRP_0 | please check jeffrghryey's account in supply_c... | English |
| 1784 | einstellungen am alfa set messgerät überprü... | am rollomatic alfa set messgerät müssen die ... | hwfckjzs abxdmyho | GRP_33 | einstellungen am alfa set messgerät überprü... | German |
| 1785 | reset the password for eglavnhx uprodleq on er... | bitte passwort für benutzer "franhtyuj1" zurÃ... | eglavnhx uprodleq | GRP_0 | reset the password for eglavnhx uprodleq on er... | English |
| 1786 | power outage: india plant - india () telecom_v... | what type of outage: _____network ___x__c... | utyeofsk rdyzpwhi | GRP_8 | power outage: india plant - india () telecom_v... | English |
| 1787 | po number 5615755997 has been posted gr with i... | po number 5615755997 has been posted gr with i... | ihfkwzjd erbxoyqk | GRP_10 | po number 5615755997 has been posted gr with i... | English |
| 1788 | please check brook's account in supply_chain_s... | please check brook's account in supply_chain_s... | mrzgjdal whnldmef | GRP_0 | please check brook's account in supply_chain_s... | English |
| 1789 | erp schulung raum :7 kann beamer nicht verbinden | erp schulung raum :7 kann beamer nicht verbinden | dkinobsv wymgzcrh | GRP_28 | erp schulung raum :7 kann beamer nicht verbin... | German |
| 1790 | passwordproblems | \n\nreceived from: agjzikpf.nhfrbxek@gmail.com... | agjzikpf nhfrbxek | GRP_0 | passwordproblems \n\nreceived from: agjzikpf.n... | German |
| 1791 | interface 1/0/8 and 1/0/12 are down on switch ... | interface 1/0/8 and 1/0/12 are down on switch ... | dkmcfreg anwmfvlg | GRP_8 | interface 1/0/8 and 1/0/12 are down on switch ... | English |
| 1792 | circuit outage:germany: company-eu-deu-erkheim... | what type of outage: _____network _____x ... | utyeofsk rdyzpwhi | GRP_8 | circuit outage:germany: company-eu-deu-erkheim... | English |
| 1793 | eilt !!! monitor defekt | monitor defekt \r\nfuer hr. tjzohmve wusgaozx\... | qfwnbutk jtenbvkq | GRP_28 | eilt !!! monitor defekt monitor defekt \r\nfu... | English |
| 1794 | erp gui login profile missing . | erp gui login profile missing . erp cannot login. | zmkitbsh bxsyaipz | GRP_31 | erp gui login profile missing . erp gui login ... | English |
| 1795 | device does not properly boot up windows - sys... | device does not properly boot up windows - sys... | qkxewzjh outjqilv | GRP_28 | device does not properly boot up windows - sys... | English |
| 1796 | pls. help to run out dn under sto#5019320060,thx! | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_6 | pls. help to run out dn under sto#5019320060,t... | English |
| 1797 | job Job_1148 failed in job_scheduler at: 10/11... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 10/11... | English |
| 1798 | msd crm | please provide details of the issue.\r\n\r\ni'... | atlwdyej vtlhzbix | GRP_15 | msd crm please provide details of the issue.\r... | English |
| 1799 | job Job_1141 failed in job_scheduler at: 10/11... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1141 failed in job_scheduler at: 10/11... | English |
| 1800 | job Job_1141 failed in job_scheduler at: 10/10... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1141 failed in job_scheduler at: 10/10... | English |
| 1801 | kis_zebra print | \r\n\r\nreceived from: gkwcxzum.answkqpe@gmail... | gkwcxzum answkqpe | GRP_18 | kis_zebra print \r\n\r\nreceived from: gkwcxzu... | English |
| 1802 | login issue | login issue\r\n-verified user details.(employe... | quxtnlgd tqnjyzsm | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 1803 | job bkwin_HostName_770_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkwin_HostName_770_inc failed in job_sched... | English |
| 1804 | job pp_EU_tool_netch_keheu2 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_keheu2 failed in job_sche... | English |
| 1805 | wifi ä¸èƒ½åœ¨çº¿ | wifi ä¸èƒ½åœ¨çº¿ | qnvkwalx dfjtxigl | GRP_30 | wifi ä¸èƒ½åœ¨çº¿ wifi ä¸èƒ½åœ¨çº¿ | English |
| 1806 | job SID_56filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_56filesys failed in job_scheduler at: ... | English |
| 1807 | æ— æ³•åˆ›å»ºskype会议,outlook 日历上é¢... | æ— æ³•åˆ›å»ºskype会议,outlook 日历上é¢... | dqovxreg qswvlctg | GRP_31 | æ— æ³•åˆ›å»ºskype会议,outlook 日历上é¢... | English |
| 1808 | 我的outlook 打å°é‚®ä»¶è®¾ç½®çºµå‘,打å‡... | 我的outlook 打å°é‚®ä»¶è®¾ç½®çºµå‘,打å‡... | dizquolf hlykecxa | GRP_31 | 我的outlook 打å°é‚®ä»¶è®¾ç½®çºµå‘,打å‡... | English |
| 1809 | posed inwarehouse_tool no.6223538861 cannot be... | we posed po5616691482 in miro and erp issued n... | dizquolf hlykecxa | GRP_10 | posed inwarehouse_tool no.6223538861 cannot be... | English |
| 1810 | carrier orders not processing. | carrier orders not processing labels through s... | tmyeqika hfudpeot | GRP_18 | carrier orders not processing. carrier orders ... | English |
| 1811 | unable to connect to glog-old to search old data | please assign this ticket to keyhtyvin toriayt... | mfvkxghn mzjasxqd | GRP_3 | unable to connect to glog-old to search old da... | English |
| 1812 | sales orders are not updating with correct del... | this is in reference to so# 35086652\r\n\r\nth... | amunklhx bvrachko | GRP_6 | sales orders are not updating with correct del... | English |
| 1813 | need ticket | \r\n\r\nreceived from: dqplrwoy.cutpwjie@gmail... | dqplrwoy cutpwjie | GRP_6 | need ticket \r\n\r\nreceived from: dqplrwoy.cu... | English |
| 1814 | problem w/downloading .dxf files- error "certi... | contact sitmzuje ckrpsabm \nunable to save/dow... | sitmzuje ckrpsabm | GRP_3 | problem w/downloading .dxf files- error "certi... | English |
| 1815 | password reset | from: microsoft on behalf of company inc. [mai... | xbfcitlh ntulmcpq | GRP_0 | password reset from: microsoft on behalf of co... | English |
| 1816 | unable to take screenshot | unable to take screenshot | rolcgqhx ehndjmlv | GRP_0 | unable to take screenshot unable to take scree... | English |
| 1817 | vip 2 // reset the password for buyoipdj fceym... | only need password rest for the phone in my of... | buyoipdj fceymwtz | GRP_7 | vip 2 // reset the password for buyoipdj fceym... | English |
| 1818 | unable to open a website | unable to open a website | keqvyfzw qwbohdxg | GRP_0 | unable to open a website unable to open a website | English |
| 1819 | printer configure | 64 bit printer driver installation on new laptop | uvrbhlnt bjrmalzi | GRP_19 | printer configure 64 bit printer driver instal... | English |
| 1820 | customers not able to call into the company to... | i just received a call from our sales person b... | amunklhx bvrachko | GRP_8 | customers not able to call into the company to... | English |
| 1821 | password reset from password_management_tool | password reset from password_management_tool | plqbesvo uopaexic | GRP_0 | password reset from password_management_tool p... | English |
| 1822 | erp SID_37 password reset | erp SID_37 password reset | muaqyliw sndypzlb | GRP_0 | erp SID_37 password reset erp SID_37 password ... | English |
| 1823 | issues with outlook // not responding | issues with outlook // not responding | krpvcmzg gyhfalmb | GRP_0 | issues with outlook // not responding issues w... | English |
| 1824 | erp SID_34 password reset | erp SID_34 password reset | wvqgbdhm fwchqjor | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 1825 | outlook not working correctly | outlook not working correctly & freezing | hvstqfwc buvsrnze | GRP_0 | outlook not working correctly outlook not work... | English |
| 1826 | msd crm - outlook stops responding | we ensured ipv6 was unchecked and that network... | rwyfmclk ugbvnwtq | GRP_0 | msd crm - outlook stops responding we ensured ... | English |
| 1827 | ess password reset | ess password reset | uhrixnta odueantp | GRP_0 | ess password reset ess password reset | English |
| 1828 | issue with outlook and vpn | issue with outlook and vpn | mdbegvct dbvichlg | GRP_0 | issue with outlook and vpn issue with outlook ... | English |
| 1829 | ich kann meinen vpn nicht öffnen | ich kann meinen vpn nicht öffnen | anivdcor rbmfhiox | GRP_0 | ich kann meinen vpn nicht öffnen ich kann mei... | German |
| 1830 | unable to open records in engineering_tool. | engineering tool is downloading reports in .kp... | oujvmgeq spobcflw | GRP_3 | unable to open records in engineering_tool. en... | English |
| 1831 | password reset from password_management_tool | password reset from password_management_tool | gbwviklo ukwijqtm | GRP_0 | password reset from password_management_tool p... | English |
| 1832 | knocked off vpn/ unable to get on na remote | i was knocked off vpn at about 11:55am. now i... | gakceqyb edrjthvo | GRP_0 | knocked off vpn/ unable to get on na remote i ... | English |
| 1833 | etime not working | name:esqcuwbg gdcuhzqw\nlanguage:\nbrowser:mic... | esqcuwbg gdcuhzqw | GRP_0 | etime not working name:esqcuwbg gdcuhzqw\nlang... | English |
| 1834 | reset passwords for hybiaxlk lawptzir using pa... | the | hybiaxlk lawptzir | GRP_17 | reset passwords for hybiaxlk lawptzir using pa... | English |
| 1835 | job Job_370 failed in job_scheduler at: 10/78.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_370 failed in job_scheduler at: 10/78.... | English |
| 1836 | bgflmyar.xgufkidq@gmail.com | bgflmyar.xgufkidq@gmail.com wanted to check if... | olckhmvx pcqobjnd | GRP_0 | bgflmyar.xgufkidq@gmail.com bgflmyar.xgufkidq@... | English |
| 1837 | erp front end missing | i noticed that my erp front end programdnty se... | ferxqvsm esmwxqlf | GRP_0 | erp front end missing i noticed that my erp fr... | English |
| 1838 | unable to access erp | unable to access erp \n\nuser contacted for an... | edqylkio ykomciav | GRP_2 | unable to access erp unable to access erp \n\... | English |
| 1839 | unable to share calendar | unable to share calendar | vgtpkjhn flwsytik | GRP_0 | unable to share calendar unable to share calendar | English |
| 1840 | outlook not launching | outlook not launching | hybiaxlk lawptzir | GRP_0 | outlook not launching outlook not launching | English |
| 1841 | zebra pinter not working | \nname:lzapwbnc yrjekzqv\nlanguage:\nbrowser:m... | lzapwbnc yrjekzqv | GRP_0 | zebra pinter not working \nname:lzapwbnc yrjek... | English |
| 1842 | blank call // loud noise // gso | blank call // loud noise // gso | rbozivdq gmlhrtvp | GRP_0 | blank call // loud noise // gso blank call // ... | English |
| 1843 | there a way to access hr_tool e-time from mobi... | name:bgflmyar xgufkidq\nlanguage:\nbrowser:mic... | bgflmyar xgufkidq | GRP_0 | there a way to access hr_tool e-time from mobi... | English |
| 1844 | unable to open a website | unable to open a website | bsujizqk zmlfkengineering_tool | GRP_0 | unable to open a website unable to open a website | English |
| 1845 | company center not pulling information from erp | i have several company center accounts that ar... | qcfmxgid jvxanwre | GRP_21 | company center not pulling information from er... | English |
| 1846 | vpn | vpn : vpn is working. | dhraxivp enmfvuqb | GRP_0 | vpn vpn : vpn is working. | English |
| 1847 | erp SID_34 locked out. | erp SID_34 locked out. | tfzlohik esibqtvy | GRP_0 | erp SID_34 locked out. erp SID_34 locked out. | English |
| 1848 | erp SID_34 and erp SID_1 password reset | erp SID_34 and erp SID_1 password reset | bixvmnar glakoprc | GRP_0 | erp SID_34 and erp SID_1 password reset erp SI... | English |
| 1849 | ethics flash player issue. | ethics flash player issue. | lwgytuxq qspdztiw | GRP_0 | ethics flash player issue. ethics flash player... | English |
| 1850 | reset passwords for fylrosuk kedgmiul using pa... | the | fylrosuk kedgmiul | GRP_17 | reset passwords for fylrosuk kedgmiul using pa... | English |
| 1851 | reset passwords for fylrosuk kedgmiul using pa... | the | fylrosuk kedgmiul | GRP_17 | reset passwords for fylrosuk kedgmiul using pa... | English |
| 1852 | please to extend the user validation to develo... | please to extend the user validation to develo... | gdsjrxwl pzhyxdiq | GRP_2 | please to extend the user validation to develo... | English |
| 1853 | vpn is not working. | vpn is not working. | uyrpdvoq mbzevtcx | GRP_0 | vpn is not working. vpn is not working. | English |
| 1854 | us_plant (plant_269) - servers not connecting | \r\n\r\nreceived from: dpuifqeo.eglwsfkn@gmail... | dpuifqeo eglwsfkn | GRP_12 | us_plant (plant_269) - servers not connecting ... | English |
| 1855 | printer problem / issue information -- zebra l... | please complete all required questions below. ... | okfmbqur efzukjsa | GRP_0 | printer problem / issue information -- zebra l... | English |
| 1856 | reset the password for kslhobgj cyhvefna on ot... | reset the password for kslhobgj cyhvefna on ot... | kslhobgj cyhvefna | GRP_7 | reset the password for kslhobgj cyhvefna on ot... | English |
| 1857 | o drive missing | o drive missing | xzupryaf vlbikhsm | GRP_0 | o drive missing o drive missing | English |
| 1858 | dw0080 unlock in erp SID_34 | dw0080 unlock in erp SID_34 | rbozivdq gmlhrtvp | GRP_0 | dw0080 unlock in erp SID_34 dw0080 unlock in e... | English |
| 1859 | unable to reach the collaboration_platform or crm | \r\n\r\nreceived from: yorgbnpa.ndigthpj@gmail... | yorgbnpa ndigthpj | GRP_16 | unable to reach the collaboration_platform or ... | English |
| 1860 | s | s | gzjtweph mnslwfqv | GRP_0 | s s | English |
| 1861 | qlhmawgi sgwipoxn unlock and password reset ip... | ipglathybel qlhmawgi sgwipoxn password reset i... | clgfntoe rhtmnzsk | GRP_2 | qlhmawgi sgwipoxn unlock and password reset ip... | English |
| 1862 | network outage:germany, germany site hard down... | what type of outage: __x___network _____c... | bozdftwx smylqejw | GRP_8 | network outage:germany, germany site hard down... | English |
| 1863 | outlook send/receive progress error | i am unable to send from our ebusiness@company... | zsulhnxd gexdzoqy | GRP_0 | outlook send/receive progress error i am unabl... | English |
| 1864 | unable to launch outlook | unable to launch outlook | cmplfihy tajmzhfl | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 1865 | zebra printer is not working after some updates | hello< when i try to print on zebra this error... | lzapwbnc yrjekzqv | GRP_0 | zebra printer is not working after some update... | English |
| 1866 | erp SID_1 account unlock and password reset | erp SID_1 account unlock and password reset | wvqgbdhm fwchqjor | GRP_0 | erp SID_1 account unlock and password reset er... | English |
| 1867 | probleme mit laser02 \pfjwinbg ljtzbdqg | probleme mit laser02 \pfjwinbg ljtzbdqg | pfjwinbg ljtzbdqg | GRP_24 | probleme mit laser02 \pfjwinbg ljtzbdqg proble... | Danish |
| 1868 | probleme mit lasplant_119 \pfjwinbg ljtzbdqg | probleme mit lasplant_119 \pfjwinbg ljtzbdqg | pfjwinbg ljtzbdqg | GRP_24 | probleme mit lasplant_119 \pfjwinbg ljtzbdqg p... | Danish |
| 1869 | archiving_tool client log file | \r\n\r\nreceived from: qjtbrvfy.avwqmhsp@gmail... | qjtbrvfy avwqmhsp | GRP_0 | archiving_tool client log file \r\n\r\nreceive... | English |
| 1870 | plant_269 - erp error | \n\nreceived from: dpuifqeo.eglwsfkn@gmail.com... | dpuifqeo eglwsfkn | GRP_0 | plant_269 - erp error \n\nreceived from: dpui... | English |
| 1871 | user vvhthyoffc blocked (citrix) | user vvbthryhn is blocked for citrix access, p... | wjdatzyv bhkoldjv | GRP_0 | user vvhthyoffc blocked (citrix) user vvbthryh... | English |
| 1872 | rücksetzung der passwörter für accounts vvw... | rücksetzung der passwörter für accounts vvw... | yvjdluhk hmcpvtdj | GRP_0 | rücksetzung der passwörter für accounts vvw... | German |
| 1873 | lean event can not be added. | lean event can not be added. | sclfndob gnibctwu | GRP_0 | lean event can not be added. lean event can no... | English |
| 1874 | scm_software | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | scm_software \n\nreceived from: oetlgbfw.bsct... | English |
| 1875 | usa: dell rack system - bfr78x1 hardware compo... | iom sensor, chassis and internal power supply ... | mnlazfsr mtqrkhnx | GRP_12 | usa: dell rack system - bfr78x1 hardware compo... | English |
| 1876 | zebra printer issue | label printer not working. error "connection t... | qasdhyzm yuglsrwx | GRP_8 | zebra printer issue label printer not working.... | English |
| 1877 | zebra printer issue | label printer not working. error "connection t... | xrmvbenu pynjmqci | GRP_0 | zebra printer issue label printer not working.... | English |
| 1878 | submitted filled up engineering_tool on system | i created engineering_tool and filled up all d... | fhcmnxat geazkjcs | GRP_25 | submitted filled up engineering_tool on system... | English |
| 1879 | erp crm - instant timeout | user: kubyhtuaa\nissue: when working with erp ... | yjqvpkgn qbshvpje | GRP_15 | erp crm - instant timeout user: kubyhtuaa\niss... | English |
| 1880 | zebra printer issue | label printer not working. error "connection t... | ayvqmkdx mzjcslnq | GRP_0 | zebra printer issue label printer not working.... | English |
| 1881 | set abc code erp 81807016 under me in crm. | set abc code erp 81807016 under me in crm. in ... | srhoeyza rkhuldgq | GRP_40 | set abc code erp 81807016 under me in crm. se... | English |
| 1882 | i have been locked out of my accounts | \n\nreceived from: plqbesvo.uopaexic@gmail.com... | plqbesvo uopaexic | GRP_0 | i have been locked out of my accounts \n\nrece... | English |
| 1883 | job Job_593 failed in job_scheduler at: 10/10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/10/... | English |
| 1884 | account locked in ad | account locked in ad | jehlsagi dhkfuswg | GRP_0 | account locked in ad account locked in ad | English |
| 1885 | automatische anmeldung | wenn ich outlook aufrufe, will der rechner gle... | dhraxivp enmfvuqb | GRP_0 | automatische anmeldung wenn ich outlook aufruf... | German |
| 1886 | i cannot access the dob report. i was able to... | i cannot access the dob report. i was able to... | vsbtygin oufhtbas | GRP_57 | i cannot access the dob report. i was able to... | English |
| 1887 | printer ag99 - printing ink empty | \r\n\r\nreceived from: przcxbml.vnjdghui@gmail... | przcxbml vnjdghui | GRP_28 | printer ag99 - printing ink empty \r\n\r\nrece... | English |
| 1888 | not able to connect to vpn | not able to connect to vpn | mtzjkhpi sfcmyjzx | GRP_0 | not able to connect to vpn not able to connect... | English |
| 1889 | unable process break bulk (sto) | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_18 | unable process break bulk (sto) \n\nreceived f... | English |
| 1890 | abholen alte it equipment (2x cad ws nd monito... | abholen alte it equipment (2x cad ws nd monito... | umykjweg jpwrfuhk | GRP_24 | abholen alte it equipment (2x cad ws nd monito... | English |
| 1891 | reset password | \n\nreceived from: rugdyxqh.aqvocmuy@gmail.com... | rugdyxqh aqvocmuy | GRP_0 | reset password \n\nreceived from: rugdyxqh.aqv... | English |
| 1892 | bugs in to do list _operator dashbankrd | please find the attachment for the issue detail. | yrogbkts lmurgdcf | GRP_41 | bugs in to do list _operator dashbankrd please... | English |
| 1893 | network outage:juarez-dmvpn-1811-rtr01 is down... | what type of outage: ___x__network _____c... | bozdftwx smylqejw | GRP_8 | network outage:juarez-dmvpn-1811-rtr01 is down... | English |
| 1894 | eu remote fails to connect ... na remote termi... | i'm trying to connect to eu remote, but only g... | ctvaejbo mjcerqwo | GRP_0 | eu remote fails to connect ... na remote termi... | English |
| 1895 | erp password change with password_management_t... | hi gso,\r\ni tried thrgxqsuojr xwbesorfs to re... | vykbweum hpvctbse | GRP_0 | erp password change with password_management_t... | English |
| 1896 | install hardcopy \ewew8323647 \rhaycqjg arcgonvy | install hardcopy \ewew8323647 \rhaycqjg arcgonvy | rhaycqjg arcgonvy | GRP_24 | install hardcopy \ewew8323647 \rhaycqjg arcgon... | Nauru |
| 1897 | can not connect to the hana server via us vpn | i'm using the us vpn as the european one is do... | hldifrbv gadyktfz | GRP_0 | can not connect to the hana server via us vpn ... | English |
| 1898 | circuit outage: germany ,erkheim-dmvpn-2821-rt... | what type of outage: _____network _ x___c... | bozdftwx smylqejw | GRP_8 | circuit outage: germany ,erkheim-dmvpn-2821-rt... | English |
| 1899 | probleme mit we110 \die druckerwarteschlange w... | probleme mit we110 \die druckerwarteschlange w... | fdyietau dvsyxwbu | GRP_24 | probleme mit we110 \die druckerwarteschlange w... | German |
| 1900 | paper jam for insert printer | paper jam for insert printer | tcoyfeph cqrdaunw | GRP_31 | paper jam for insert printer paper jam for in... | English |
| 1901 | different problems - please reinstall eagw8111... | different problems - please reinstall eagw8111... | jkshpurg isjgbdch | GRP_28 | different problems - please reinstall eagw8111... | English |
| 1902 | enter and edit the link | vroxskje.bixtmefd@gmail.com need to enter and ... | vroxskje bixtmefd | GRP_0 | enter and edit the link vroxskje.bixtmefd@gmai... | English |
| 1903 | vpn not getting log in | name:vithrkas \nlanguage:\nbrowser:microsoft i... | xiwegtas ygrfbzon | GRP_0 | vpn not getting log in name:vithrkas \nlanguag... | English |
| 1904 | i cant have preview of pictures in explorer. i... | i cant have preview of pictures in explorer. i... | cqwtksbu tgxockrn | GRP_28 | i cant have preview of pictures in explorer. i... | English |
| 1905 | host HostName_1178 is disconnected in vsphere | host HostName_1178 is disconnected in vsphere | bozdftwx smylqejw | GRP_12 | host HostName_1178 is disconnected in vsphere ... | English |
| 1906 | vpn connection issue | \r\n\r\nreceived from: qwvpgayb.amniujsh@gmail... | qwvpgayb amniujsh | GRP_0 | vpn connection issue \r\n\r\nreceived from: qw... | English |
| 1907 | erp password & password -- reg | \n\nreceived from: xdvwitpm.zscxqdho@gmail.com... | xdvwitpm zscxqdho | GRP_0 | erp password & password -- reg \n\nreceived fr... | English |
| 1908 | job Job_481 failed in job_scheduler at: 10/10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_481 failed in job_scheduler at: 10/10/... | English |
| 1909 | india pbx awyl8328998 is down since 2:56am et ... | india awyl8328998 is down since 2:56am et on 1... | dkmcfreg anwmfvlg | GRP_8 | india pbx awyl8328998 is down since 2:56am et ... | English |
| 1910 | add user ashtusis pyhuule (phufsav) to active ... | add user ashtusis pyhuule (phufsav) to active ... | skocrqdw pexcdfao | GRP_2 | add user ashtusis pyhuule (phufsav) to active ... | English |
| 1911 | germany, germany:gigabitethernet2/0/17 on ger... | germany, germany:gigabitethernet2/0/17 on ger... | bozdftwx smylqejw | GRP_8 | germany, germany:gigabitethernet2/0/17 on ger... | English |
| 1912 | reset password erp SID_34 | \n\nreceived from: zuxcfonv.nyhpkrbe@gmail.com... | zuxcfonv nyhpkrbe | GRP_0 | reset password erp SID_34 \n\nreceived from: z... | English |
| 1913 | reeset password | reeset password | mdvlkbac uhefoqtg | GRP_31 | reeset password reeset password | English |
| 1914 | skype läd auf dem pc nicht. | skype wird nicht vom browser geladen auch nich... | qpbwfvdm ytlnodrv | GRP_0 | skype läd auf dem pc nicht. skype wird nicht ... | German |
| 1915 | help to change the windows password using pass... | help to change the windows password using pass... | tvrigdbl mjsepfda | GRP_0 | help to change the windows password using pass... | English |
| 1916 | unlock erp SID_34 | \r\n\r\nreceived from: zuxcfonv.nyhpkrbe@gmail... | zuxcfonv nyhpkrbe | GRP_0 | unlock erp SID_34 \r\n\r\nreceived from: zuxc... | English |
| 1917 | skype not work. | \r\n\r\nreceived from: yjwivxsh.fcetobrj@gmail... | yjwivxsh fcetobrj | GRP_0 | skype not work. \r\n\r\nreceived from: yjwivxs... | English |
| 1918 | no vpn access - pls help | \n\nreceived from: luagmhds.iymwcelx@gmail.com... | luagmhds iymwcelx | GRP_0 | no vpn access - pls help \n\nreceived from: lu... | English |
| 1919 | germany can't connect using vpn (f5 networks) | phone email iewnguxv.bufwxeiy@gmail.com\n\nge... | iewnguxv bufwxeiy | GRP_0 | germany can't connect using vpn (f5 networks) ... | English |
| 1920 | job Job_1148 failed in job_scheduler at: 10/10... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 10/10... | English |
| 1921 | cant connect to the network.mobile hot spot al... | cant connect to the network.mobile hot spot al... | otpkzifh gywinoml | GRP_19 | cant connect to the network.mobile hot spot al... | English |
| 1922 | EU_tool, chargenverwaltung, pdv | die systeme EU_tool, chargenverwaltung, pdv la... | hwxqoijt cotsgwrj | GRP_25 | EU_tool, chargenverwaltung, pdv die systeme EU... | German |
| 1923 | server HostName_1233 was down | c:\users\virakv>ping HostName_1233.company.com... | kbnfxpsy gehxzayq | GRP_12 | server HostName_1233 was down c:\users\virakv>... | English |
| 1924 | unable to generate sto as per purrqs 412188952... | unable to generate sto as per purrqs 412188952... | tqfnalpj qyoscnge | GRP_29 | unable to generate sto as per purrqs 412188952... | English |
| 1925 | job Job_1141 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1141 failed in job_scheduler at: 10/09... | English |
| 1926 | vpn issue | \r\n\r\nreceived from: ygkzwsud.cvjgkxws@gmail... | ygkzwsud cvjgkxws | GRP_0 | vpn issue \r\n\r\nreceived from: ygkzwsud.cvjg... | English |
| 1927 | cannot start outlook email | \r\n\r\nreceived from: ynsqjehx.kqgrsawl@gmail... | ynsqjehx kqgrsawl | GRP_0 | cannot start outlook email \r\n\r\nreceived fr... | English |
| 1928 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 1929 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 1930 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 1931 | laptop cannot connect companysecure wifi network. | laptop cannot connect companysecure wifi network. | mqbxwpfn uclrqfxa | GRP_31 | laptop cannot connect companysecure wifi netwo... | English |
| 1932 | server HostName_1274 is not reachable | c:\users\virakv>ping HostName_1274\r\n\r\nping... | tkbuhcnq kdheauqo | GRP_12 | server HostName_1274 is not reachable c:\users... | English |
| 1933 | please help for vpn connection, try to contact... | name:wanayht\nlanguage:\nbrowser:microsoft int... | xztveoqs zyrnqiav | GRP_0 | please help for vpn connection, try to contact... | English |
| 1934 | dell:7350: laptop will not stay connected to t... | name:stgyott gdhdyrham\nlanguage:\nbrowser:mic... | kizybvpj hisaobfx | GRP_0 | dell:7350: laptop will not stay connected to t... | English |
| 1935 | msd crm--outlook 一直显示æ£åœ¨å¯åŠ¨ï¼Œä¸... | please provide details of the issue.\r\noutloo... | loesgbfh tknsuhvw | GRP_31 | msd crm--outlook 一直显示æ£åœ¨å¯åŠ¨ï¼Œä¸... | English |
| 1936 | erp SID_34 password | \r\n\r\nreceived from: zuxcfonv.nyhpkrbe@gmail... | zuxcfonv nyhpkrbe | GRP_0 | erp SID_34 password \r\n\r\nreceived from: zu... | English |
| 1937 | hpqc installation | \r\n\r\nreceived from: elixsfvu.pxwbjofl@gmail... | elixsfvu pxwbjofl | GRP_0 | hpqc installation \r\n\r\nreceived from: elixs... | English |
| 1938 | vpn not working for rjeyfxlg ltfskygw | 219581173[‎10/‎10/‎2016 5:01 am] lzspyjk... | lzspyjki smdbqnef | GRP_0 | vpn not working for rjeyfxlg ltfskygw 21958117... | English |
| 1939 | job Job_1306 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1306 failed in job_scheduler at: 10/09... | English |
| 1940 | job Job_461 failed in job_scheduler at: 10/09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_461 failed in job_scheduler at: 10/09/... | English |
| 1941 | node HostName_1195 located at usa is down sinc... | node HostName_1195 located at usa is down sinc... | spxqmiry zpwgoqju | GRP_8 | node HostName_1195 located at usa is down sinc... | English |
| 1942 | HostName_1238:application plm - dsc file on no... | HostName_1238:application plm - dsc file on no... | jyoqwxhz clhxsoqy | GRP_14 | HostName_1238:application plm - dsc file on no... | English |
| 1943 | HostName_521:application plm conversion server... | HostName_521:application plm conversion server... | jyoqwxhz clhxsoqy | GRP_14 | HostName_521:application plm conversion server... | English |
| 1944 | job Job_1393 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1393 failed in job_scheduler at: 10/09... | English |
| 1945 | resetting of erp password | \r\n\r\nreceived from: ngjztqai.xqjzpvru@gmail... | xgjkafcn uijphdyx | GRP_0 | resetting of erp password \r\n\r\nreceived fr... | English |
| 1946 | dpozkmie vjuybcwz 27367 erp account locked | \r\n\r\nreceived from: boithdfa.tojwnydh@gmail... | boithdfa tojwnydh | GRP_0 | dpozkmie vjuybcwz 27367 erp account locked \r\... | English |
| 1947 | job Job_1314 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 10/09... | English |
| 1948 | job snp_heu_1_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_1_regen failed in job_scheduler at... | English |
| 1949 | HostName_977 :application tax_interface proc c... | the tax_interface webpage is reporting a : do... | jyoqwxhz clhxsoqy | GRP_14 | HostName_977 :application tax_interface proc c... | English |
| 1950 | job Job_3051 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3051 failed in job_scheduler at: 10/09... | English |
| 1951 | job Job_3049 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 10/09... | English |
| 1952 | unable to create customers in engineering tool | name : ilhcgoqf xlibynvc\nemail : ilhcgoqf.xli... | ilhcgoqf xlibynvc | GRP_25 | unable to create customers in engineering tool... | English |
| 1953 | job Job_3343 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3343 failed in job_scheduler at: 10/09... | English |
| 1954 | ç¬”è®°æœ¬é‡æ–°è£…下系统 | æŠŠæˆ‘çš„ç¬”è®°æœ¬é‡æ–°è£…下系统 | xjvubmlq vyamhjip | GRP_30 | ç¬”è®°æœ¬é‡æ–°è£…下系统 把我的笔记本... | English |
| 1955 | 有一个链接文件打ä¸å¼€ | 有一链接文件打ä¸å¼€ï¼Œæç¤ºç‰ˆæœ¬ä½Ž | qsfcxzel quwykhno | GRP_30 | 有一个链接文件打ä¸å¼€ 有一链接文... | English |
| 1956 | EU_tool - worklist is not available, confirmat... | the last worklist was created on friday, octob... | frzjtmyk wzacvhki | GRP_25 | EU_tool - worklist is not available, confirmat... | English |
| 1957 | job Job_3343 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3343 failed in job_scheduler at: 10/09... | English |
| 1958 | job Job_3051 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3051 failed in job_scheduler at: 10/09... | English |
| 1959 | job pp_EU_tool_netch_keheu1 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_keheu1 failed in job_sche... | English |
| 1960 | job Job_3049 failed in job_scheduler at: 10/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 10/09... | English |
| 1961 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | English |
| 1962 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 1963 | job pp_EU_tool_netch_ap2 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap2 failed in job_schedul... | English |
| 1964 | job Job_452 failed in job_scheduler at: 10/08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_452 failed in job_scheduler at: 10/08/... | English |
| 1965 | customer accounts contact list are not popula... | hello,\nthe issue: contacts that have been des... | smhepfdn aypgzieh | GRP_40 | customer accounts contact list are not popula... | English |
| 1966 | password resset request | from: rakthyesh ramdntythanjesh \nsent: sunday... | hgudmrta vidzoqfl | GRP_0 | password resset request from: rakthyesh ramdnt... | English |
| 1967 | password reset request | password reset request | wrdmxloh dshplynj | GRP_0 | password reset request password reset re... | English |
| 1968 | distributor_tool npr error code | email screen shot of error. duane said "remem... | fgaulydz crswlkev | GRP_21 | distributor_tool npr error code email screen s... | English |
| 1969 | job bkbackup_tool_powder_prod_full failed in j... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_powder_prod_full failed in j... | English |
| 1970 | erp password reset | ic\r\n welcome, our next available agent will ... | trixslny mbwishyo | GRP_0 | erp password reset ic\r\n welcome, our next av... | English |
| 1971 | HostName_1015:volume: c:\ is over 85% space co... | HostName_1015:volume: c:\ is over 85% space co... | oldrctiu bxurpsyi | GRP_12 | HostName_1015:volume: c:\ is over 85% space co... | English |
| 1972 | job Job_480 failed in job_scheduler at: 10/08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_480 failed in job_scheduler at: 10/08/... | English |
| 1973 | tax rate mismatch | \r\n\r\nreceived from: ikerxqwz.prkyuitl@gmail... | ikerxqwz prkyuitl | GRP_29 | tax rate mismatch \r\n\r\nreceived from: i... | English |
| 1974 | job Job_484 failed in job_scheduler at: 10/08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_484 failed in job_scheduler at: 10/08/... | English |
| 1975 | mobile device activation | from: ftnijxup sbltduco \r\nsent: saturday, oc... | ftnijxup sbltduco | GRP_0 | mobile device activation from: ftnijxup sbltdu... | English |
| 1976 | erp locked - please reset for nabjwvtd sprhoui... | \r\n\r\nreceived from: boithdfa.tojwnydh@gmail... | boithdfa tojwnydh | GRP_0 | erp locked - please reset for nabjwvtd sprhoui... | English |
| 1977 | unable to see emails which are older than 30 days | unable to see emails which are older than 30 days | ntuhoafg bzwefjvk | GRP_0 | unable to see emails which are older than 30 d... | English |
| 1978 | erp SID_34 password reset | erp SID_34 password reset | oiudarbk ezhnjwdt | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 1979 | network outage: india, in- orelikon balzers co... | what type of outage: __x___network _____c... | jyoqwxhz clhxsoqy | GRP_8 | network outage: india, in- orelikon balzers co... | English |
| 1980 | blank call // gso // loud noise | blank call // gso // loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call // gso // loud noise blank call // ... | English |
| 1981 | telephone repair pu-4 (shop floor 173 connect... | \n\nreceived from: segvwfyn.mogtrevn@gmail.com... | segvwfyn mogtrevn | GRP_19 | telephone repair pu-4 (shop floor 173 connect... | English |
| 1982 | call came and got disconnected | call came and got disconnected | rbozivdq gmlhrtvp | GRP_0 | call came and got disconnected call came and g... | English |
| 1983 | supply_chain_software password reset | from: ftnijxup sbltduco \r\nsent: saturday, oc... | qaohugxw kdeqjncw | GRP_0 | supply_chain_software password reset from: ftn... | English |
| 1984 | supply_chain_software password reset | supply_chain_software password reset\n\nfrom: ... | qbzlfeva fmxwqugs | GRP_0 | supply_chain_software password reset supply_ch... | English |
| 1985 | erp SID_34 password reset | erp SID_34 password reset | iczltbdf cmvjhyxl | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 1986 | usa plant - company-na-usa-usa-plant-bld1-qa-c... | usa plant - company-na-usa-usa-plant-bld1-qa-c... | dkmcfreg anwmfvlg | GRP_8 | usa plant - company-na-usa-usa-plant-bld1-qa-c... | English |
| 1987 | reset passwords for jvpkulxw ovuweygj using pa... | reset passwords for jvpkulxw ovuweygj using pa... | jvpkulxw ovuweygj | GRP_0 | reset passwords for jvpkulxw ovuweygj using pa... | English |
| 1988 | account got locked | account got locked | gwmspqeo vwfetaqg | GRP_0 | account got locked account got locked | English |
| 1989 | send e-mail from engineering tool doesn't work... | since feb / march 2016 it's not possible to se... | tghrloks jbgcvlmf | GRP_11 | send e-mail from engineering tool doesn't work... | English |
| 1990 | ms outlook2013 一直显示æ£åœ¨å¯åŠ¨ï¼Œä¸è... | please provide details of the issue.\r\nms out... | molihtdq auprogsj | GRP_31 | ms outlook2013 一直显示æ£åœ¨å¯åŠ¨ï¼Œä¸è... | English |
| 1991 | job Job_2080 failed in job_scheduler at: 10/08... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2080 failed in job_scheduler at: 10/08... | English |
| 1992 | job Job_2039 failed in job_scheduler at: 10/08... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2039 failed in job_scheduler at: 10/08... | English |
| 1993 | job Job_2074 failed in job_scheduler at: 10/08... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2074 failed in job_scheduler at: 10/08... | English |
| 1994 | unable to do kis for dn 8058280136 | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_18 | unable to do kis for dn 8058280136 \r\n\r\nrec... | English |
| 1995 | job bkbackup_tool_reporting_tool_prod_full fai... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_reporting_tool_prod_full fai... | English |
| 1996 | erp SID_34 account | \n\nreceived from: zuxcfonv.nyhpkrbe@gmail.com... | zuxcfonv nyhpkrbe | GRP_0 | erp SID_34 account \n\nreceived from: zuxcfon... | English |
| 1997 | job Job_1329 failed in job_scheduler at: 10/08... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1329 failed in job_scheduler at: 10/08... | English |
| 1998 | power outage: engineering_toolkuznetsk warehou... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | power outage: engineering_toolkuznetsk warehou... | English |
| 1999 | job Job_549 failed in job_scheduler at: 10/07/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_549 failed in job_scheduler at: 10/07/... | English |
| 2000 | job Job_549 failed in job_scheduler at: 10/07/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_549 failed in job_scheduler at: 10/07/... | English |
| 2001 | account is expired | \n\nreceived from: zuxcfonv.nyhpkrbe@gmail.com... | zuxcfonv nyhpkrbe | GRP_2 | account is expired \n\nreceived from: zuxcfon... | English |
| 2002 | account is locked | account is locked | jofvunqs uwigjmzv | GRP_31 | account is locked account is locked | English |
| 2003 | ç”å¤: password_management_tool | \n\nreceived from: weqocbnu.eoixcpvy@gmail.com... | weqocbnu eoixcpvy | GRP_0 | ç”å¤: password_management_tool \n\nreceived... | English |
| 2004 | 电脑登录密ç 忘记,é‡ç½®å¯†ç 。 | 电脑登录密ç 忘记,é‡ç½®å¯†ç 。 | weqocbnu eoixcpvy | GRP_31 | 电脑登录密ç 忘记,é‡ç½®å¯†ç 。 电... | English |
| 2005 | password reset using password_management_tool | password reset using password_management_tool | sxhqfaoe evobwgiy | GRP_0 | password reset using password_management_tool ... | English |
| 2006 | node usa pbx (10.1.19.200 ) located at usa is ... | node usa pbx (10.1.19.200 ) located at usa is ... | oldrctiu bxurpsyi | GRP_37 | node usa pbx (10.1.19.200 ) located at usa is ... | English |
| 2007 | unable to save excel document | unable to save excel document | imoelsap gxdwkimv | GRP_0 | unable to save excel document unable to save e... | English |
| 2008 | unable to sync some files in collaboration_pla... | unable to sync some files in collaboration_pla... | xpzsygkb vbualmpr | GRP_0 | unable to sync some files in collaboration_pla... | English |
| 2009 | ticket update on inplant_867667 | ticket update on inplant_867667 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_867667 ticket update ... | English |
| 2010 | ticket update on inplant_867672 | ticket update on inplant_867672 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_867672 ticket update ... | English |
| 2011 | unable to log in to engineering tool | unable to log in to engineering tool | ajdcnwtb bvijwxko | GRP_0 | unable to log in to engineering tool unable to... | English |
| 2012 | blue screen on start up | blue screen on start up | qwijaspo ukynmfig | GRP_3 | blue screen on start up blue screen on start up | English |
| 2013 | unable to sign in to skype meeting | unable to sign in to skype meeting | kijgcwlh gfejlcvb | GRP_0 | unable to sign in to skype meeting unable to s... | English |
| 2014 | outlook not opening up: stuck on loading screen | outlook not opening up: stuck on loading screen | vitpjxgm zxiqkrns | GRP_0 | outlook not opening up: stuck on loading scree... | English |
| 2015 | vpn issue | \ntelephone:\nsummary:i cannot get vpn to conn... | lfikjasz tjbqcmvl | GRP_0 | vpn issue \ntelephone:\nsummary:i cannot get ... | English |
| 2016 | engineering_tool and infopath issue | sqlcuhep railgnfb called in for an issue where... | sqlcuhep railgnfb | GRP_0 | engineering_tool and infopath issue sqlcuhep r... | English |
| 2017 | unable to view mails more than 3 days | unable to view mails more than 3 days | owlgqjme qhcozdfx | GRP_0 | unable to view mails more than 3 days unable t... | English |
| 2018 | jabra headset issue | i needed a hand setting up jabra pro headset f... | uazkjifp dhtnevcq | GRP_0 | jabra headset issue i needed a hand setting up... | English |
| 2019 | unlock account email in cell phone the user ... | hello team,\n\ncould you please unlock account... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the user ... | English |
| 2020 | qhjkxoyw lgiovknd called as he wanted to speak... | qhjkxoyw lgiovknd called as he wanted to speak... | rbozivdq gmlhrtvp | GRP_0 | qhjkxoyw lgiovknd called as he wanted to speak... | English |
| 2021 | unable to log in to supply_chain_software | unable to log in to supply_chain_software | tgewaniq yepifgbl | GRP_0 | unable to log in to supply_chain_software unab... | English |
| 2022 | call from vythytalyst : uploading group of con... | call from vythytalyst : uploading group of con... | gxiytpjh yibsguwk | GRP_40 | call from vythytalyst : uploading group of con... | English |
| 2023 | need this fixed | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | need this fixed \n\nreceived from: oetlgbfw.b... | English |
| 2024 | unable to open engineering_tool application | unable to open engineering_tool application | tgewaniq yepifgbl | GRP_0 | unable to open engineering_tool application un... | English |
| 2025 | engineering tool issue | engineering tool issue | mwebfhdz csndrxgi | GRP_0 | engineering tool issue engineering tool issue | English |
| 2026 | business_client : .net error message | business_client : .net error message | kjeqxayu bpwkdazl | GRP_0 | business_client : .net error message business... | English |
| 2027 | unable to enter mileage details. site not load... | unable to enter mileage details | rqtmpjdb ohitelsg | GRP_0 | unable to enter mileage details. site not load... | English |
| 2028 | ticketing_tool issue - cannot seem to create a... | ticketing_tool issue - cannot seem to create a... | slzhuipc sqntcber | GRP_0 | ticketing_tool issue - cannot seem to create a... | English |
| 2029 | client is having issues with excel crashing | client is having issues with excel crashing | etvendormhd xpslzunb | GRP_3 | client is having issues with excel crashing cl... | English |
| 2030 | hpqc uacyltoe hxgaycze installation | \nsummary:i need help downloading a uacyltoe h... | hajworze jqpisura | GRP_0 | hpqc uacyltoe hxgaycze installation \nsummary... | English |
| 2031 | subbathykrisyuhnyrt shhuivashankar company pro... | subbathykrisyuhnyrt shhuivashankar company pro... | olckhmvx pcqobjnd | GRP_0 | subbathykrisyuhnyrt shhuivashankar company pro... | English |
| 2032 | ticket update on inplant_867618 | ticket update on inplant_867618 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_867618 ticket update ... | English |
| 2033 | unable to access easyterritory map view builder | unable to access easyterritory map view builder | itslpwra vybdkuoa | GRP_22 | unable to access easyterritory map view builde... | English |
| 2034 | crm : voucher - email resend issue | when attempting to email a voucher following t... | pfzxecbo ptygkvzl | GRP_15 | crm : voucher - email resend issue when attemp... | English |
| 2035 | erp SID_34 account unlock | erp SID_34 account unlock | wvqgbdhm fwchqjor | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 2036 | passwort geoyhurg chriuimjiann | \n\nreceived from: nsoikcyf.jhybqael@gmail.com... | nsoikcyf jhybqael | GRP_0 | passwort geoyhurg chriuimjiann \n\nreceived fr... | German |
| 2037 | external recipient is unable to share screen w... | external recipient is unable to share screen w... | dqgjxhrt kydnpacx | GRP_26 | external recipient is unable to share screen w... | English |
| 2038 | account unlock | account unlock | zidcxslw clyfdaki | GRP_0 | account unlock account unlock | English |
| 2039 | general query | general query | zfliqpxm dgfvaqlh | GRP_0 | general query general query | English |
| 2040 | job bkbackup_tool_HostName_770_prod_inc failed... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_HostName_770_prod_inc failed... | English |
| 2041 | need converion tool : export a pdf into excel. | \nsummary:hello,\ni saw on pdf options that it... | gxuvbcpr libcktnm | GRP_33 | need converion tool : export a pdf into excel.... | English |
| 2042 | browser issue : etime: flash player issue/addi... | browser issue : etime: flash player issue/addi... | tjlgzkbp iervwjzg | GRP_0 | browser issue : etime: flash player issue/addi... | English |
| 2043 | unable to sign in to skype | unable to sign in to skype | vupmctne ylnsweao | GRP_0 | unable to sign in to skype unable to sign in t... | English |
| 2044 | erp changing order qty issue | please look at sale order 36112082 csr zektaqo... | zektaqof cgxlqtiz | GRP_13 | erp changing order qty issue please look at sa... | English |
| 2045 | uacyltoe hxgaycze | uacyltoe hxgaycze | xweclugf qmhbjsyi | GRP_12 | uacyltoe hxgaycze uacyltoe hxgaycze | Polish |
| 2046 | ticket update inplant_867508 | ticket update inplant_867508 | olckhmvx pcqobjnd | GRP_0 | ticket update inplant_867508 ticket update inp... | English |
| 2047 | excel keeps exiting | excel keeps exiting | qpkbiwzl urypnjvq | GRP_0 | excel keeps exiting excel keeps exiting | English |
| 2048 | unable to update mileage details. site not loa... | unable to update mileage details. site not loa... | eqwaiphc qxwfeuth | GRP_0 | unable to update mileage details. site not loa... | English |
| 2049 | erp SID_1 password reset | erp SID_1 password reset | wvqgbdhm fwchqjor | GRP_0 | erp SID_1 password reset erp SID_1 password reset | English |
| 2050 | skype meetings | \r\n\r\nreceived from: dlougnqw.jiuybxew@gmail... | dlougnqw jiuybxew | GRP_0 | skype meetings \r\n\r\nreceived from: dlougnqw... | English |
| 2051 | skype issue ; personal certificate error | skype issue ; personal certificate error | yaxrnmsz bultagqx | GRP_0 | skype issue ; personal certificate error skyp... | English |
| 2052 | pos data update - september 2016 | \nfrom: navdgtya kuhyakose \nsent: friday, oct... | htsnaodb adjtmlzn | GRP_15 | pos data update - september 2016 \nfrom: navdg... | English |
| 2053 | unable to access vpn | unable to access vpn | cziadygo veiosxby | GRP_0 | unable to access vpn unable to access vpn | English |
| 2054 | hr_tool etime issue | hr_tool etime issue | zywoxerf paqxtrfk | GRP_0 | hr_tool etime issue hr_tool etime issue | English |
| 2055 | error : windows 7 build 7601 this copy of wind... | error : windows 7 build 7601 this copy of wind... | dcxjngaf zquoewhp | GRP_3 | error : windows 7 build 7601 this copy of wind... | English |
| 2056 | audio issue in skype | audio issue in skype | ytqambip bovfzich | GRP_0 | audio issue in skype audio issue in skype | English |
| 2057 | please allow access for using printer in india... | please allow access for using printer in india... | sanoibgk zpuawcbl | GRP_19 | please allow access for using printer in india... | English |
| 2058 | please to provide access to solman environment... | please to provide access to solman environment... | gdsjrxwl pzhyxdiq | GRP_2 | please to provide access to solman environment... | English |
| 2059 | engineering_tool installation | engineering_tool installation | mcphgvnb bdegqtyj | GRP_0 | engineering_tool installation engineering_too... | English |
| 2060 | outlook not opening | outlook not opening | hugcadrn ixhlwdgt | GRP_0 | outlook not opening outlook not opening | English |
| 2061 | blank call // loud noise // gso | blank call // loud noise // gso | rbozivdq gmlhrtvp | GRP_0 | blank call // loud noise // gso blank call // ... | English |
| 2062 | erp SID_34 account unlock | erp SID_34 account unlock | itylnjqw kqiurhbt | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 2063 | unable to see workflow in erp SID_34 | unable to see workflow in erp SID_34 | obvjhlsa jxnlwspq | GRP_13 | unable to see workflow in erp SID_34 unable to... | English |
| 2064 | anleitung fuer password_management_tool | anleitung fuer password_management_tool | zgirlxwp kmeaylhi | GRP_0 | anleitung fuer password_management_tool anleit... | English |
| 2065 | can't access to hr_tool etime | \n\nreceived from: zywoxerf.paqxtrfk@gmail.com... | zywoxerf paqxtrfk | GRP_0 | can't access to hr_tool etime \n\nreceived fro... | English |
| 2066 | wifi not working : webpages not loading | wifi not working : webpages not loading | udetjzmn ayueswcm | GRP_0 | wifi not working : webpages not loading wifi ... | English |
| 2067 | delay in presenting the cal on the polycom phone | when a call comes in, its first presented on t... | atlwdyej vtlhzbix | GRP_7 | delay in presenting the cal on the polycom pho... | English |
| 2068 | user's manager's manager pointing wrongly to v... | examples given: shesyhur reports to davidthd a... | cfzsajbe lyejkdho | GRP_40 | user's manager's manager pointing wrongly to v... | English |
| 2069 | call from vendor about crm | call from vendor about crm | rbozivdq gmlhrtvp | GRP_0 | call from vendor about crm call from vendor ab... | English |
| 2070 | uacyltoe hxgaycze | uacyltoe hxgaycze | rxoluzhy pnutohms | GRP_36 | uacyltoe hxgaycze uacyltoe hxgaycze | Polish |
| 2071 | handscanner an pc evhw8114202 ohne funktion ->... | handscanner an pc evhw8114202 ohne funktion ->... | ljxzyriq zqxkrcev | GRP_33 | handscanner an pc evhw8114202 ohne funktion ->... | German |
| 2072 | i can't get logged into outlook. the problem ... | \nusa\nskype is working.\n | xkmvpaei fizqoprk | GRP_0 | i can't get logged into outlook. the problem ... | English |
| 2073 | erp access issue - not authorized for transact... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | pkjhmfgc zuvjqgwa | GRP_2 | erp access issue - not authorized for transact... | English |
| 2074 | please reset the password. | please reset the password. | toeibhlp gukqjwnr | GRP_7 | please reset the password. please reset the pa... | English |
| 2075 | job Job_488 failed in job_scheduler at: 10/07/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_488 failed in job_scheduler at: 10/07/... | English |
| 2076 | pc defekt | empw 8111616 01/14 defekt. code: 0x000000ed bl... | vpnraqfk pgocqjbu | GRP_33 | pc defekt empw 8111616 01/14 defekt. code: 0x0... | English |
| 2077 | crm buttons | i have recently upgraded our calendar / outloo... | ktcvsagx vftapxuc | GRP_22 | crm buttons i have recently upgraded our calen... | English |
| 2078 | network outage:russia, engineering_toolkuznets... | what type of outage: __x___network _____c... | bozdftwx smylqejw | GRP_8 | network outage:russia, engineering_toolkuznets... | English |
| 2079 | job Job_2049a failed in job_scheduler at: 10/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2049a failed in job_scheduler at: 10/0... | English |
| 2080 | install drucker we17\ewew8323647\hnyeajrw ctxj... | install drucker we17\ewew8323647\hnyeajrw ctxj... | hnyeajrw ctxjsolz | GRP_24 | install drucker we17\ewew8323647\hnyeajrw ctxj... | Scots |
| 2081 | install drucker we17\ewew8323646\lxfnwyuv bqmj... | install drucker we17\ewew8323646\lxfnwyuv bqmj... | lxfnwyuv bqmjyprz | GRP_24 | install drucker we17\ewew8323646\lxfnwyuv bqmj... | Scots |
| 2082 | printing language sa38 (reporting rfumsv00) | please complete all required questions below. ... | ojhiaubp lovgirtm | GRP_33 | printing language sa38 (reporting rfumsv00) pl... | English |
| 2083 | kindly install software paint shop and winzip | kindly install software paint shop and winzip | fcqxdusv zvkbhayo | GRP_28 | kindly install software paint shop and winzip ... | English |
| 2084 | install drucker we17 \oziflwma nhgvmqdl | install drucker we17 \oziflwma nhgvmqdl | vrfpyjwi nzhvgqiw | GRP_24 | install drucker we17 \oziflwma nhgvmqdl instal... | Scots |
| 2085 | benötige eine zahlenblock-tastatur für linke... | hallo .\n\nbenötige eine zahlenblock-tastatur... | wtgbdjzl coliybmq | GRP_24 | benötige eine zahlenblock-tastatur für linke... | German |
| 2086 | EU_tool läuft sehr langsam im werk germany. r... | aktuell können keine rückmeldungen in EU_too... | lpnzjimy mwtvondq | GRP_25 | EU_tool läuft sehr langsam im werk germany. r... | German |
| 2087 | stocktransfer goes not mm 5112324 | \r\n\r\nreceived from: mgahlpwx.jwtfpaxh@gmail... | mgahlpwx jwtfpaxh | GRP_6 | stocktransfer goes not mm 5112324 \r\n\r... | English |
| 2088 | job Job_2063a failed in job_scheduler at: 10/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063a failed in job_scheduler at: 10/0... | English |
| 2089 | ethics webportal login issue | not able login to ethics website, please find ... | fmjwzstr yjotleqg | GRP_0 | ethics webportal login issue not able login to... | English |
| 2090 | pulverleitstand and chargenverwaltung doesn't ... | pulverleitstand and chargenverwaltung doesn't ... | jltebswi zmvohjws | GRP_25 | pulverleitstand and chargenverwaltung doesn't ... | English |
| 2091 | job Job_593 failed in job_scheduler at: 10/07/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/07/... | English |
| 2092 | job Job_512 failed in job_scheduler at: 10/07/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_512 failed in job_scheduler at: 10/07/... | English |
| 2093 | automatische datenaufbereitung qa geht nicht | automatische datenaufbereitung geht nicht | tbioceqj ukjietwz | GRP_33 | automatische datenaufbereitung qa geht nicht a... | German |
| 2094 | account locked in ad | account locked in ad | mtcywlxv cklzmxyr | GRP_0 | account locked in ad account locked in ad | English |
| 2095 | circuit outage:germany: company-eu-deu-erkheim... | what type of outage: _____network __x___c... | utyeofsk rdyzpwhi | GRP_8 | circuit outage:germany: company-eu-deu-erkheim... | English |
| 2096 | outlook is not working | \r\n\r\nreceived from: krilnmcs.chpkeyqb@gmail... | krilnmcs chpkeyqb | GRP_0 | outlook is not working \r\n\r\nreceived from: ... | English |
| 2097 | dba team the imwveudk mykcourx processor has s... | dba team. the job processor at the engg applic... | dmqxwkfr olmwqzpu | GRP_58 | dba team the imwveudk mykcourx processor has s... | English |
| 2098 | plant plant_197/ EU_tool system is running ve... | plant plant_197/ EU_tool system is running ve... | wckrxovs aunsgzmd | GRP_25 | plant plant_197/ EU_tool system is running ve... | English |
| 2099 | abend job bkwin_tax_interface_qa_daily | job name:bkwin_tax_interface_qa_daily | jloygrwh acvztedi | GRP_8 | abend job bkwin_tax_interface_qa_daily job nam... | English |
| 2100 | purchasing, online katalog de-technischer hand... | purchasing, online katalog de-technischer hand... | ryaudfxm shjdaolm | GRP_0 | purchasing, online katalog de-technischer hand... | German |
| 2101 | routing fix in germany | please add a static route on the lan switch in... | smpijawb eawkpgqf | GRP_4 | routing fix in germany please add a static rou... | English |
| 2102 | need access | \n\nreceived from: tcbonyes.gpfacron@gmail.com... | tcbonyes gpfacron | GRP_0 | need access \n\nreceived from: tcbonyes.gpfacr... | English |
| 2103 | erp SID_34 account locked | erp SID_34 account locked | ypcudwsf phvatzje | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 2104 | hrt archive jobs are failing | hrt archive jobs are failing with error \r\nor... | jloygrwh acvztedi | GRP_1 | hrt archive jobs are failing hrt archive jobs ... | English |
| 2105 | job bkwin_tax_interface_dev_daily failed in jo... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_tax_interface_dev_daily failed in jo... | English |
| 2106 | job Job_549 failed in job_scheduler at: 10/06/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_549 failed in job_scheduler at: 10/06/... | English |
| 2107 | ticket update on inplant_867391 | ticket update on inplant_867391 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_867391 ticket update ... | English |
| 2108 | i cannot extract finance_app data - pls resolv... | \n\nreceived from: uagqromi.sqgtkmci@gmail.com... | uagqromi sqgtkmci | GRP_55 | i cannot extract finance_app data - pls resolv... | English |
| 2109 | unable to install crm for outlook | unable to install crm for outlook | itslpwra vybdkuoa | GRP_0 | unable to install crm for outlook unable to in... | English |
| 2110 | ticket update on inplant_867380 | ticket update on inplant_867380 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_867380 ticket update ... | English |
| 2111 | job Job_2881 failed in job_scheduler at: 10/06... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_13 | job Job_2881 failed in job_scheduler at: 10/06... | English |
| 2112 | outlook programdnty takes about 30 min to load | outlook programdnty takes about 30 min to load | itslpwra vybdkuoa | GRP_0 | outlook programdnty takes about 30 min to load... | English |
| 2113 | password reset to login to hub | password reset to login to hub | wbgxieyh zvasjtdc | GRP_0 | password reset to login to hub password reset... | English |
| 2114 | need access to folder | \r\n\r\nreceived from: umdyvbxo.qwzstijr@gmail... | umdyvbxo qwzstijr | GRP_12 | need access to folder \r\n\r\nreceived from: ... | English |
| 2115 | engineering tool page not opening | engineering tool page not opening | lwgytuxq qspdztiw | GRP_0 | engineering tool page not opening engineering ... | English |
| 2116 | analysis add-in keeps getting removed | analysis add-in keeps getting removed | tjlgzkbp iervwjzg | GRP_0 | analysis add-in keeps getting removed analysis... | English |
| 2117 | account locked out : ad | account locked out : ad | qifzkoej etbmgjvo | GRP_0 | account locked out : ad account locked out : ad | English |
| 2118 | sales order 36112960 generated a 10/13 deliver... | nibaotpy vmxathog \n\n\n | nibaotpy vmxathog | GRP_13 | sales order 36112960 generated a 10/13 deliver... | English |
| 2119 | erp SID_1 account unlock | erp SID_1 account unlock | slkxgzdj wxpytevu | GRP_0 | erp SID_1 account unlock erp SID_1 account unlock | English |
| 2120 | circuit outage :usa-dmvpn-1811-rtr01 is down s... | what type of outage: _____network __x___c... | spxqmiry zpwgoqju | GRP_8 | circuit outage :usa-dmvpn-1811-rtr01 is down s... | English |
| 2121 | please can you unlock the user vvamrtryot on t... | please can you unlock the user vvamrtryot on t... | gdsjrxwl pzhyxdiq | GRP_0 | please can you unlock the user vvamrtryot on t... | English |
| 2122 | request: team viewer | \r\n\r\nreceived from: sthyuraj.sektyhar@compa... | sxhqfaoe evobwgiy | GRP_19 | request: team viewer \r\n\r\nreceived from: st... | English |
| 2123 | hpqc uacyltoe hxgaycze installation | hpqc uacyltoe hxgaycze installation | qscdktvl rihendxu | GRP_0 | hpqc uacyltoe hxgaycze installation hpqc uac... | English |
| 2124 | change in offline cache mode in outlook to 12 ... | change in offline cache mode in outlook to 12 ... | fsvnjexu yxaevupi | GRP_0 | change in offline cache mode in outlook to 12 ... | English |
| 2125 | erp closes when opening attachment in md04 | erp closes when opening attachment in md04 | myaornqv fkjmpxbh | GRP_0 | erp closes when opening attachment in md04 erp... | English |
| 2126 | purchasing purchasing-add user to the purchasi... | when i log in to purchasing and choose company... | raifstow gfeymtql | GRP_29 | purchasing purchasing-add user to the purchasi... | English |
| 2127 | erp SID_1 : password reset | erp SID_1 : password reset | qscdktvl rihendxu | GRP_0 | erp SID_1 : password reset erp SID_1 : passwo... | English |
| 2128 | ms dynamics not synched in outlook | ms dynamics not synched in outlook | xrqnyzhb oblghuyf | GRP_0 | ms dynamics not synched in outlook ms dynamics... | English |
| 2129 | issue with outlook profile and skype for busin... | i was having issues opening outlook and skype ... | ugyothfz ugrmkdhx | GRP_19 | issue with outlook profile and skype for busin... | English |
| 2130 | unable to login to erp and distributor_tool | unable to login to erp and distributor_tool | qyfrgeop loimdzgs | GRP_0 | unable to login to erp and distributor_tool un... | English |
| 2131 | ticket update : inplant_867204 | ticket update : inplant_867204 | efbwiadp dicafxhv | GRP_0 | ticket update : inplant_867204 ticket update :... | English |
| 2132 | 4908206193/00001 dn required by 2 oclock est | \r\n\r\nreceived from: kaguhxwo.uoyipxqg@gmail... | kaguhxwo uoyipxqg | GRP_6 | 4908206193/00001 dn required by 2 oclock est \... | English |
| 2133 | installation of skype | installation of skype | kijgcwlh gfejlcvb | GRP_0 | installation of skype installation of skype | English |
| 2134 | account locked | account locked | nsoikcyf jhybqael | GRP_0 | account locked account locked | English |
| 2135 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | lfuzpjvr chmswkvz | GRP_0 | unable to log in to erp SID_34 unable to log i... | English |
| 2136 | nda emails are not getting sent | ramdnty, i think the workflows need looked at... | qwfztdvc czmndgti | GRP_16 | nda emails are not getting sent ramdnty, i th... | English |
| 2137 | job Job_1387 failed in job_scheduler at: 10/06... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1387 failed in job_scheduler at: 10/06... | English |
| 2138 | adding user dinthyesh <achthyardk> to distribu... | adding user dinthyesh <achthyardk> to distribu... | rnueobcz lwhcbati | GRP_0 | adding user dinthyesh <achthyardk> to distribu... | English |
| 2139 | software to read the text from the scanned pages. | software to read the text from the scanned pages. | rnueobcz lwhcbati | GRP_0 | software to read the text from the scanned pag... | English |
| 2140 | unable to view subject option in outlook | unable to view subject option in outlook | jborwynt gidxbfrq | GRP_0 | unable to view subject option in outlook unabl... | English |
| 2141 | blank call | blank call | rbozivdq gmlhrtvp | GRP_0 | blank call blank call | English |
| 2142 | skype call join ends up in bad call or blanks ... | skype call join ends up in bad call or blanks ... | zanivrec capbfhur | GRP_26 | skype call join ends up in bad call or blanks ... | English |
| 2143 | no login options in erp | after netweaver installing it is not possible ... | krdvgzeh yboasemp | GRP_0 | no login options in erp after netweaver instal... | English |
| 2144 | passwort geoyhurg chriuimjiann | \r\n\r\nreceived from: nsoikcyf.jhybqael@gmail... | nsoikcyf jhybqael | GRP_0 | passwort geoyhurg chriuimjiann \r\n\r\nreceiv... | German |
| 2145 | sykpe does not work | skype does not log me on when i turn on the co... | otagsuzp xazhusry | GRP_0 | sykpe does not work skype does not log me on w... | English |
| 2146 | user account not in validity date. | unable to login to erp SID_1. error: user acco... | jehlsagi dhkfuswg | GRP_2 | user account not in validity date. unable to l... | English |
| 2147 | issues | \r\n\r\nreceived from: lkfzibrx.ljnabpgx@gmail... | lkfzibrx ljnabpgx | GRP_0 | issues \r\n\r\nreceived from: lkfzibrx.ljnabpg... | English |
| 2148 | collaboration_platform table for crm | \n\nreceived from: troxyekl.lzdvgwut@gmail.com... | troxyekl lzdvgwut | GRP_0 | collaboration_platform table for crm \n\nrecei... | English |
| 2149 | account is locked out : ad account | account is locked out : ad account | gwmspqeo vwfetaqg | GRP_0 | account is locked out : ad account account is... | English |
| 2150 | not able to print from hr_tool | not able to print from hr_tool | hiysxgwf vqdbtexf | GRP_0 | not able to print from hr_tool not able to pri... | English |
| 2151 | reset passwords for gjisfonb odwfhmze using pa... | the | gjisfonb odwfhmze | GRP_17 | reset passwords for gjisfonb odwfhmze using pa... | English |
| 2152 | analysis for microsoft excel is no longer avai... | analysis for microsoft excel is no longer avai... | znqlmjvt uhyokzlt | GRP_0 | analysis for microsoft excel is no longer avai... | English |
| 2153 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | otlqwuks bncsierm | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 2154 | vpn access to <achthyardk> computer name: awyl... | \nsummary:need vpn provision to access m drive... | rnueobcz lwhcbati | GRP_34 | vpn access to <achthyardk> computer name: awyl... | English |
| 2155 | gflewxmn qnxhoryg (term date 8/31/2016) - netw... | i never received access to tghkris wickhamtf's... | vpksyfco chosuygq | GRP_12 | gflewxmn qnxhoryg (term date 8/31/2016) - netw... | English |
| 2156 | probleme mit com port \maschine stöhrmann \ea... | probleme mit com port \maschine stöhrmann \ea... | eaodcgsw trmzwbyc | GRP_24 | probleme mit com port \maschine stöhrmann \ea... | English |
| 2157 | cannot access workflow in collaboration_platfo... | i recently received a new machine for work and... | ferxqvsm esmwxqlf | GRP_16 | cannot access workflow in collaboration_platfo... | English |
| 2158 | unable to share screen | name:jadqhguy fvwhyenp\nlanguage:\nbrowser:mic... | jadqhguy fvwhyenp | GRP_0 | unable to share screen name:jadqhguy fvwhyenp\... | English |
| 2159 | cannot add new customer in engineering_tool ap... | \r\n\r\nreceived from: juxitrbf.vebckrgh@gmail... | juxitrbf vebckrgh | GRP_25 | cannot add new customer in engineering_tool ap... | English |
| 2160 | transfer pricing - sto 4908097793 | inter-company sto 5019108804 is not computing ... | wgothrzl iokdftgn | GRP_29 | transfer pricing - sto 4908097793 inter-compan... | English |
| 2161 | unable to make changes in expense report | name: xmeytziq dcgwuvfk\nbrowser: microsoft in... | xmeytziq dcgwuvfk | GRP_44 | unable to make changes in expense report name:... | English |
| 2162 | passwort geoyhurg chriuimjiann | \r\n\r\nreceived from: nsoikcyf.jhybqael@gmail... | nsoikcyf jhybqael | GRP_0 | passwort geoyhurg chriuimjiann \r\n\r\nreceiv... | German |
| 2163 | configair server not available in production (... | configair server not available in production (... | iavozegx jpcudyfi | GRP_14 | configair server not available in production (... | English |
| 2164 | engineering_tool and distributor_tool error. | engineering_tool and distributor_tool error. u... | insbceoa czgpyrtb | GRP_0 | engineering_tool and distributor_tool error. e... | English |
| 2165 | frequent account lock out : wothyehre | frequent account lock out : wothyehre | bjtguqne xthqrzpc | GRP_0 | frequent account lock out : wothyehre frequent... | English |
| 2166 | my telephony_software will not allow me to pic... | my telephony_software will not allow me to pic... | nxloukai cpbzkrel | GRP_7 | my telephony_software will not allow me to pic... | English |
| 2167 | why 2 delivery notes (9169471029) were created... | hello, could you please check why 2 delivery n... | vgmbxkji jukplihz | GRP_18 | why 2 delivery notes (9169471029) were created... | English |
| 2168 | upload of monthly reports to SID_59 hana table... | upload of monthly reports to SID_59 hana table... | urhpnlaf agmsfqil | GRP_9 | upload of monthly reports to SID_59 hana table... | English |
| 2169 | query about ticket status.: ticket_no1556096 :... | ticket_no1556096 : antjuyhony usa | aorthyme rnsuipbk | GRP_0 | query about ticket status.: ticket_no1556096 :... | English |
| 2170 | wifi not working in conference room of usa oh ... | wifi not working in conference room of usa oh ... | aexbclqv zvapcslb | GRP_0 | wifi not working in conference room of usa oh ... | English |
| 2171 | anlagen pc an der hochdrucksinteranlage hip 10... | anlagen pc an der hochdrucksinteranlage hip 10... | kuemonqi rtexzlvh | GRP_33 | anlagen pc an der hochdrucksinteranlage hip 10... | German |
| 2172 | vip 2 // upgrade to ie 11 | vip 2 // upgrade to ie 11 | ihozauxs ohdqmipz | GRP_0 | vip 2 // upgrade to ie 11 vip 2 // upgrade to ... | English |
| 2173 | not able to see emails in the outlook | not able to see emails in the outlook\n | xioapjvd yiqubxmz | GRP_26 | not able to see emails in the outlook not able... | English |
| 2174 | kpm hours | i have punched 6hrs on tuesday i.e. on 04/10/1... | xwcpkysq jydxhczm | GRP_25 | kpm hours i have punched 6hrs on tuesday i.e. ... | English |
| 2175 | not able to access bobj via ie and some tabs a... | user wasn't able to access the report via ie. ... | jvxtfhkg heptuizn | GRP_0 | not able to access bobj via ie and some tabs a... | English |
| 2176 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 2177 | latitude e5440 battery issue | latitude e5440 battery issue. battery light is... | juaxnvwz reampilj | GRP_3 | latitude e5440 battery issue latitude e5440 ba... | English |
| 2178 | network outage : south amerirtca - (rrc) site... | what type of outage: __x___network _____c... | jyoqwxhz clhxsoqy | GRP_8 | network outage : south amerirtca - (rrc) site... | English |
| 2179 | no bobj acces | name:maaryuyten\nlanguage:\nbrowser:microsoft ... | jvxtfhkg heptuizn | GRP_9 | no bobj acces name:maaryuyten\nlanguage:\nbrow... | English |
| 2180 | probleme mit gehaltsnachweis drucken \eaodcgsw... | probleme mit gehaltsnachweis drucken \eaodcgsw... | eaodcgsw trmzwbyc | GRP_24 | probleme mit gehaltsnachweis drucken \eaodcgsw... | German |
| 2181 | uacyltoe hxgayczeing the email notification | uacyltoe hxgayczeing the email notification | zscohabw qorvugzf | GRP_36 | uacyltoe hxgayczeing the email notification ua... | English |
| 2182 | probleme mit wlan laptop \weszfyok fbadnjhu | probleme mit wlan laptop \weszfyok fbadnjhu | weszfyok fbadnjhu | GRP_24 | probleme mit wlan laptop \weszfyok fbadnjhu p... | German |
| 2183 | account unlock we_wu160 | account unlock we_wu160 | ughzilfm cfibdamq | GRP_0 | account unlock we_wu160 account unlock we_wu160 | English |
| 2184 | crm - screen - advanced find- create view | \r\n\r\nreceived from: ctzykflo.evzbhgru@gmail... | ctzykflo evzbhgru | GRP_0 | crm - screen - advanced find- create view \r\n... | English |
| 2185 | infopath is not working | infopath is not working | drhykngx oxviygdb | GRP_0 | infopath is not working infopath is not working | English |
| 2186 | probleme mit we_wu160 \jionmpsf wnkpzcmv | probleme mit we_wu160 \jionmpsf wnkpzcmv | jionmpsf wnkpzcmv | GRP_24 | probleme mit we_wu160 \jionmpsf wnkpzcmv probl... | English |
| 2187 | monitor vom rfa-analysegerät defekt | hallo ,\n\nkannst du mal bei uns im labor vorb... | rclqfpgt tbnovxdp | GRP_24 | monitor vom rfa-analysegerät defekt hallo ,\n... | German |
| 2188 | problem while changing the password | \r\n\r\nreceived from: srqyfjxz.lnagtjzi@gmail... | srqyfjxz lnagtjzi | GRP_0 | problem while changing the password \r\n\r\nre... | English |
| 2189 | file shatryung help required. | \r\n\r\nreceived from: cqargubj.krdxbfqh@gmail... | cqargubj krdxbfqh | GRP_0 | file shatryung help required. \r\n\r\nreceived... | English |
| 2190 | issue with adding lean tracker- collaboration_... | \r\n\r\nreceived from: ilbkhgxd.hirsqytd@gmail... | ilbkhgxd hirsqytd | GRP_0 | issue with adding lean tracker- collaboration_... | English |
| 2191 | add my name to distribution lists | \n\nreceived from: ploxzuts.utvimnwo@gmail.com... | ploxzuts utvimnwo | GRP_0 | add my name to distribution lists \n\nreceived... | English |
| 2192 | uacyltoe hxgaycze | uacyltoe hxgaycze | fdmaluyo tvecikxn | GRP_0 | uacyltoe hxgaycze uacyltoe hxgaycze | Polish |
| 2193 | pls. unlock windows account of user vvgoythttu | pls. unlock windows account of user vvgoythttu | vwpxjtof vmidzswj | GRP_0 | pls. unlock windows account of user vvgoythttu... | English |
| 2194 | skype for business does not work | \r\n\r\nreceived from: gzqijaoc.rfywvloa@gmail... | gzqijaoc rfywvloa | GRP_0 | skype for business does not work \r\n\r\nrecei... | English |
| 2195 | passwords - vpn, distributor_tool sync | \r\n\r\nreceived from: pgrvqtdo.hgpymwxb@gmail... | pgrvqtdo hgpymwxb | GRP_0 | passwords - vpn, distributor_tool sync \r\n\r\... | English |
| 2196 | account locked in ad | account locked in ad | lasxwmhr ixqclfaz | GRP_0 | account locked in ad account locked in ad | English |
| 2197 | telephony_software - log on issue - this is a ... | user voethrylke is unable to log on telephony_... | hmrtxkfb otykaqpc | GRP_7 | telephony_software - log on issue - this is a ... | English |
| 2198 | user gokcerthy SID_1 uacyltoe hxgaycze system | \r\n\r\nreceived from: gacfhedw.iqustfzh@gmail... | gacfhedw iqustfzh | GRP_0 | user gokcerthy SID_1 uacyltoe hxgaycze system ... | English |
| 2199 | we need a new mouse (pc: eemw8143353) | the computer-mouse from the pc eemw8143353 has... | bpnuklrh qjxnhueo | GRP_42 | we need a new mouse (pc: eemw8143353) the comp... | English |
| 2200 | HostName_1276 australia patching_antivirus_sw ... | it is offline since 1st oct 2016. | fohvgnkd stfmcapj | GRP_12 | HostName_1276 australia patching_antivirus_sw ... | English |
| 2201 | aiiw8911985 india patching_antivirus_sw deskto... | it is offline since 30th sep 2016. | fohvgnkd stfmcapj | GRP_19 | aiiw8911985 india patching_antivirus_sw deskto... | English |
| 2202 | unable to log into skype. certificate error. | unable to log into skype. certificate error. | vgatnfjl sghcfzqp | GRP_0 | unable to log into skype. certificate error. u... | English |
| 2203 | reset my SID_51 password | request you to reset my SID_51 password and se... | svdefgwl sgtmurfh | GRP_2 | reset my SID_51 password request you to reset... | English |
| 2204 | we are missing confirmations in erp since 10/0... | it seems that the transfer from EU_tool to erp... | zcokibmd xnrthsmj | GRP_59 | we are missing confirmations in erp since 10/0... | English |
| 2205 | new document types showing in list | when creating a new document in engineering to... | ctvaejbo mjcerqwo | GRP_11 | new document types showing in list when creati... | English |
| 2206 | network outage:poncacity -schlumhdyhter-dmvpn ... | what type of outage: __x___network _____c... | bozdftwx smylqejw | GRP_8 | network outage:poncacity -schlumhdyhter-dmvpn ... | English |
| 2207 | application response time (other network resou... | please provide details in the template below (... | kfirsmxn dieluyra | GRP_0 | application response time (other network resou... | English |
| 2208 | power outage :germany () fine machining - comp... | what type of outage: _____network ___x__c... | jloygrwh acvztedi | GRP_8 | power outage :germany () fine machining - comp... | English |
| 2209 | erp is not working for multiple user. | erp is not working for multiple user.\r\nserve... | vykbweum hpvctbse | GRP_4 | erp is not working for multiple user. erp is n... | English |
| 2210 | urgent EU_tool germany - currently not possibl... | reference ticket_no1557880 (some data entries ... | wckrxovs aunsgzmd | GRP_25 | urgent EU_tool germany - currently not possibl... | English |
| 2211 | kein datenabgleich zwischen EU_tool und erp in... | kein datenabgleich zwischen EU_tool und erp in... | jcgzqndm hukibzqa | GRP_25 | kein datenabgleich zwischen EU_tool und erp in... | German |
| 2212 | kein netzwerkzugang | ich habe an meinem pc nur zugriff auf die inte... | uhiekyjz mflihxpq | GRP_12 | kein netzwerkzugang ich habe an meinem pc nur ... | German |
| 2213 | password reset | \n\nreceived from: nxhwyepl.mudstbxo@gmail.com... | nxhwyepl mudstbxo | GRP_0 | password reset \n\nreceived from: nxhwyepl.mud... | English |
| 2214 | job Job_2600 failed in job_scheduler at: 10/06... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2600 failed in job_scheduler at: 10/06... | English |
| 2215 | ie 11 flash player issue | \r\n\r\nreceived from: rmezbnqt.ntbmkpuh@gmail... | rmezbnqt ntbmkpuh | GRP_0 | ie 11 flash player issue \r\n\r\nreceived from... | English |
| 2216 | problem in lean tracker | \r\n\r\nreceived from: drhykngx.oxviygdb@gmail... | drhykngx oxviygdb | GRP_0 | problem in lean tracker \r\n\r\nreceived from:... | English |
| 2217 | access to shared mail box "investor_relation | \n\nreceived from: wchidyuk.shqbfpuy@gmail.com... | ythucdjx mujfrsyl | GRP_12 | access to shared mail box "investor_relation \... | English |
| 2218 | the oracle listener monitor is reporting a : w... | the oracle listener monitor is reporting a : w... | jloygrwh acvztedi | GRP_1 | the oracle listener monitor is reporting a : w... | English |
| 2219 | outlook | \r\nuser got crm and outlook configured yeste... | jvpkulxw ovuweygj | GRP_0 | outlook \r\nuser got crm and outlook configur... | English |
| 2220 | job bkwin_HostName_770_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_770_inc failed in job_sched... | English |
| 2221 | net framdntyework 4.5 is not installed | from: wgpimkle kijhcwur [mailto:wgpimkle.kijhc... | wgpimkle kijhcwur | GRP_0 | net framdntyework 4.5 is not installed from: w... | English |
| 2222 | erp incident 336553/2016 status change | this is in SID_21.\r\n\r\n | kflqpite gbeoqsnc | GRP_0 | erp incident 336553/2016 status change this is... | English |
| 2223 | job Job_3050 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3050 failed in job_scheduler at: 10/05... | English |
| 2224 | can't get audio skype. need it urgently for me... | \nname:jashtyckie\nlanguage:\nbrowser:microsof... | fksahqzc cdwhznbo | GRP_0 | can't get audio skype. need it urgently for me... | English |
| 2225 | HostName_221 : volume: /dev/SID_37data17 is ov... | HostName_221 :\r\n\r\nvolume: /dev/SID_37data1... | spxqmiry zpwgoqju | GRP_1 | HostName_221 : volume: /dev/SID_37data17 is ov... | English |
| 2226 | ticket update on inplant_866951 | ticket update on inplant_866951 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_866951 ticket update ... | English |
| 2227 | unable to open attachments on outlook | unable to open attachments on outlook | fjohugzb fhagjskd | GRP_0 | unable to open attachments on outlook unable t... | English |
| 2228 | access to server files ldg sm003 | i am the new plant manager at usa facility. i ... | rozsyfai zncajubh | GRP_12 | access to server files ldg sm003 i am the new ... | English |
| 2229 | unable to update passwords | unable to update passwords | hdetqcpj ehsjitcy | GRP_0 | unable to update passwords unable to update pa... | English |
| 2230 | node lhqsm68267 located at usa is down. | node lhqsm68267 located at usa is down since 0... | spxqmiry zpwgoqju | GRP_12 | node lhqsm68267 located at usa is down. node l... | English |
| 2231 | vip 2 : not able to login to windows | not able to login to windows | tivbxojn gorlajmp | GRP_0 | vip 2 : not able to login to windows not able... | English |
| 2232 | outlook is frozen, unable to open | came in at 10:45am. as of 3:50pm, my folder ha... | gakceqyb edrjthvo | GRP_0 | outlook is frozen, unable to open came in at 1... | English |
| 2233 | system is slowing down while processing shipme... | system is slowing down while processing shipme... | khvzugxm yqfrcjwl | GRP_18 | system is slowing down while processing shipme... | English |
| 2234 | erp access issue userid uacyltoe hxgayczek... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | xyoiutep znpegflv | GRP_2 | erp access issue userid uacyltoe hxgayczek... | English |
| 2235 | job Job_3049 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 10/05... | English |
| 2236 | unable to schedule a skype meeting (option no ... | unable to schedule a skype meeting (option no ... | jadqhguy fvwhyenp | GRP_0 | unable to schedule a skype meeting (option no ... | English |
| 2237 | ticket update on inplant_866919 | ticket update on inplant_866919 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_866919 ticket update ... | English |
| 2238 | key figures being taken out from bex analyzer | key figures being taken out from bex analyzer\... | htsnaodb adjtmlzn | GRP_9 | key figures being taken out from bex analyzer ... | English |
| 2239 | job Job_1320 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1320 failed in job_scheduler at: 10/05... | English |
| 2240 | ticket update on ticket_no0446902 | ticket update on ticket_no0446902 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0446902 ticket updat... | English |
| 2241 | calls are routing to laptop and not on the tel... | calls are routing to laptop and not on the tel... | bxgiwfhp hyixrzaw | GRP_7 | calls are routing to laptop and not on the tel... | English |
| 2242 | connecting to wireless outside of company of u... | \r\n\r\nreceived from: zxobmreq.udikorhv@gmail... | zxobmreq udikorhv | GRP_0 | connecting to wireless outside of company of u... | English |
| 2243 | ticket update on inplant_866808 | ticket update on inplant_866808 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_866808 ticket update ... | English |
| 2244 | access to collaboration_platform link | access to collaboration_platform link\r\n\r\n | mfeyouli ndobtzpw | GRP_0 | access to collaboration_platform link access t... | English |
| 2245 | adding shared mailbox to outlook. | \nsummary:the files for my 2 shared mailbox di... | gduilrqe oxrivnwe | GRP_0 | adding shared mailbox to outlook. \nsummary:th... | English |
| 2246 | housekeep core files in HostName_1290. | could you please check feasibility to add addi... | ontswhiv arzepumv | GRP_47 | housekeep core files in HostName_1290. could ... | English |
| 2247 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | ioafmupg gnmqfrve | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 2248 | erp SID_34 account unlock | erp SID_34 account unlock | unzfykar osxmbhav | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 2249 | crm add in is missing | crm add in is missing | ghurjpex dwyuzxht | GRP_0 | crm add in is missing crm add in is missing | English |
| 2250 | job Job_2653 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_18 | job Job_2653 failed in job_scheduler at: 10/05... | English |
| 2251 | knocked off vpn | vpn was disconnected during an incoming call. | gakceqyb edrjthvo | GRP_0 | knocked off vpn vpn was disconnected during an... | English |
| 2252 | skype audio not working | skype audio not working | gcaktshf kpgfrotd | GRP_0 | skype audio not working skype audio not working | English |
| 2253 | ms crm dynamics ; outlook issue | ms crm dynamics ; outlook issue | zxlhkpfi zylaghei | GRP_0 | ms crm dynamics ; outlook issue ms crm dynami... | English |
| 2254 | appears that pos file processing is not workin... | it appears that the pos files being submitted ... | htsnaodb adjtmlzn | GRP_20 | appears that pos file processing is not workin... | English |
| 2255 | unable to access any of the bobj explorer reports | i'm unable to access any of the bobj explorer ... | froajhdb ijetmkuc | GRP_14 | unable to access any of the bobj explorer repo... | English |
| 2256 | job Job_1348a failed in job_scheduler at: 10/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1348a failed in job_scheduler at: 10/0... | English |
| 2257 | as soon as i do select financial_toolscal year... | contact # : 499119735568\r\nsummary:bex does n... | cqwtksbu tgxockrn | GRP_9 | as soon as i do select financial_toolscal year... | English |
| 2258 | job Job_2653 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_18 | job Job_2653 failed in job_scheduler at: 10/05... | English |
| 2259 | job Job_1315 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1315 failed in job_scheduler at: 10/05... | English |
| 2260 | probleme mit pf3 port 13 | \r\n\r\nreceived from: ughzilfm.cfibdamq@gmail... | ughzilfm cfibdamq | GRP_24 | probleme mit pf3 port 13 \r\n\r\nreceived from... | English |
| 2261 | job Job_1394 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1394 failed in job_scheduler at: 10/05... | English |
| 2262 | unable to connect to outlook from home network | unable to connect to outlook from home network | ghurjpex dwyuzxht | GRP_0 | unable to connect to outlook from home network... | English |
| 2263 | system disk c: of server HostName_698 is full ... | \r\n\r\nreceived from: fbyusmxz.kxvmcbly@gmail... | fbyusmxz kxvmcbly | GRP_12 | system disk c: of server HostName_698 is full ... | English |
| 2264 | unable to open outlook | unable to open outlook | bxgiwfhp hyixrzaw | GRP_0 | unable to open outlook unable to open outlook | English |
| 2265 | printer issue delivery notes, windows: on prin... | printer issue delivery notes, windows: on prin... | kblpmanr yxqilvua | GRP_3 | printer issue delivery notes, windows: on prin... | English |
| 2266 | the report none of the lookup/sort features ar... | i have access to the report and reporting_tool... | wszbxlpu dsujiozp | GRP_9 | the report none of the lookup/sort features ar... | English |
| 2267 | urgent help required- outlook to crm mfg_toolt... | contact | gonflcmq wmptisvz | GRP_0 | urgent help required- outlook to crm mfg_toolt... | English |
| 2268 | ticket follow up on inplant_866530 | \nsummary:i have an open incident request #inc... | efbwiadp dicafxhv | GRP_0 | ticket follow up on inplant_866530 \nsummary:i... | English |
| 2269 | job bwhrchgr failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrchgr failed in job_scheduler at: 10/05... | English |
| 2270 | townhall meeting | we need nwfoucba dzbujamc (it germany/germany)... | fecbygrw esmwronu | GRP_28 | townhall meeting we need nwfoucba dzbujamc (it... | English |
| 2271 | unable to access to bobj reports | unable to access to bobj reports | vupmctne ylnsweao | GRP_0 | unable to access to bobj reports unable to ac... | English |
| 2272 | circuit outage: vpn router (rtr01) is down at ... | what type of outage: _____network ___x__c... | bozdftwx smylqejw | GRP_8 | circuit outage: vpn router (rtr01) is down at ... | English |
| 2273 | email settings issue | \nsummary:i hit the wrong button and messed up... | gduilrqe oxrivnwe | GRP_0 | email settings issue \nsummary:i hit the wron... | English |
| 2274 | user called to speak with nicdhylas hidhys...a... | user called to speak with nicdhylas hidhys...a... | efbwiadp dicafxhv | GRP_0 | user called to speak with nicdhylas hidhys...a... | English |
| 2275 | windows password reset | windows password reset | tfzlohik esibqtvy | GRP_0 | windows password reset windows password reset | English |
| 2276 | static noise : interaction id : 1064732743 | static noise : interaction id : 1064732743 | efbwiadp dicafxhv | GRP_0 | static noise : interaction id : 1064732743 sta... | English |
| 2277 | computer name | \r\n\r\nreceived from: koahsriq.wdugqatr@gmail... | koahsriq wdugqatr | GRP_0 | computer name \r\n\r\nreceived from: koahsriq.... | English |
| 2278 | account unlock | account unlock | dpajkrhy hwvjympt | GRP_0 | account unlock account unlock | English |
| 2279 | names issues with engineering_tool system | \n\nreceived from: vkezwolt.fgnqzeai@gmail.com... | vkezwolt fgnqzeai | GRP_25 | names issues with engineering_tool system \n\n... | English |
| 2280 | creating an inspection plan | i have been working on creating an inspection ... | riygevcb uzowmhaj | GRP_45 | creating an inspection plan i have been workin... | English |
| 2281 | not able to make outbound calls from siemens p... | not able to make outbound calls from siemens p... | zmgsfner caltmgoe | GRP_37 | not able to make outbound calls from siemens p... | English |
| 2282 | wk38 -> qdxyifhj zbwtunpy | halo ,\nder drucker bereitet problem mit dem d... | qmwhlnev ixtmkwdc | GRP_33 | wk38 -> qdxyifhj zbwtunpy halo ,\nder drucker ... | German |
| 2283 | authorisation | \n\nreceived from: bqjvxsaf.aupdonjy@gmail.com... | bqjvxsaf aupdonjy | GRP_2 | authorisation \n\nreceived from: bqjvxsaf.aupd... | English |
| 2284 | network outage: site engineering_toolkuznetsk,... | what type of outage: ____x_network _____c... | utyeofsk rdyzpwhi | GRP_8 | network outage: site engineering_toolkuznetsk,... | English |
| 2285 | probleme mit vpn \weszfyok fbadnjhu | probleme mit vpn \weszfyok fbadnjhu | weszfyok fbadnjhu | GRP_24 | probleme mit vpn \weszfyok fbadnjhu probleme m... | Danish |
| 2286 | probleme mit portal \franjuz urbghty | probleme mit portal \franjuz urbghty | petljhxi bocxgins | GRP_24 | probleme mit portal \franjuz urbghty probleme ... | Danish |
| 2287 | erp SID_34 account unlock and password reset f... | erp SID_34 account unlock and password reset f... | olckhmvx pcqobjnd | GRP_0 | erp SID_34 account unlock and password reset f... | English |
| 2288 | russia: interface: vlan1 · russia engineering... | russia: interface: vlan1 · russia engineerin... | rkupnshb gsmzfojw | GRP_8 | russia: interface: vlan1 · russia engineering... | English |
| 2289 | job Job_1142 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1142 failed in job_scheduler at: 10/05... | English |
| 2290 | problem in outlook client database synchronizing | problem in outlook client database synchronizing | enhjdypo rsbxiepn | GRP_19 | problem in outlook client database synchronizi... | English |
| 2291 | microsoft outlook issue | hi team,\r\n\r\ni am unable to get mails inter... | wczegmok bgqoclvs | GRP_0 | microsoft outlook issue hi team,\r\n\r\ni am u... | English |
| 2292 | upgrade to office 2016 | currently there are two versions of office on ... | zmnhfcbv azdnkmul | GRP_0 | upgrade to office 2016 currently there are two... | English |
| 2293 | erp intercompany inwarehouse_tool issue sto - ... | from: batia ben-shloosh \nsent: wednesday, sep... | tqfnalpj qyoscnge | GRP_10 | erp intercompany inwarehouse_tool issue sto - ... | English |
| 2294 | login is not possible ?? | \n\nreceived from: lgeuniqf.ijsnyxgf@gmail.com... | lgeuniqf ijsnyxgf | GRP_0 | login is not possible ?? \n\nreceived from: lg... | German |
| 2295 | erp user id & password not working | \r\n\r\nreceived from: ploxzuts.utvimnwo@gmail... | ploxzuts utvimnwo | GRP_0 | erp user id & password not working \r\n\r\nrec... | English |
| 2296 | could not logon to erp via vpn | error message in both systems SID_34 / SID_1:\... | skocrqdw pexcdfao | GRP_0 | could not logon to erp via vpn error message i... | English |
| 2297 | job Job_593 failed in job_scheduler at: 10/05/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/05/... | English |
| 2298 | please create dn from plant_105 to plant_212 o... | we can not create please create dn from plant_... | ylitqvaj ljxdfhus | GRP_6 | please create dn from plant_105 to plant_212 o... | English |
| 2299 | lean certificates not getting sent automatically | hi khadfhty,\n\ntoday, i created another lean ... | fohvgnkd stfmcapj | GRP_16 | lean certificates not getting sent automatical... | English |
| 2300 | windows password reset | windows password reset | dpajkrhy hwvjympt | GRP_0 | windows password reset windows password reset | English |
| 2301 | probleme mit alicona nach update \jionmpsf wnk... | probleme mit alicona nach update \jionmpsf wnk... | jionmpsf wnkpzcmv | GRP_24 | probleme mit alicona nach update \jionmpsf wnk... | English |
| 2302 | setup we_wu73 \jionmpsf wnkpzcmv | setup we_wu73 \jionmpsf wnkpzcmv | jionmpsf wnkpzcmv | GRP_24 | setup we_wu73 \jionmpsf wnkpzcmv setup we_wu73... | English |
| 2303 | chg1145744 - stop the reminders | \r\n\r\nreceived from: atdclmyi.wqxzaysu@gmail... | atdclmyi wqxzaysu | GRP_0 | chg1145744 - stop the reminders \r\n\r\nrecei... | English |
| 2304 | reset password | \n\nreceived from: uijxpazn.gvtzlphs@gmail.com... | uijxpazn gvtzlphs | GRP_0 | reset password \n\nreceived from: uijxpazn.gvt... | English |
| 2305 | job Job_1351 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1351 failed in job_scheduler at: 10/05... | English |
| 2306 | issue with engineering_tooled software | \r\n\r\nreceived from: ntuhoafg.bzwefjvk@gmail... | ntuhoafg bzwefjvk | GRP_25 | issue with engineering_tooled software \r\n\r\... | English |
| 2307 | probleme beim zugriff auf zeichnungen - netwea... | \n\nreceived from: ecoljnvt.lbdqmvfs@gmail.com... | ecoljnvt lbdqmvfs | GRP_0 | probleme beim zugriff auf zeichnungen - netwea... | German |
| 2308 | job Job_2049 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2049 failed in job_scheduler at: 10/05... | English |
| 2309 | outlook & crm not getting sync | outlook & crm not getting sync | dijxefrq nbgykjpr | GRP_0 | outlook & crm not getting sync outlook & crm n... | English |
| 2310 | account locked in ad | account locked in ad | zvenmiap kocjpnle | GRP_0 | account locked in ad account locked in ad | English |
| 2311 | seek support_network related issue. | \r\n\r\nreceived from: utoegyqx.lhosidqg@gmail... | utoegyqx lhosidqg | GRP_19 | seek support_network related issue. \r\n\r\nre... | English |
| 2312 | job Job_1384 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1384 failed in job_scheduler at: 10/05... | English |
| 2313 | interface: fastethernet0/2 · timeclock on clh... | interface: fastethernet0/2 · timeclock on clh... | dkmcfreg anwmfvlg | GRP_8 | interface: fastethernet0/2 · timeclock on clh... | English |
| 2314 | job Job_1346 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1346 failed in job_scheduler at: 10/05... | English |
| 2315 | job Job_1391 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1391 failed in job_scheduler at: 10/05... | English |
| 2316 | can't access erp by vpn | \n\nreceived from: ovhtgsxd.dcqhnrmy@gmail.com... | ovhtgsxd dcqhnrmy | GRP_0 | can't access erp by vpn \n\nreceived from: ovh... | English |
| 2317 | ey consultant is unable to login to citrix. at... | ey consultant is unable to login to citrix. at... | ythucdjx mujfrsyl | GRP_12 | ey consultant is unable to login to citrix. at... | English |
| 2318 | unable to login to engineering tool | unable to login to engineering tool | rzikhjae tzekbfjx | GRP_0 | unable to login to engineering tool unable to... | English |
| 2319 | job Job_2573 failed in job_scheduler at: 10/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2573 failed in job_scheduler at: 10/05... | English |
| 2320 | unable to login to engineering tool | unable to login to engineering tool | bslwfqcv xqaheoim | GRP_0 | unable to login to engineering tool unable to... | English |
| 2321 | australia, australia is currently experiencing... | name:elituyt\nlanguage:\nbrowser:microsoft int... | uisewznr ewtmkphs | GRP_0 | australia, australia is currently experiencing... | English |
| 2322 | erp | \r\n\r\nreceived from: duoyrpvi.wgjpviul@gmail... | nehxmtpg xepltzqf | GRP_0 | erp \r\n\r\nreceived from: duoyrpvi.wgjpviul@... | English |
| 2323 | erp very slow - happens every night starting a... | name:fyzceglp vfnraqxc\nlanguage:\nbrowser:mic... | fyzceglp vfnraqxc | GRP_18 | erp very slow - happens every night starting a... | English |
| 2324 | job Job_3052 failed in job_scheduler at: 10/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3052 failed in job_scheduler at: 10/04... | English |
| 2325 | vip-processed payment - potentional security a... | from: xmjwanes astmvqhc \nsent: wednesday, oct... | xmjwanes astmvqhc | GRP_26 | vip-processed payment - potentional security a... | English |
| 2326 | window locked for user id - laijuttryhr | \r\n\r\nreceived from: wyxqkzmf.urigtqnp@gmail... | wyxqkzmf urigtqnp | GRP_0 | window locked for user id - laijuttryhr \r\n\r... | English |
| 2327 | ticket update on inplant_866566 | ticket update on inplant_866566 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_866566 ticket update ... | English |
| 2328 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 2329 | ticket update on inplant_866142 | ticket update on inplant_866142 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_866142 ticket update ... | English |
| 2330 | ticket update on inplant_866570 | ticket update on inplant_866570 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_866570 ticket update ... | English |
| 2331 | job Job_2573 failed in job_scheduler at: 10/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_44 | job Job_2573 failed in job_scheduler at: 10/04... | English |
| 2332 | missing owtlmpuv oicrjsfh in my team calendar ... | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | missing owtlmpuv oicrjsfh in my team calendar ... | English |
| 2333 | unable to connect to vpn while updating passwords | unable to connect to vpn while updating passwords | uyhceqzr tpbdwiyv | GRP_0 | unable to connect to vpn while updating passwo... | English |
| 2334 | password expired | password expired | uyhceqzr tpbdwiyv | GRP_0 | password expired password expired | English |
| 2335 | ms crm dynamics error : outlook addin | ms crm dynamics error : outlook addin | eziswfym cehwzojy | GRP_0 | ms crm dynamics error : outlook addin ms crm ... | English |
| 2336 | user wants crm mobile app to be donwloaded on ... | user wants crm mobile app to be donwloaded on ... | kupqvfaz mvcnylsx | GRP_0 | user wants crm mobile app to be donwloaded on ... | English |
| 2337 | access denied to collaboration_platform. | i cannot access or go to libraries in collabor... | wfzgituk rxvqzopt | GRP_16 | access denied to collaboration_platform. i can... | English |
| 2338 | need crm added to outlook ribbon in microsoft ... | need crm added to outlook ribbon in microsoft ... | kupqvfaz mvcnylsx | GRP_0 | need crm added to outlook ribbon in microsoft ... | English |
| 2339 | power management query | power management query | qftpazns fxpnytmk | GRP_0 | power management query power management query | English |
| 2340 | vip 2-unable to load collaboration_platform site | unable to load collaboration_platform site | ihozauxs ohdqmipz | GRP_0 | vip 2-unable to load collaboration_platform si... | English |
| 2341 | company home page not loading | \r\n\r\nreceived from: gvcfhwjy.lyxcorqb@gmail... | gvcfhwjy lyxcorqb | GRP_0 | company home page not loading \r\n\r\nreceived... | English |
| 2342 | usa me access to : t:\finance\corporateaccount... | from: pjxclyhs fcniljtu \nsent: tuesday, octob... | pjxclyhs fcniljtu | GRP_34 | usa me access to : t:\finance\corporateaccount... | English |
| 2343 | lhqsm68267( patching_antivirus_sw prod ):node... | lhqsm68267( patching_antivirus_sw prod ):node... | oldrctiu bxurpsyi | GRP_12 | lhqsm68267( patching_antivirus_sw prod ):node... | English |
| 2344 | unable to load outlook | unable to load outlook | utdlmzyb dvfpraeg | GRP_0 | unable to load outlook unable to load outlook | English |
| 2345 | collaboration_platform not working ; server is... | collaboration_platform not working ; server is... | lwgytuxq qspdztiw | GRP_16 | collaboration_platform not working ; server is... | English |
| 2346 | urgent help required- outlook to crm mfg_toolt... | royhtub haujtimpton,\nunable to access crm thr... | dbroehva dgcyvxhw | GRP_0 | urgent help required- outlook to crm mfg_toolt... | English |
| 2347 | change of owner on collaboration_platform link | change of owner on collaboration_platform link | kvrmnuix yicpojmf | GRP_0 | change of owner on collaboration_platform link... | English |
| 2348 | coffee spillage on keybankrd | coffee spillage on keybankrd | fwgdbatq qgownfkv | GRP_3 | coffee spillage on keybankrd coffee spillage ... | English |
| 2349 | can you please check – marftgytin höpfner (... | can you please check – marftgytin höpfner (... | karoyclq ivlabkhu | GRP_22 | can you please check – marftgytin höpfner (... | English |
| 2350 | saved over excel file | \r\n\r\nreceived from: qzixratf.wrygjncl@gmail... | qzixratf wrygjncl | GRP_0 | saved over excel file \r\n\r\nreceived from: q... | English |
| 2351 | query on crm app | query on crm app | dpcxyjlz fuqzbetw | GRP_0 | query on crm app query on crm app | English |
| 2352 | printer -08 | configure the id 08 printer on the laptop. | kdhztcva smpynjae | GRP_19 | printer -08 configure the id 08 printer on the... | English |
| 2353 | locked out of poruxnwb yfaqhceo | received from: hwbukcsm.hwobikcv@gmail.com\r\n... | hwbukcsm hwobikcv | GRP_1 | locked out of poruxnwb yfaqhceo received from:... | English |
| 2354 | no audio on lat 7350 | no audio on lat 7350 | gbirhjat fptbrhwv | GRP_0 | no audio on lat 7350 no audio on lat 7350 | English |
| 2355 | windows password reset | windows password reset | kiqrvwat gwkpxzyt | GRP_0 | windows password reset windows password reset | English |
| 2356 | circuit outage: south_amerirtca, south_amerirt... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_8 | circuit outage: south_amerirtca, south_amerirt... | English |
| 2357 | issues with user profiles on HostName_108 | user profiles seem to be messed up on this ser... | boxrlpec fnkhwytl | GRP_12 | issues with user profiles on HostName_108 user... | English |
| 2358 | renew internal certificate for password_manage... | hello ,\n\nas discussed, please assist on rene... | ugyothfz ugrmkdhx | GRP_39 | renew internal certificate for password_manage... | English |
| 2359 | ticket upadate on :inplant_866142 | ticket upadate on :inplant_866142 | efbwiadp dicafxhv | GRP_0 | ticket upadate on :inplant_866142 ticket upada... | English |
| 2360 | erp SID_34 password reset | erp SID_34 password reset | varldgiw hfyogqnj | GRP_0 | erp SID_34 password reset erp SID_34 password... | English |
| 2361 | job Job_1387 failed in job_scheduler at: 10/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1387 failed in job_scheduler at: 10/04... | English |
| 2362 | urgent : not able to share company catalog dat... | \nsummary:who can help me with collaboration_p... | hbmwlprq ilfvyodx | GRP_16 | urgent : not able to share company catalog dat... | English |
| 2363 | users at usa are not receiving inbound externa... | users at usa are not receiving inbound externa... | gvxfymjk euioadyf | GRP_37 | users at usa are not receiving inbound externa... | English |
| 2364 | missing email access: k-amerirtcas.hrss@compa... | i previously had access to the amerirtcas_hrss... | vpksyfco chosuygq | GRP_0 | missing email access: k-amerirtcas.hrss@compa... | English |
| 2365 | unlock and reset password user ( vvamrtryot ) | just to inform you that user vvamrtryot seems ... | gdsjrxwl pzhyxdiq | GRP_2 | unlock and reset password user ( vvamrtryot ) ... | English |
| 2366 | outlook stuck on processing | outlook stuck on processing | hybiaxlk lawptzir | GRP_0 | outlook stuck on processing outlook stuck on ... | English |
| 2367 | erp gui is missing login options for xhaomnjl ... | erp gui is missing login options for xhaomnjl ... | olckhmvx pcqobjnd | GRP_0 | erp gui is missing login options for xhaomnjl ... | English |
| 2368 | xhaomnjl ctusaqpr called for erp account unlock | xhaomnjl ctusaqpr called for erp account unlock | olckhmvx pcqobjnd | GRP_0 | xhaomnjl ctusaqpr called for erp account unloc... | English |
| 2369 | windows acccount lockout | windows acccount lockout | rguyoajm zfcquswp | GRP_0 | windows acccount lockout windows acccount lockout | English |
| 2370 | update inwarehouse_tool documents from list fo... | with the germany office move the main inwareho... | mynfoicj riuvxdas | GRP_13 | update inwarehouse_tool documents from list fo... | English |
| 2371 | clients laptop will not turn on | clients laptop will not turn on | zhvrtnom waedkqzj | GRP_3 | clients laptop will not turn on clients laptop... | English |
| 2372 | erp SID_34 password reset | erp SID_34 password reset | rkimfqta oepigwmr | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 2373 | product management master, key figures dierppear | sample before refresh\r\n\r\n \r\n\r\n\r\nafte... | uwofavej hxyatnjc | GRP_9 | product management master, key figures dierppe... | English |
| 2374 | i received an error when trying to log in to d... | error i received says "our records indicate yo... | jmxrabzy dpyvjcxr | GRP_0 | i received an error when trying to log in to d... | English |
| 2375 | email address: dbryhtuown@task.com has been ne... | email address: dbryhtuown@task.com has been ne... | lkmhgiwv omkfxdcq | GRP_26 | email address: dbryhtuown@task.com has been ne... | English |
| 2376 | erp font small. | i've received a new laptop (latitude 7275), af... | cgxhmrvu dbwspjet | GRP_0 | erp font small. i've received a new laptop (la... | English |
| 2377 | skype login after changing password | \r\n\r\nreceived from: doxiqkws.uvrzcqmf@gmail... | doxiqkws uvrzcqmf | GRP_0 | skype login after changing password \r\n\r\nre... | English |
| 2378 | second monitor not working | \r\n\r\nreceived from: iqcylpok.ascpqvni@gmail... | iqcylpok ascpqvni | GRP_3 | second monitor not working \r\n\r\nreceived fr... | English |
| 2379 | reset the password for fueiklyv jargqpkm on er... | please reset my password for SID_34 erp produc... | fueiklyv jargqpkm | GRP_0 | reset the password for fueiklyv jargqpkm on er... | English |
| 2380 | i need removed from my profile | i updated my profile in the new single sign on... | yrhnxpvi drlbzqpi | GRP_2 | i need removed from my profile i updated my pr... | English |
| 2381 | password reset | request to reset user's password \n th... | apokrfjv mdiepcul | GRP_0 | password reset request to reset user's pa... | English |
| 2382 | EU_tool ws ewew8323843 funktioniert nicht \jio... | EU_tool ws ewew8323843 funktioniert nicht \jio... | jionmpsf wnkpzcmv | GRP_24 | EU_tool ws ewew8323843 funktioniert nicht \jio... | Danish |
| 2383 | bluescreen ewew8323733 \wrcktgbd wzrgyunp | hallo ,\r\n\r\nmein pc zeigt blaue seite mit v... | wrcktgbd wzrgyunp | GRP_24 | bluescreen ewew8323733 \wrcktgbd wzrgyunp hall... | German |
| 2384 | key figure dierppears - urgent refer :inplant... | \r\n\r\nreceived from: uwofavej.hxyatnjc@gmail... | uwofavej hxyatnjc | GRP_9 | key figure dierppears - urgent refer :inplant... | English |
| 2385 | skype issue : personal certificate error | skype issue : personal certificate error | keinyujo torvxeda | GRP_0 | skype issue : personal certificate error skyp... | English |
| 2386 | password reset | \n request to reset user's password \n ... | icyxtqej lqsjrgzt | GRP_0 | password reset \n request to reset user's p... | English |
| 2387 | account got locked | account got locked | edrglpvu ihpzqksy | GRP_0 | account got locked account got locked | English |
| 2388 | system took a long time to respond after a pas... | system took a long time to respond after a pas... | vncowmbd hyfzcqpi | GRP_0 | system took a long time to respond after a pas... | English |
| 2389 | user lndypaqg dhqwtcsr (gogtyekthyto) hat sein... | user lndypaqg dhqwtcsr (gogtyekthyto) hat sein... | qgopxabz xnuieqjr | GRP_0 | user lndypaqg dhqwtcsr (gogtyekthyto) hat sein... | English |
| 2390 | unable to connect to expense reimbursement web... | unable to connect to expense reimbursement web... | jziwhldq qslwyozu | GRP_0 | unable to connect to expense reimbursement web... | English |
| 2391 | distributor_tool does not have a list of favor... | issue occurred after a recent password change. | jvpqlgib yuhcljqp | GRP_0 | distributor_tool does not have a list of favor... | English |
| 2392 | gurts lrupiepens email forwarding | \n\nreceived from: hpqjaory.gfrwmije@gmail.com... | hpqjaory gfrwmije | GRP_26 | gurts lrupiepens email forwarding \n\nreceived... | English |
| 2393 | please reset my password for hana SID_60,SID_5... | please reset my password for hana SID_60,SID_5... | oncidblt ucewizyd | GRP_53 | please reset my password for hana SID_60,SID_5... | English |
| 2394 | erp password reset : erp SID_34 | erp password reset : erp SID_34 | ranjhczs qvcwptbr | GRP_0 | erp password reset : erp SID_34 erp password r... | English |
| 2395 | HostName_113 : rfcserver.exe process count ser... | HostName_113 : rfcserver.exe process count ser... | rkupnshb gsmzfojw | GRP_14 | HostName_113 : rfcserver.exe process count ser... | English |
| 2396 | xceliron process where pos are auto received i... | xceliron process where pos are auto received i... | xkmvpaei fizqoprk | GRP_29 | xceliron process where pos are auto received i... | English |
| 2397 | crm app on ios10 | crm app on ios10 | jziwhldq qslwyozu | GRP_0 | crm app on ios10 crm app on ios10 | English |
| 2398 | schnafk - docking station needs replacement | desk: 455 - cubicle number in the customer ser... | toeibhlp gukqjwnr | GRP_3 | schnafk - docking station needs replacement de... | English |
| 2399 | collaboration_platform access | \n\nreceived from: frydqbgs.ugmnzfik@gmail.com... | frydqbgs ugmnzfik | GRP_16 | collaboration_platform access \n\nreceived fro... | English |
| 2400 | unable to sign in to skype | unable to sign in to skype | sprzgqyv uxpjtgaw | GRP_0 | unable to sign in to skype unable to sign in t... | English |
| 2401 | view drawing in engineering tool, erp gui and ... | since a couple days we see huge performance is... | tghrloks jbgcvlmf | GRP_14 | view drawing in engineering tool, erp gui and ... | English |
| 2402 | updation required in flash player | \r\n\r\nreceived from: ipydfcqo.kdxsquzn@gmail... | ipydfcqo kdxsquzn | GRP_0 | updation required in flash player \r\n\r\nrece... | English |
| 2403 | plm-engineering tool: pdf-files can not be op... | \r\n\r\nreceived from: tgafnyzb.hnevrcuj@gmail... | tgafnyzb hnevrcuj | GRP_14 | plm-engineering tool: pdf-files can not be op... | German |
| 2404 | info type '0017' is missing to personal number... | from: qkmvosen opundxsk \nsent: tuesday, octob... | qkmvosen opundxsk | GRP_10 | info type '0017' is missing to personal number... | English |
| 2405 | probleme mit ie \vzqomdgt jwoqbuml | probleme mit ie \vzqomdgt jwoqbuml | vzqomdgt jwoqbuml | GRP_24 | probleme mit ie \vzqomdgt jwoqbuml probleme mi... | Danish |
| 2406 | sinic allgemeiner fehler: 3155 odbc vmsliazh l... | sinic allgemeiner fehler: 3155 odbc vmsliazh l... | jionmpsf wnkpzcmv | GRP_24 | sinic allgemeiner fehler: 3155 odbc vmsliazh l... | German |
| 2407 | probleme mit drucker we110 \fdyietau dvsyxwbu | hallo ,\r\n\r\nunser kopierer im schulungsraum... | fdyietau dvsyxwbu | GRP_24 | probleme mit drucker we110 \fdyietau dvsyxwbu ... | German |
| 2408 | job Job_593 failed in job_scheduler at: 10/04/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/04/... | English |
| 2409 | msd crm | urgent help required, i cant link an appointme... | qmpobijv wamtbupd | GRP_40 | msd crm urgent help required, i cant link an a... | English |
| 2410 | job Job_1355 failed in job_scheduler at: 10/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1355 failed in job_scheduler at: 10/04... | English |
| 2411 | outlook issues - does not pull /send emails - ... | login: peathryucoj1\ni have issues with my ema... | repyzajo lxfwopyq | GRP_0 | outlook issues - does not pull /send emails - ... | English |
| 2412 | i cannot pick calls up from my phone | ebhl8111120 does not ring when there is a call. | npfkbdxo vdyltfzx | GRP_7 | i cannot pick calls up from my phone ebhl81111... | English |
| 2413 | infopath is not working. | infopath is not working. | sxhcapoe kbluefip | GRP_0 | infopath is not working. infopath is not working. | English |
| 2414 | account locked. password reset request. | account locked. password reset request. | edrglpvu ihpzqksy | GRP_0 | account locked. password reset request. accoun... | English |
| 2415 | need access to \\891245132\scan | \nzugriff auf verzeichnis angefragt.\nfolder a... | ohdrnswl rezuibdt | GRP_19 | need access to \\891245132\scan \nzugriff auf ... | English |
| 2416 | need your help!! | \n\nreceived from: ezwcpqrh.bnwqaglk@gmail.com... | ezwcpqrh bnwqaglk | GRP_0 | need your help!! \n\nreceived from: ezwcpqrh.... | English |
| 2417 | 7350 wifi not connecting | 7350 wifi not connecting | gtrspvoq dbkuhjvf | GRP_0 | 7350 wifi not connecting 7350 wifi not connecting | English |
| 2418 | windows password reset | windows password reset | rguyoajm zfcquswp | GRP_0 | windows password reset windows password reset | English |
| 2419 | crm- extensions - forecast view | \r\n\r\nreceived from: ctzykflo.evzbhgru@gmail... | ctzykflo evzbhgru | GRP_40 | crm- extensions - forecast view \r\n\r\nreceiv... | English |
| 2420 | app probleme | \r\n\r\nreceived from: ecoljnvt.lbdqmvfs@gmail... | ecoljnvt lbdqmvfs | GRP_0 | app probleme \r\n\r\nreceived from: ecoljnvt.l... | German |
| 2421 | unable to create delivery | please provide the following:\r\n\r\nwhat orde... | mvwiygou rpkscnlv | GRP_29 | unable to create delivery please provide the f... | English |
| 2422 | unable to do ethics course. have not received ... | mr. kothyherr has not received any mail from e... | ecoljnvt lbdqmvfs | GRP_23 | unable to do ethics course. have not received ... | German |
| 2423 | frequent account locked out | frequent account locked out | gxawkhsq xqrczonv | GRP_0 | frequent account locked out frequent account l... | English |
| 2424 | account locked. | account locked. | tigwlquj evynjiar | GRP_0 | account locked. account locked. | English |
| 2425 | prognose crm - forecast to plan dashbankrd not... | \r\n\r\nreceived from: ctzykflo.evzbhgru@gmail... | ctzykflo evzbhgru | GRP_22 | prognose crm - forecast to plan dashbankrd not... | English |
| 2426 | outlook is not updating. | outlook is not updating. | pltkqrfd bfohnjmz | GRP_0 | outlook is not updating. outlook is not updating. | English |
| 2427 | job Job_2645 failed in job_scheduler at: 10/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 10/04... | English |
| 2428 | i am still unable to "salesperson" and "uacylt... | name:alparslanthyr\nlanguage:\nbrowser:microso... | lanigpkq qzhakunx | GRP_25 | i am still unable to "salesperson" and "uacylt... | English |
| 2429 | not able to login to ethics portal_ kxmidsga z... | \r\n\r\nreceived from: kxmidsga.zokivdfa@gmail... | kxmidsga zokivdfa | GRP_23 | not able to login to ethics portal_ kxmidsga z... | English |
| 2430 | please provide access to m drive | \n\nreceived from: dshferby.houtnzdi@gmail.com... | dshferby houtnzdi | GRP_12 | please provide access to m drive \n\nreceived ... | English |
| 2431 | issue with bobj | dear all,\r\n\r\ncan you please fix the bobj p... | mjvfxnka zvjxuahe | GRP_9 | issue with bobj dear all,\r\n\r\ncan you pleas... | English |
| 2432 | problems with wifi | \r\n\r\nreceived from: hpeknoam.yrfowmva@gmail... | hpeknoam yrfowmva | GRP_0 | problems with wifi \r\n\r\nreceived from: hpek... | English |
| 2433 | timecards access in ticketing_tool | i have noticed that i don't have access to tim... | gpabsizh txldupyk | GRP_36 | timecards access in ticketing_tool i have noti... | English |
| 2434 | job HostName_1019failagain failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019failagain failed in job_sched... | English |
| 2435 | pgi for delivery note 9169475765 not possible | pgi for delivery note 9169475765 not possible ... | tvmlrwkz rsxftjep | GRP_2 | pgi for delivery note 9169475765 not possible ... | English |
| 2436 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 2437 | account locked in ad | account locked in ad | savwzktn huqxbfot | GRP_0 | account locked in ad account locked in ad | English |
| 2438 | kann sich nicht anmelden | kann sich nicht anmelden | bwafcjmt wutqczgh | GRP_33 | kann sich nicht anmelden kann sich nicht anmelden | German |
| 2439 | do i have to worry about this? | \r\n\r\nreceived from: hbmwlprq.ilfvyodx@gmail... | hbmwlprq ilfvyodx | GRP_0 | do i have to worry about this? \r\n\r\nreceive... | English |
| 2440 | unable to login to HostName_589 vsphere client. | unable to login to HostName_589 vsphere client... | zgemhkby lgwkstcb | GRP_12 | unable to login to HostName_589 vsphere client... | English |
| 2441 | material specification code | the material code trn-hdt-kmc026 is available ... | ctvaejbo mjcerqwo | GRP_11 | material specification code the material code ... | English |
| 2442 | plm7 enterprise search for engineering records... | hello, since a while the plm7 enterprise searc... | nobwzdvh yqjugexl | GRP_11 | plm7 enterprise search for engineering records... | English |
| 2443 | request to reset microsoft online services pas... | request to reset user's password \n the... | oebrjdqc nhuqmskw | GRP_0 | request to reset microsoft online services pas... | English |
| 2444 | job Job_1329 failed in job_scheduler at: 10/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1329 failed in job_scheduler at: 10/04... | English |
| 2445 | vh 27 - werk germany - fehlende druckaufträge... | \r\nbei drucker vh 27 keine ausgabe der drucka... | ucawbivs ountxzir | GRP_0 | vh 27 - werk germany - fehlende druckaufträge... | English |
| 2446 | ethics_application not found | \r\n\r\nreceived from: vfoyenlw.ntpbdeyf@gmail... | vfoyenlw ntpbdeyf | GRP_0 | ethics_application not found \r\n\r\nreceived ... | English |
| 2447 | ethics login issue | \r\n\r\nreceived from: ohdrnswl.rezuibdt@gmail... | ohdrnswl rezuibdt | GRP_23 | ethics login issue \r\n\r\nreceived from: ohdr... | English |
| 2448 | unable to login to ethics training course | hi, when i'm trying to login to ethics trainin... | aqourvgz mkehgcdu | GRP_23 | unable to login to ethics training course hi, ... | English |
| 2449 | issue playing courage change win video | \r\n\r\nreceived from: saerpwno.qsdfmakc@gmail... | saerpwno qsdfmakc | GRP_0 | issue playing courage change win video \r\n\r\... | English |
| 2450 | unable to print from wy33 printer | unable to print from wy33 printer\n___________... | cowsvzel ryhkefwv | GRP_19 | unable to print from wy33 printer unable to pr... | English |
| 2451 | install lauacyltoe hxgaycze version of flash p... | \r\n\r\nreceived from: saerpwno.qsdfmakc@gmail... | saerpwno qsdfmakc | GRP_0 | install lauacyltoe hxgaycze version of flash p... | English |
| 2452 | job pp_EU_tool_netch_keheu2 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_keheu2 failed in job_sche... | English |
| 2453 | SID_51 password | \r\n\r\nreceived from: qycgdfhz.iqshzdru@gmail... | qycgdfhz iqshzdru | GRP_2 | SID_51 password \r\n\r\nreceived from: qycgdfh... | English |
| 2454 | erp performances this morning via vpn germany | \n\nreceived from: blktuiae.jzakfmhw@gmail.com... | blktuiae jzakfmhw | GRP_0 | erp performances this morning via vpn germany ... | English |
| 2455 | collaboration_platform site is not opening | collaboration_platform site is not opening | anpocezt qturbxsg | GRP_0 | collaboration_platform site is not opening col... | English |
| 2456 | changes in ad | hi, there,\r\nmy reporting line in the outlook... | ywbnzxud qzwrynux | GRP_2 | changes in ad hi, there,\r\nmy reporting line ... | English |
| 2457 | flash player version | \r\n\r\nreceived from: elixsfvu.pxwbjofl@gmail... | elixsfvu pxwbjofl | GRP_0 | flash player version \r\n\r\nreceived from: el... | English |
| 2458 | i can't log into the vpn or ticketing_tool. i ... | from: dartnl porwrloisky [mailto:mreocsnk.swoy... | mreocsnk swoyxzma | GRP_0 | i can't log into the vpn or ticketing_tool. i ... | English |
| 2459 | summary:when i run wip list and try to do my r... | summary:when i run wip list and try to do my r... | gdpxqyhj iapghvke | GRP_0 | summary:when i run wip list and try to do my r... | English |
| 2460 | issues with crm dynamics | issues with crm dynamics. need permissions. wh... | fsvnjexu yxaevupi | GRP_22 | issues with crm dynamics issues with crm dynam... | English |
| 2461 | my account will expire soon, please help to ex... | my account will expire soon, please help to ex... | hlrmufzx qcdzierm | GRP_2 | my account will expire soon, please help to ex... | English |
| 2462 | do not receive information | \r\n\r\nreceived from: duoyrpvi.wgjpviul@gmail... | nehxmtpg xepltzqf | GRP_2 | do not receive information \r\n\r\nreceived fr... | English |
| 2463 | blank call | blank call | fumkcsji sarmtlhy | GRP_0 | blank call blank call | English |
| 2464 | kicked off of vpn | i was kicked off of vpn for the 3rd time today... | gakceqyb edrjthvo | GRP_0 | kicked off of vpn i was kicked off of vpn for ... | English |
| 2465 | potential security issue with the ios 10 update | potential security issue with the ios 10 update | cyxieuwk rekwlqmu | GRP_0 | potential security issue with the ios 10 updat... | English |
| 2466 | outlook error | outlook error | pgrqbizd tolwefig | GRP_0 | outlook error outlook error | English |
| 2467 | urgent help required-outlook to crm mfg_toolti... | \r\n\r\nreceived from: fjohugzb.fhagjskd@gmail... | fjohugzb fhagjskd | GRP_0 | urgent help required-outlook to crm mfg_toolti... | English |
| 2468 | unable to connect to wireless | user called in for an issue where he was not a... | udetjzmn ayueswcm | GRP_0 | unable to connect to wireless user called in f... | English |
| 2469 | unable to update new password on iphone | unable to update new password on iphone | fjohugzb fhagjskd | GRP_0 | unable to update new password on iphone unable... | English |
| 2470 | unable to update passwords for all accounts | unable to update passwords for all accounts | fjohugzb fhagjskd | GRP_0 | unable to update passwords for all accounts un... | English |
| 2471 | network outage : cantabria (mecftgobusa) site ... | what type of outage: __x___network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage : cantabria (mecftgobusa) site ... | English |
| 2472 | ethics training | \r\n\r\nreceived from: rolcgqhx.ehndjmlv@gmail... | rolcgqhx ehndjmlv | GRP_0 | ethics training \r\n\r\nreceived from: rolcgqh... | English |
| 2473 | unable to open/edit expense report for employee | unable to open/edit expense report for employee | vyluaepi dtwfaejr | GRP_0 | unable to open/edit expense report for employe... | English |
| 2474 | cannot log in | \n\nreceived from: zwirhcol.narzlmfw@gmail.com... | zwirhcol narzlmfw | GRP_0 | cannot log in \n\nreceived from: zwirhcol.narz... | English |
| 2475 | unable to safe attachment on erp | when i try to safe a file to a sales order in ... | zwqveghb rxdmstng | GRP_0 | unable to safe attachment on erp when i try to... | English |
| 2476 | sales history not correct in apo (dp) | \n\nreceived from: koqntham.sqiuctfl@gmail.com... | koqntham sqiuctfl | GRP_6 | sales history not correct in apo (dp) \n\nrece... | English |
| 2477 | job Job_3194 failed in job_scheduler at: 10/03... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 10/03... | English |
| 2478 | external site not loading | external site not loading | wbtrvdsi gdbuvszx | GRP_0 | external site not loading external site not lo... | English |
| 2479 | account unlock | account unlock | erckhtzj tdmkgoie | GRP_0 | account unlock account unlock | English |
| 2480 | crm in outlook not working // grethyg | crm in outlook not working // grethyg | rbozivdq gmlhrtvp | GRP_0 | crm in outlook not working // grethyg crm in o... | English |
| 2481 | windows account unlock | windows account unlock | syclwnxe jhgdesun | GRP_0 | windows account unlock windows account unlock | English |
| 2482 | windows account lockout | windows account lockout | vupmctne ylnsweao | GRP_0 | windows account lockout windows account lockout | English |
| 2483 | windows password reset | windows password reset | rtpmlwnk unpambrv | GRP_0 | windows password reset windows password reset | English |
| 2484 | unable to sign in to skype | unable to sign in to skype | kvqtzayg ehjrviak | GRP_0 | unable to sign in to skype unable to sign in t... | English |
| 2485 | getting knocked off vpn | was knocked off vpn about 1:10pm et today and ... | gakceqyb edrjthvo | GRP_0 | getting knocked off vpn was knocked off vpn ab... | English |
| 2486 | all of my purchasing suppliers in the us are s... | my purchasing catalogs are no longer there. wh... | xwyrvcbj bmqfszjg | GRP_29 | all of my purchasing suppliers in the us are s... | English |
| 2487 | vpn connectivity issues | my vpn dropped twice this morning and twice si... | wsomjhce afjkuwih | GRP_2 | vpn connectivity issues my vpn dropped twice t... | English |
| 2488 | unable to enter an estimated value in opportun... | unable to enter an estimated value in opportun... | wanyrjkg tsycmeof | GRP_22 | unable to enter an estimated value in opportun... | English |
| 2489 | unable to sign in to outlook | unable to sign in to outlook | jmusidzr sratdeol | GRP_0 | unable to sign in to outlook unable to sign in... | English |
| 2490 | reset windows password for all accounts | reset windows password for all accounts | ycazngpi mdsqixlr | GRP_0 | reset windows password for all accounts reset ... | English |
| 2491 | unable to login to erp | unable to login to erp | jmusidzr sratdeol | GRP_0 | unable to login to erp unable to login to erp | English |
| 2492 | printing request - request transaction print t... | please complete all required questions below. ... | omiwzbue auvolfhp | GRP_45 | printing request - request transaction print t... | English |
| 2493 | password change | password change | oqzgvkrh jiylqwtc | GRP_0 | password change password change | English |
| 2494 | unable to login to skype | unable to login to skype | tqemuawj mvcqrbaz | GRP_0 | unable to login to skype unable to login to skype | English |
| 2495 | i have old version ethics training on my accou... | i have old version ethics training on my accou... | kzusmblv lnkbxdst | GRP_23 | i have old version ethics training on my accou... | English |
| 2496 | map i drive | map i drive | cifgxham iuzefkha | GRP_0 | map i drive map i drive | English |
| 2497 | crm not synching mails | crm not synching mails | grtaoivq dwjvfkqe | GRP_0 | crm not synching mails crm not synching mails | English |
| 2498 | vpn / erp log out | \n\nreceived from: mnlvhtug.imvetgoa@gmail.com... | mnlvhtug imvetgoa | GRP_0 | vpn / erp log out \n\nreceived from: mnlvhtug.... | English |
| 2499 | user wish to set lan as first priority for int... | user wish to set lan as first priority for int... | rozsyfai zncajubh | GRP_3 | user wish to set lan as first priority for int... | English |
| 2500 | external caller asking for vtykrubi whsipqno's... | external caller asking for vtykrubi whsipqno's... | rbozivdq gmlhrtvp | GRP_0 | external caller asking for vtykrubi whsipqno's... | English |
| 2501 | unable to open an website | unable to open an website | wzbqmhdf gxsiadqw | GRP_0 | unable to open an website unable to open an we... | English |
| 2502 | unlock erp SID_34 account | unlock erp SID_34 account | vydbqise wkjrmxqh | GRP_0 | unlock erp SID_34 account unlock erp SID_34 ac... | English |
| 2503 | help to install - engineering_tool to other pe... | hi team, \n\ni need your help, we have a peopl... | qasdhyzm yuglsrwx | GRP_0 | help to install - engineering_tool to other pe... | English |
| 2504 | monitor on wire pc is out. | monitor on wire pc is out. | leyvdwjt biaklozn | GRP_3 | monitor on wire pc is out. monitor on wire pc ... | English |
| 2505 | unable to find name as sales person in enginee... | unable to find name as sales person in enginee... | lanigpkq qzhakunx | GRP_25 | unable to find name as sales person in enginee... | English |
| 2506 | windows account lockout | windows account lockout | gxibtzek fgkpqjsb | GRP_0 | windows account lockout windows account lockout | English |
| 2507 | usa plant : all the switches and servers are d... | usa plant : all the switches and servers are d... | rkupnshb gsmzfojw | GRP_8 | usa plant : all the switches and servers are d... | English |
| 2508 | internet is down | lwgytuxq qspdztiw called in for an issue where... | lwgytuxq qspdztiw | GRP_4 | internet is down lwgytuxq qspdztiw called in f... | English |
| 2509 | outlook calendar shatryung | \n\nreceived from: gdnwlkit.jokidavy@gmail.com... | gdnwlkit jokidavy | GRP_0 | outlook calendar shatryung \n\nreceived from: ... | English |
| 2510 | quotes in workflow | from: wjslkzfr jxlbzwrp \r\nsent: monday, octo... | wjslkzfr jxlbzwrp | GRP_13 | quotes in workflow from: wjslkzfr jxlbzwrp \r... | English |
| 2511 | unable to open outlook after changing password | unable to open outlook after changing password | vupmctne ylnsweao | GRP_0 | unable to open outlook after changing password... | English |
| 2512 | unable to login to skype | name:ksgytjqr ojdukgzc\nlanguage:\nbrowser:mic... | ksgytjqr ojdukgzc | GRP_0 | unable to login to skype name:ksgytjqr ojdukgz... | English |
| 2513 | ethics | \n\nreceived from: soujqrxw.mvwduljx@gmail.com... | soujqrxw mvwduljx | GRP_0 | ethics \n\nreceived from: soujqrxw.mvwduljx@gm... | English |
| 2514 | 7350 - no audio device | no audio device on the pc, failed to play uacy... | iqthfjvx qkpgrfzx | GRP_0 | 7350 - no audio device no audio device on the ... | English |
| 2515 | vpn issues | \r\n\r\nreceived from: uvorgwts.mlqzaicb@gmail... | uvorgwts mlqzaicb | GRP_0 | vpn issues \r\n\r\nreceived from: uvorgwts.mlq... | English |
| 2516 | password reset from password_management_tool | password reset from password_management_tool | jvshydix rzpmnylt | GRP_0 | password reset from password_management_tool p... | English |
| 2517 | vip 2: ie crashes on opening mii from ess portal | vip 2: ie crashes on opening mii from ess port... | jwhmqnye xlpvdwre | GRP_3 | vip 2: ie crashes on opening mii from ess port... | English |
| 2518 | renew internal certificate for password_manage... | renew internal certificate for password_manage... | ugyothfz ugrmkdhx | GRP_2 | renew internal certificate for password_manage... | English |
| 2519 | e-mail and certificates not going to lean part... | today, i created a lean event in our collabora... | fohvgnkd stfmcapj | GRP_16 | e-mail and certificates not going to lean part... | English |
| 2520 | unable to create a collaboration_platform coll... | pollaurid is unable to enable sp on an account... | msarjyhi fpxdbeno | GRP_40 | unable to create a collaboration_platform coll... | English |
| 2521 | issue in viewing pay statements in hr_tool | it appears that i have a browser issue in view... | qfcxbpht oiykfzlr | GRP_0 | issue in viewing pay statements in hr_tool it... | English |
| 2522 | global_telecom_1 number | global_telecom_1 number | msarjyhi fpxdbeno | GRP_0 | global_telecom_1 number global_telecom_1 number | English |
| 2523 | telephony_software password reset | good morning, need a password reset for teleph... | vfjsubao yihelxgp | GRP_7 | telephony_software password reset good morning... | English |
| 2524 | printer not printing | printer not printing | plqbesvo uopaexic | GRP_0 | printer not printing printer not printing | English |
| 2525 | cad team code - characteristic | can you please add "manuf eng – us_plant" ?\r\n | ctvaejbo mjcerqwo | GRP_11 | cad team code - characteristic can you please ... | English |
| 2526 | minitab license issue - cannot run minitab as ... | minitab license issue - cannot run minitab as ... | slzhuipc sqntcber | GRP_3 | minitab license issue - cannot run minitab as ... | English |
| 2527 | hr_tool time application - this morning i do n... | hr_tool time application - this morning i do n... | ylfqrzxg jmakitug | GRP_0 | hr_tool time application - this morning i do n... | English |
| 2528 | crm issue for iphone | \r\n\r\nreceived from: zfburidj.jmilguev@gmail... | zfburidj jmilguev | GRP_0 | crm issue for iphone \r\n\r\nreceived from: zf... | English |
| 2529 | password reset | password reset | ygdrujzi rvyjdlwb | GRP_0 | password reset password reset | English |
| 2530 | url not working | url not working | mxifcasu cxsembup | GRP_0 | url not working url not working | English |
| 2531 | password_management_tool password manager change? | \r\n\r\nreceived from: hpqjaory.gfrwmije@gmail... | hpqjaory gfrwmije | GRP_0 | password_management_tool password manager chan... | English |
| 2532 | reset passwords for qwsjptlo hnlasbed using pa... | the | goaxzsql qpjnbgsa | GRP_17 | reset passwords for qwsjptlo hnlasbed using pa... | English |
| 2533 | reset passwords for qwsjptlo hnlasbed using pa... | the | goaxzsql qpjnbgsa | GRP_17 | reset passwords for qwsjptlo hnlasbed using pa... | English |
| 2534 | business_client issue | \r\n\r\nreceived from: eqtofwbm.mojfbwds@gmail... | eqtofwbm mojfbwds | GRP_0 | business_client issue \r\n\r\nreceived from: e... | English |
| 2535 | hardware item coming wrong in labeling in war... | please change erp logic that currently identif... | tzbqlfao dhlbputy | GRP_20 | hardware item coming wrong in labeling in war... | English |
| 2536 | problem opening the password_management_tool p... | \r\n\r\nreceived from: jmrukcfq.rdyuxomp@gmail... | jmrukcfq rdyuxomp | GRP_0 | problem opening the password_management_tool p... | English |
| 2537 | circuit outage: india carrier, company-ap-ind-... | what type of outage: _____network x_____c... | utyeofsk rdyzpwhi | GRP_8 | circuit outage: india carrier, company-ap-ind-... | English |
| 2538 | passwords to be reset for erp SID_34 | \r\n\r\nreceived from: dpuifqeo.eglwsfkn@gmail... | dpuifqeo eglwsfkn | GRP_0 | passwords to be reset for erp SID_34 \r\n\r\nr... | English |
| 2539 | reset the password for jmusidzr sratdeol on er... | reset the password for jmusidzr sratdeol on er... | jmusidzr sratdeol | GRP_0 | reset the password for jmusidzr sratdeol on er... | English |
| 2540 | united kingdom has problems with making outbou... | united kingdom has issues with making outbound... | zmgsfner caltmgoe | GRP_7 | united kingdom has problems with making outbou... | English |
| 2541 | a user was able to add a zj partner in SID_34 ... | someone in the service center was able to succ... | nkthumgf mwgdenbs | GRP_13 | a user was able to add a zj partner in SID_34 ... | English |
| 2542 | pos data - september, 2016. | please provide pos data for the month of septe... | mxawhbun siyqthel | GRP_9 | pos data - september, 2016. please provide po... | English |
| 2543 | password reset | \n\nfrom: nwfodmhc exurcwkm \nsent: monday, oc... | vfitdsyk lpezkyqx | GRP_0 | password reset \n\nfrom: nwfodmhc exurcwkm \n... | English |
| 2544 | outlook security certificate notification | \r\n\r\nreceived from: vsiemxgh.lgeciroy@gmail... | vsiemxgh lgeciroy | GRP_0 | outlook security certificate notification \r\n... | English |
| 2545 | sales office mw01 is not defined for sales are... | when we opened new order 35093500 we got comm... | ylitqvaj ljxdfhus | GRP_13 | sales office mw01 is not defined for sales are... | English |
| 2546 | job Job_593 failed in job_scheduler at: 10/03/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 10/03/... | English |
| 2547 | issue is not resolved. error : @80@validity of... | browser:microsoft internet explorer\nemail:gqc... | gqcyomwf opjaiwcu | GRP_14 | issue is not resolved. error : @80@validity of... | English |
| 2548 | reset the password for dqowbefk prgxwzco on er... | i've just changed my all passwords because of ... | dqowbefk prgxwzco | GRP_0 | reset the password for dqowbefk prgxwzco on er... | English |
| 2549 | engineering tool - erp system message | a few users have reported the seeing the attac... | ctvaejbo mjcerqwo | GRP_0 | engineering tool - erp system message a few us... | English |
| 2550 | bex analyzer and bex designer is not working. | bex analyzer and bex designer is not working. | oncidblt ucewizyd | GRP_19 | bex analyzer and bex designer is not working. ... | English |
| 2551 | erpsys- certificate errors | \n\nreceived from: qgrbnjiu.hidzlfma@gmail.com... | hgcrtxez azoeingw | GRP_14 | erpsys- certificate errors \n\nreceived from: ... | English |
| 2552 | office has to be upgraded to 2016 | office has to be upgraded to 2016 | lanigpkq qzhakunx | GRP_0 | office has to be upgraded to 2016 office has t... | English |
| 2553 | reset passwords for bxeagsmt zrwdgsco using pa... | the | bxeagsmt zrwdgsco | GRP_17 | reset passwords for bxeagsmt zrwdgsco using pa... | English |
| 2554 | reset passwords for bxeagsmt zrwdgsco using pa... | the | bxeagsmt zrwdgsco | GRP_17 | reset passwords for bxeagsmt zrwdgsco using pa... | English |
| 2555 | look for identifying the root cause & solution... | dn 9169430548 has been received on august 11, ... | hgcrtxez azoeingw | GRP_18 | look for identifying the root cause & solution... | English |
| 2556 | engineering_tool not working | hello\n\nplease support our dealer for enginee... | sihtvocw yspnqxgw | GRP_0 | engineering_tool not working hello\n\nplease s... | English |
| 2557 | server access rights for hpmjtgik blrmfvyh | help desk\r\n\r\nplease usa an access right to... | wgpimkle kijhcwur | GRP_12 | server access rights for hpmjtgik blrmfvyh hel... | English |
| 2558 | access to m drive | please provide access to mtb mt sales drive .\... | enhjdypo rsbxiepn | GRP_12 | access to m drive please provide access to mtb... | English |
| 2559 | your mobile device is temporarily blocked from... | personal device.\r\n\r\n | qlurtxzs qalsvutw | GRP_0 | your mobile device is temporarily blocked from... | English |
| 2560 | lbxugpjw cnmfbdui-mobile phone changed | \r\n\r\nreceived from: lbxugpjw.cnmfbdui@gmail... | lbxugpjw cnmfbdui | GRP_0 | lbxugpjw cnmfbdui-mobile phone changed \r\n\r\... | English |
| 2561 | network outage:russia russia - warehouse netwo... | what type of outage: __x___network _____c... | bozdftwx smylqejw | GRP_8 | network outage:russia russia - warehouse netwo... | English |
| 2562 | account expired- vvamirsdwnp - pallutyr not ab... | from: kuhyndan lalthy \nsent: monday, october ... | dntxagwc whfdqxcs | GRP_2 | account expired- vvamirsdwnp - pallutyr not ab... | English |
| 2563 | lehsm012 & lehsm013 are down at at usa company... | lehsm012 & lehsm013 are down since 4:16 am on ... | jloygrwh acvztedi | GRP_12 | lehsm012 & lehsm013 are down at at usa company... | English |
| 2564 | network port not working | network port is not work and wifi network is v... | whavkycs unihdlfy | GRP_19 | network port not working network port is not w... | English |
| 2565 | unable to post billing to account - billed qua... | unable to post billing to account - billed qua... | lckagtry xcrmzgli | GRP_13 | unable to post billing to account - billed qua... | English |
| 2566 | need help in changing password on password_man... | need help in changing password on password_man... | aguxobqs upgtdafh | GRP_0 | need help in changing password on password_man... | English |
| 2567 | volume: c:\ label:sys-lhqsm68356 543aa385 on s... | volume: c:\ label:sys-lhqsm68356 543aa385 on s... | jloygrwh acvztedi | GRP_12 | volume: c:\ label:sys-lhqsm68356 543aa385 on s... | English |
| 2568 | job bkwin_search_server_prod_daily failed in j... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_search_server_prod_daily failed in j... | English |
| 2569 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 2570 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 2571 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 2572 | reset passwords for prgewfly ndtfvple using pa... | the | prgewfly ndtfvple | GRP_17 | reset passwords for prgewfly ndtfvple using pa... | English |
| 2573 | HostName_206:volume: /dev/SID_56ora is over 98... | HostName_206: volume: /dev/SID_56ora on server... | jyoqwxhz clhxsoqy | GRP_1 | HostName_206:volume: /dev/SID_56ora is over 98... | English |
| 2574 | always upservice.exe is not running on HostNam... | always upservice.exe is not running on HostNam... | jyoqwxhz clhxsoqy | GRP_14 | always upservice.exe is not running on HostNam... | English |
| 2575 | wireless outage again-taiwan 1003 | \r\n\r\nreceived from: ticqvhal.vgokzesi@gmail... | ticqvhal vgokzesi | GRP_4 | wireless outage again-taiwan 1003 \r\n\r\nrece... | English |
| 2576 | job Job_2549 failed in job_scheduler at: 10/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_2549 failed in job_scheduler at: 10/02... | English |
| 2577 | job Job_562 failed in job_scheduler at: 10/02/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_562 failed in job_scheduler at: 10/02/... | English |
| 2578 | zifujpvr vxfkwaqh | \r\n\r\nreceived from: makiosjc.kxapdhnm@gmail... | makiosjc kxapdhnm | GRP_0 | zifujpvr vxfkwaqh \r\n\r\nreceived from: makio... | English |
| 2579 | job Job_3049 failed in job_scheduler at: 10/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 10/02... | English |
| 2580 | job snp_heu_2_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_2_regen failed in job_scheduler at... | English |
| 2581 | email not working - "the server couldn't be co... | contact phone - \ncompany email not working - ... | zifujpvr vxfkwaqh | GRP_0 | email not working - "the server couldn't be co... | English |
| 2582 | ie browser issue : website not loading its con... | ie browser issue : website not loading its con... | epqyourg rxjipfum | GRP_0 | ie browser issue : website not loading its con... | English |
| 2583 | job bwhrattr failed in job_scheduler at: 10/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 10/02... | English |
| 2584 | frequent account lock out | frequent account lock out \r\nran lock out sta... | mrduhsci xmvkzqja | GRP_0 | frequent account lock out frequent account lo... | English |
| 2585 | cannot access mail from any device using owa o... | i lost access to mail on 9/29. i went in and ... | sdxjiwlq ynowzqfh | GRP_26 | cannot access mail from any device using owa o... | English |
| 2586 | reminder for approval of requisition 01453742 ... | reminder for approval of requisition 01453742 ... | oydlehun svnfrxdk | GRP_29 | reminder for approval of requisition 01453742 ... | English |
| 2587 | job Job_3049 failed in job_scheduler at: 10/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 10/02... | English |
| 2588 | job Job_3051 failed in job_scheduler at: 10/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3051 failed in job_scheduler at: 10/02... | English |
| 2589 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 2590 | only erp running slow in Israel.internet is wo... | only erp running slow.\ninternet is working fi... | wqfzjycu omleknjd | GRP_14 | only erp running slow in Israel.internet is wo... | English |
| 2591 | job Job_1142 failed in job_scheduler at: 10/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1142 failed in job_scheduler at: 10/02... | English |
| 2592 | job mm_zscr0099_wkly_qux1 failed in job_schedu... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_qux1 failed in job_schedu... | English |
| 2593 | job pp_EU_tool_netch_keheu1 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_keheu1 failed in job_sche... | English |
| 2594 | want to make sure if erp is in maintenance rig... | name:kvrmnuix yicpojmf\nlanguage:\nbrowser:mic... | kvrmnuix yicpojmf | GRP_0 | want to make sure if erp is in maintenance rig... | English |
| 2595 | job Job_1665 failed in job_scheduler at: 10/01... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1665 failed in job_scheduler at: 10/01... | English |
| 2596 | job oemcold failed in job_scheduler at: 10/01/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job oemcold failed in job_scheduler at: 10/01/... | English |
| 2597 | job Job_1108w failed in job_scheduler at: 10/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1108w failed in job_scheduler at: 10/0... | English |
| 2598 | job Job_3049 failed in job_scheduler at: 10/01... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 10/01... | English |
| 2599 | call conference to nahytu | call conference to nahytu | oxlqvika zrvbahym | GRP_0 | call conference to nahytu call conference to n... | English |
| 2600 | password reset alert from o365 | password reset alert from o365 | icyxtqej lqsjrgzt | GRP_0 | password reset alert from o365 password reset ... | English |
| 2601 | the e-mail account of horeduca ogrhivnm has co... | this is a serious breach of security as she is... | rozsyfai zncajubh | GRP_26 | the e-mail account of horeduca ogrhivnm has co... | English |
| 2602 | reset passwords for wxdvjoct ckxwtoam using pa... | the | wxdvjoct ckxwtoam | GRP_17 | reset passwords for wxdvjoct ckxwtoam using pa... | English |
| 2603 | when trying to hit the one note button on exis... | ms crm dynamics issue : collaboration_platform... | msarjyhi fpxdbeno | GRP_40 | when trying to hit the one note button on exis... | English |
| 2604 | The | \r\n\r\nreceived from: ohdrnswl.rezuibdt@gmail... | ohdrnswl rezuibdt | GRP_34 | The \r\n\r\nreceived from: ohdrnswl.rezuibdt@g... | English |
| 2605 | reset passwords for ytzpxhql ntfxgpms using pa... | the | ytzpxhql ntfxgpms | GRP_17 | reset passwords for ytzpxhql ntfxgpms using pa... | English |
| 2606 | erp password reset : SID_37 | erp password reset : SID_37 | msarjyhi fpxdbeno | GRP_0 | erp password reset : SID_37 erp password reset... | English |
| 2607 | vpn issue | \nsummary:i can not log into the vpn for na | vsbtygin oufhtbas | GRP_0 | vpn issue \nsummary:i can not log into the vp... | English |
| 2608 | windows account was locked out : unlocked account | windows account was locked out : unlocked account | jqxtbspr mpfdivlh | GRP_0 | windows account was locked out : unlocked acco... | English |
| 2609 | engineering_tool installation for sathyrui shi... | replied to email sending instructions how to i... | efbwiadp dicafxhv | GRP_0 | engineering_tool installation for sathyrui shi... | English |
| 2610 | problem when clicking on the shop link in pur... | \nfrom: alkuozfr bhqgdoiu \nsent: saturday, oc... | idlupnzr nkxylwrc | GRP_29 | problem when clicking on the shop link in pur... | English |
| 2611 | reisekostenabrechnung in erp nicht möglich! | \r\n\r\nreceived from: byclpwmv.esafrtbh@gmail... | byclpwmv esafrtbh | GRP_10 | reisekostenabrechnung in erp nicht möglich! \... | German |
| 2612 | power outage : usa- (company) site hard down s... | what type of outage: __x___network _____c... | spxqmiry zpwgoqju | GRP_8 | power outage : usa- (company) site hard down s... | English |
| 2613 | engineering_tool new customer creation please ... | \r\n\r\nreceived from: skmdgnuh.utgclesd@gmail... | skmdgnuh utgclesd | GRP_25 | engineering_tool new customer creation please ... | English |
| 2614 | have problem to access erp hana-urgent | \r\n\r\nreceived from: neokfwiy.ufriscym@gmail... | neokfwiy ufriscym | GRP_0 | have problem to access erp hana-urgent \r\n\r\... | English |
| 2615 | email id: spelling error | \r\n\r\nreceived from: santthyumar.shtyhant@co... | ploxzuts utvimnwo | GRP_2 | email id: spelling error \r\n\r\nreceived from... | English |
| 2616 | job bkwin_infonet1_full failed in job_schedule... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_infonet1_full failed in job_schedule... | English |
| 2617 | windows account locked | windows account locked | zidcxslw clyfdaki | GRP_0 | windows account locked windows account locked | English |
| 2618 | job Job_564 failed in job_scheduler at: 10/01/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_564 failed in job_scheduler at: 10/01/... | English |
| 2619 | network outage : engineering_toolkuznetsk ware... | what type of outage: __x___network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage : engineering_toolkuznetsk ware... | English |
| 2620 | job bkbackup_tool_HostName_768_prod_full faile... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_HostName_768_prod_full faile... | English |
| 2621 | job Job_534 failed in job_scheduler at: 10/01/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_534 failed in job_scheduler at: 10/01/... | English |
| 2622 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 2623 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 2624 | job Job_2551 failed in job_scheduler at: 09/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2551 failed in job_scheduler at: 09/30... | English |
| 2625 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 2626 | job SID_56filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_56filesys failed in job_scheduler at: ... | English |
| 2627 | i was on a skype call when programdnty locked ... | name:wpdxlbhz etvzjmhx\nlanguage:\nbrowser:mic... | wpdxlbhz etvzjmhx | GRP_0 | i was on a skype call when programdnty locked ... | English |
| 2628 | job Job_3186 failed in job_scheduler at: 09/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3186 failed in job_scheduler at: 09/30... | English |
| 2629 | laptop battery | with full charge (indicates ~3hr 40 mint) but ... | kauozcir jlyqxise | GRP_3 | laptop battery with full charge (indicates ~3... | English |
| 2630 | vpv - i get this message when i try to log on ... | \n\nreceived from: bwfhtumx.japznrvb@gmail.com... | bwfhtumx japznrvb | GRP_0 | vpv - i get this message when i try to log on ... | English |
| 2631 | :i have a new laptop, and tried to log into | name:danyhuie deyhtwet\nlanguage:\nbrowser:mic... | rozsyfai zncajubh | GRP_0 | :i have a new laptop, and tried to log into n... | English |
| 2632 | engineering_tool issue | engineering_tool issue.\r\n-connected to the u... | vnetbgio lqxztben | GRP_0 | engineering_tool issue engineering_tool issue.... | English |
| 2633 | help to change the windows password using pass... | help to change the windows password using pass... | wbtrvdsi gdbuvszx | GRP_0 | help to change the windows password using pass... | English |
| 2634 | unable to inwarehouse_tool | \r\n\r\nreceived from: nuhfwplj.ojcwxser@gmail... | nuhfwplj ojcwxser | GRP_13 | unable to inwarehouse_tool \r\n\r\nreceived fr... | English |
| 2635 | end of month billing | \r\n\r\nreceived from: nuhfwplj.ojcwxser@gmail... | nuhfwplj ojcwxser | GRP_13 | end of month billing \r\n\r\nreceived from: nu... | English |
| 2636 | password reset alert from o365 | password reset alert from o365 | adgvefwp dwasygtb | GRP_0 | password reset alert from o365 password reset... | English |
| 2637 | global erp crm: any party change in complaint... | global erp crm: any party change in complaint... | aoyrspjv hctgfeal | GRP_20 | global erp crm: any party change in complaint... | English |
| 2638 | ms crm dymanics : outlook client issue. | \nsummary:can you help me set up a crm tab in ... | grtaoivq dwjvfkqe | GRP_0 | ms crm dymanics : outlook client issue. \nsumm... | English |
| 2639 | ticket update on inplant_865520 | ticket update on inplant_865520 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_865520 ticket update ... | English |
| 2640 | audio issue : windows audio issue ; 7350 | audio issue : windows audio issue ; 7350 | vfsjoquc razepdqb | GRP_0 | audio issue : windows audio issue ; 7350 audio... | English |
| 2641 | ticket update on inplant_865554 | ticket update on inplant_865554 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_865554 ticket update ... | English |
| 2642 | password reset from password_management_tool | password reset from password_management_tool | keinyujo torvxeda | GRP_0 | password reset from password_management_tool p... | English |
| 2643 | insufficient permissions on web crm | insufficient permissions on web crm | qifzkoej etbmgjvo | GRP_22 | insufficient permissions on web crm insufficie... | English |
| 2644 | company distributor_tool is messed up. i enter... | does not matheywter which account number i use... | jvshydix rzpmnylt | GRP_21 | company distributor_tool is messed up. i enter... | English |
| 2645 | ms crm dynamics : outlook issue | \nsummary:i need to have the crm tab added to ... | upcgxthj lnsvemxy | GRP_0 | ms crm dynamics : outlook issue \nsummary:i ne... | English |
| 2646 | a solution is needed to find a permanent fix t... | a solution is needed to find a permanent fix t... | fyuqhlcx fjiuhxae | GRP_39 | a solution is needed to find a permanent fix t... | English |
| 2647 | reset the password for constance m wgtyillsfor... | reset the password for constance m wgtyillsfor... | sydgvpao aocjqrmz | GRP_0 | reset the password for constance m wgtyillsfor... | English |
| 2648 | euromote entry error | \r\n\r\nreceived from: brhlcpqv.sfozwkyx@gmail... | brhlcpqv sfozwkyx | GRP_0 | euromote entry error \r\n\r\nreceived from: br... | English |
| 2649 | urgent | \n\nreceived from: uezonywf.rldbvipu@gmail.com... | uezonywf rldbvipu | GRP_0 | urgent \n\nreceived from: uezonywf.rldbvipu@gm... | English |
| 2650 | ticket update on inplant_865534 | ticket update on inplant_865534 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_865534 ticket update ... | English |
| 2651 | vip 1 // finance_vip1 is unable to approve an ... | from: lpoebzsc grknswyo \nsent: friday, septem... | lpoebzsc grknswyo | GRP_10 | vip 1 // finance_vip1 is unable to approve an ... | English |
| 2652 | back up tape still is not ejecting. | back up tape not ejected today. unable to swit... | hvskpglx bpsfxmon | GRP_12 | back up tape still is not ejecting. back up ta... | English |
| 2653 | rma #6001504109 | rma #7112615210\r\n\r\nworkflow error rma need... | asxmeruj drqufvgj | GRP_13 | rma #6001504109 rma #7112615210\r\n\r\nworkflo... | English |
| 2654 | unable to access engineering_tool | \r\n\r\nreceived from: vewdsifl.zjdmftkv@gmail... | vewdsifl zjdmftkv | GRP_0 | unable to access engineering_tool \r\n\r\nrece... | English |
| 2655 | vitalyst // crm configuration in outlook | vitalyst // crm configuration in outlook | vfsjoquc razepdqb | GRP_0 | vitalyst // crm configuration in outlook vital... | English |
| 2656 | unable to log in to windows to update password... | unable to log in to windows to update password... | erckhtzj tdmkgoie | GRP_0 | unable to log in to windows to update password... | English |
| 2657 | ms crm dynamics issue | \nsummary:i have lost the crm ribbon in outlook. | aqjdvexo lmedazjo | GRP_0 | ms crm dynamics issue \nsummary:i have lost th... | English |
| 2658 | erp SID_34 password reset | erp SID_34 password reset | mfkvlxph bodikqcx | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 2659 | job bwsdslspln failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwsdslspln failed in job_scheduler at: 09/... | English |
| 2660 | login issue | login issue\r\n-verified user details.(employe... | mfkvlxph bodikqcx | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 2661 | :i am unable to "port.crm.dynamics.com" | name:zdcheloy aevzsogn\nlanguage:\nbrowser:mic... | zdcheloy aevzsogn | GRP_0 | :i am unable to "port.crm.dynamics.com" name:z... | English |
| 2662 | unable to login to distributor_tool as passwor... | unable to login to distributor_tool as passwor... | jkelxorm uwqjlzfm | GRP_0 | unable to login to distributor_tool as passwor... | English |
| 2663 | company mobile device activation. | company mobile device activation | xgjkafcn uijphdyx | GRP_0 | company mobile device activation. company mobi... | English |
| 2664 | user "kehtxprg uekapfzt" is not able to acces... | hi team, \r\n\r\nneed your help!\r\n\r\nreques... | kehtxprg uekapfzt | GRP_0 | user "kehtxprg uekapfzt" is not able to acces... | English |
| 2665 | audio driver issue | \nsummary:hello,\nmy pc is formatheywted by lo... | lanigpkq qzhakunx | GRP_0 | audio driver issue \nsummary:hello,\nmy pc is... | English |
| 2666 | password reset request | password reset request | jmoqelbc fbzsyjne | GRP_0 | password reset request password reset request | English |
| 2667 | SID_34 password reset | name:mityhuch ervuyin\nlanguage:\nbrowser:micr... | rlmbxeso ulmkxdfi | GRP_0 | SID_34 password reset name:mityhuch ervuyin\nl... | English |
| 2668 | engineering_tool access query | engineering_tool access query | hgizxmvq npzvagqy | GRP_0 | engineering_tool access query engineering_too... | English |
| 2669 | dba team - disk space for engg dba is full, ca... | i figured out that i can not create any new sd... | dmqxwkfr olmwqzpu | GRP_12 | dba team - disk space for engg dba is full, ca... | English |
| 2670 | ooo until 5/oct/ : \\HostName_771\teams\materials | ooo until 5/oct/\r\n\r\nreceived from: zxobmre... | zxobmreq udikorhv | GRP_0 | ooo until 5/oct/ : \\HostName_771\teams\materi... | English |
| 2671 | password and engineering tool | \r\n\r\nreceived from: peojqgvm.qayeptuo@gmail... | peojqgvm qayeptuo | GRP_0 | password and engineering tool \r\n\r\nreceived... | English |
| 2672 | please delete the transport SID_35k910404 | delete the transport from the buffer SID_35k91... | oncidblt ucewizyd | GRP_14 | please delete the transport SID_35k910404 dele... | English |
| 2673 | abap report zsd_price_field_update update for ... | please note that i am receiving an error messa... | htsnaodb adjtmlzn | GRP_13 | abap report zsd_price_field_update update for ... | English |
| 2674 | crm app | \n\nreceived from: vybmcrxo.kirxdspz@gmail.com... | vybmcrxo kirxdspz | GRP_0 | crm app \n\nreceived from: vybmcrxo.kirxdspz@... | English |
| 2675 | cannot access \\HostName_779\engineering_appli... | cannot access \\HostName_779\engineering_appli... | ajdcnwtb bvijwxko | GRP_12 | cannot access \\HostName_779\engineering_appli... | English |
| 2676 | travel_tool | \n\nreceived from: zdcheloy.aevzsogn@gmail.com... | zdcheloy aevzsogn | GRP_0 | travel_tool \n\nreceived from: zdcheloy.aevzso... | English |
| 2677 | help with files engineering_tool - error | hi team, \r\n\r\ncould you please, help user u... | urgapyzt tnxiuram | GRP_25 | help with files engineering_tool - error hi te... | English |
| 2678 | unable to login to pc | windows account locked out. | kifmqeph srlzgbhw | GRP_0 | unable to login to pc windows account locked out. | English |
| 2679 | logon balancing error in erp | logon balancing error in erp | umkpayhc adflvbxg | GRP_0 | logon balancing error in erp logon balancing ... | English |
| 2680 | login to citrix tro access erp ; vvparthyrra :... | login to citrix tro access erp ; vvparthyrra :... | izhyoqms wecyhadn | GRP_0 | login to citrix tro access erp ; vvparthyrra :... | English |
| 2681 | laptop not booting up | qksrtvzb vjkftuai said that he spilled some co... | qksrtvzb vjkftuai | GRP_3 | laptop not booting up qksrtvzb vjkftuai said t... | English |
| 2682 | please create an rma# for the nov-tx return. | please see attachments. | iytebhvd coerxklt | GRP_13 | please create an rma# for the nov-tx return. ... | English |
| 2683 | ticket update | ticket update | pbhmwqtz wqlbudjx | GRP_0 | ticket update ticket update | English |
| 2684 | extend the account - vvnewthey - urgent | account has expired on september 29th\r\nneed ... | koiapqbg teyldpkw | GRP_2 | extend the account - vvnewthey - urgent accoun... | English |
| 2685 | ms crm dymanics : giving error message while l... | ms crm dymanics : giving error message while l... | hvgdafke mnowgefz | GRP_0 | ms crm dymanics : giving error message while l... | English |
| 2686 | need an update on inplant_865235 | need an update on inplant_865235 | ayrhcfxi zartupsw | GRP_0 | need an update on inplant_865235 need an updat... | English |
| 2687 | synchronization log mails after accepting cale... | synchronization log mails after accepting cale... | hduzwpio wrcgunso | GRP_0 | synchronization log mails after accepting cale... | English |
| 2688 | infopath installation | infopath installation | hvgdafke mnowgefz | GRP_0 | infopath installation infopath installation | English |
| 2689 | phishing emails uacyltoe hxgaycze query | phishing emails uacyltoe hxgaycze query | wlsazrce uwehsqbk | GRP_0 | phishing emails uacyltoe hxgaycze query phish... | English |
| 2690 | [usa] order not moving to to-do list 5 hours a... | please see attached ppt, op 20 is confirmed bu... | entuakhp xrnhtdmk | GRP_41 | [usa] order not moving to to-do list 5 hours a... | English |
| 2691 | printer driver not loading properly | usa bd05 printer says it needs drivers updated... | fgaulydz crswlkev | GRP_3 | printer driver not loading properly usa bd05 p... | English |
| 2692 | engineering tool | i am experiencing a reoccurring issue with my ... | tfyhebmk elywjuvm | GRP_0 | engineering tool i am experiencing a reoccurri... | English |
| 2693 | spam email | from: vkzwafuh tcjnuswg \nsent: friday, septem... | vkzwafuh tcjnuswg | GRP_0 | spam email from: vkzwafuh tcjnuswg \nsent: fri... | English |
| 2694 | need tc48 printer set up | i am trying to connect to network printer tc48... | ferxqvsm esmwxqlf | GRP_0 | need tc48 printer set up i am trying to connec... | English |
| 2695 | outlook calendar invite issue | outloook calendar invites are automatically cr... | urgqkinl zpcokgbj | GRP_0 | outlook calendar invite issue outloook calenda... | English |
| 2696 | computer in tool and cutter is down | computer in tool and cutter is down | ovxrzwac clhxuzgy | GRP_3 | computer in tool and cutter is down computer i... | English |
| 2697 | anmelden bei outlook nicht möglich | anmelden bei outlook seit passwort ändern nic... | cobdhkmj bikjecaz | GRP_42 | anmelden bei outlook nicht möglich anmelden b... | German |
| 2698 | adding shared mailbox to outlook | adding shared mailbox to outlook | tqpbazxm jhbkycgd | GRP_0 | adding shared mailbox to outlook adding shared... | English |
| 2699 | workcenter description showing user ids | issue reported from us_plant. please see attac... | entuakhp xrnhtdmk | GRP_41 | workcenter description showing user ids issue ... | English |
| 2700 | company center- passwords do not work---- need... | hi, i created accounts in company center and t... | qcfmxgid jvxanwre | GRP_2 | company center- passwords do not work---- need... | English |
| 2701 | account got locked | account got locked | djkipmqo hjzeuwrd | GRP_0 | account got locked account got locked | English |
| 2702 | engineering tool install request | non company pc - windows 8.1 operating system ... | ayrhcfxi zartupsw | GRP_0 | engineering tool install request non company p... | English |
| 2703 | unable to load outlook | unable to load outlook | tbepisvq fxvgltmp | GRP_0 | unable to load outlook unable to load outlook | English |
| 2704 | need to retrieve deleted emails | need to retrieve deleted emails | bujghvne cnpdhfmi | GRP_0 | need to retrieve deleted emails need to retrie... | English |
| 2705 | z_chk issue del# 9169472003 | hello,\r\n\r\n\r\nwe are facing an issue of th... | iwazgesl ydgqtpbo | GRP_18 | z_chk issue del# 9169472003 hello,\r\n\r\n\r\... | English |
| 2706 | remote SID_1 connection open for oss 344427 / ... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | arhjlgdz pxtsjnlk | GRP_2 | remote SID_1 connection open for oss 344427 / ... | English |
| 2707 | india:high latency/packet drops:telecom_vendor... | india:high latency/packet drops | jloygrwh acvztedi | GRP_8 | india:high latency/packet drops:telecom_vendor... | English |
| 2708 | hello please urgently fix! mwst error。ã€... | hello\r\n\r\nplease urgently fix!\r\n\r\nmwstã... | uxndyfrs vahxnfgl | GRP_13 | hello please urgently fix! mwst error。ã€... | English |
| 2709 | probleme mit drucken \vermessungsmaschine für... | probleme mit drucken \vermessungsmaschine für... | eaodcgsw trmzwbyc | GRP_24 | probleme mit drucken \vermessungsmaschine für... | German |
| 2710 | support für alicona \jionmpsf wnkpzcmv | support für alicona \jionmpsf wnkpzcmv | jionmpsf wnkpzcmv | GRP_24 | support für alicona \jionmpsf wnkpzcmv suppor... | English |
| 2711 | error when qualifying lead by user prarthyr jhr | refer email sent | cfzsajbe lyejkdho | GRP_40 | error when qualifying lead by user prarthyr jh... | English |
| 2712 | restart the company service in HostName_1041 | restart the company service in HostName_1041 | cubdsrml znewqgop | GRP_8 | restart the company service in HostName_1041 r... | English |
| 2713 | fw: you must validate your account | dear it help,\r\n\r\ni got below email, what s... | uvjpaeli bnphqsxr | GRP_0 | fw: you must validate your account dear it hel... | English |
| 2714 | call for ecwtrjnq jpecxuty | call for ecwtrjnq jpecxuty | olckhmvx pcqobjnd | GRP_0 | call for ecwtrjnq jpecxuty call for ecwtrjnq j... | English |
| 2715 | german call | german call | ayrhcfxi zartupsw | GRP_0 | german call german call | English |
| 2716 | need addiitional software and email settings c... | from: wykigmnz wvdgopybrumugam \nsent: 06 sept... | wykigmnz wvdgopyb | GRP_19 | need addiitional software and email settings c... | English |
| 2717 | log on balancing error. | log on balancing error. | umkpayhc adflvbxg | GRP_0 | log on balancing error. log on balancing error. | English |
| 2718 | ticket update inplant_862430 | ticket update inplant_862430 | ayrhcfxi zartupsw | GRP_0 | ticket update inplant_862430 ticket update inp... | English |
| 2719 | engineering tool not working | \r\n\r\nreceived from: ftsqkvre.bqzrupic@gmail... | ftsqkvre bqzrupic | GRP_0 | engineering tool not working \r\n\r\nreceived ... | English |
| 2720 | german call | german call | ayrhcfxi zartupsw | GRP_0 | german call german call | English |
| 2721 | drucker em26 druckt mit bis zu 2 std. verzöge... | drucker em26 druckt mit bis zu 2 std. verzöge... | djilqgmw bidchqsg | GRP_42 | drucker em26 druckt mit bis zu 2 std. verzöge... | English |
| 2722 | info type '0017' is missing to personal number... | from: lmwohkbd ucziatex \nsent: friday, septem... | lmwohkbd ucziatex | GRP_10 | info type '0017' is missing to personal number... | English |
| 2723 | vpn access for elcpduzg eujpstxi (graurkart) | \r\n\r\nreceived from: fbyusmxz.kxvmcbly@gmail... | fbyusmxz kxvmcbly | GRP_0 | vpn access for elcpduzg eujpstxi (graurkart) \... | English |
| 2724 | outlook was not accepting password | user change the password through vpn.\r\nuser ... | nmtszgbr wnthvqgm | GRP_0 | outlook was not accepting password user change... | English |
| 2725 | script jb_ecc_bw_zsd531 to pull august 2016 mo... | we are in the process of refreshing history in... | ualdxfir kizjmqte | GRP_20 | script jb_ecc_bw_zsd531 to pull august 2016 mo... | English |
| 2726 | job Job_593 failed in job_scheduler at: 09/30/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/30/... | English |
| 2727 | probleme mit skype und outlook \ user :dardabthyr | probleme mit skype und outlook \ user :dardabthyr | vzqomdgt jwoqbuml | GRP_24 | probleme mit skype und outlook \ user :dardabt... | English |
| 2728 | probleme mit skype und outlook \dardabthyr | probleme mit skype und outlook \dardabthyr | vzqomdgt jwoqbuml | GRP_0 | probleme mit skype und outlook \dardabthyr pro... | Latin |
| 2729 | kannst du bitte noch mal 2 usb-sticks 16 gb ... | kannst du bitte noch mal 2 usb-sticks 16 gb ... | jionmpsf wnkpzcmv | GRP_24 | kannst du bitte noch mal 2 usb-sticks 16 gb ... | German |
| 2730 | unser kopierer we 95 (hp laserjet) zeigt fehle... | unser kopierer we 95 (hp laserjet) zeigt fehle... | fdyietau dvsyxwbu | GRP_24 | unser kopierer we 95 (hp laserjet) zeigt fehle... | German |
| 2731 | erp access issue : refrence to oss 337622 / 2... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | arhjlgdz pxtsjnlk | GRP_2 | erp access issue : refrence to oss 337622 / 2... | English |
| 2732 | ir posting error_urgently | \r\n\r\nreceived from: tkjypfze.jxompytk@gmail... | ihfkwzjd erbxoyqk | GRP_10 | ir posting error_urgently \r\n\r\nreceived fro... | English |
| 2733 | enterprise scanner is freezing. | enterprise scanner is freezing. \ntelephone: | vrmdtcal agythfow | GRP_0 | enterprise scanner is freezing. enterprise sc... | English |
| 2734 | job bk_biaprod failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_biaprod failed in job_scheduler at: 09/... | English |
| 2735 | ir posting error_urgently | \r\n\r\nreceived from: ihfkwzjd.erbxoyqk@gmail... | ihfkwzjd erbxoyqk | GRP_10 | ir posting error_urgently \r\n\r\nreceived fro... | English |
| 2736 | vpn安装-转贺æ£å¹³ | \n\nreceived from: tuqrvowp.fxmzkvqo@gmail.com... | tuqrvowp fxmzkvqo | GRP_30 | vpn安装-转贺æ£å¹³ \n\nreceived from: tuqr... | English |
| 2737 | job Job_2645 failed in job_scheduler at: 09/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 09/30... | English |
| 2738 | please approve primary email of jeknosml gkcol... | hello\r\nplease approve primary email of jekno... | ugephfta hrbqkvij | GRP_16 | please approve primary email of jeknosml gkcol... | English |
| 2739 | "po not created" | \r\n\r\nreceived from: vhlepcta.lqbgcxpt@gmail... | vhlepcta lqbgcxpt | GRP_13 | "po not created" \r\n\r\nreceived from: vhlepc... | English |
| 2740 | erp is very slow, please resolve the issue on ... | \r\n\r\nreceived from: ohdrnswl.rezuibdt@gmail... | ohdrnswl rezuibdt | GRP_0 | erp is very slow, please resolve the issue on ... | English |
| 2741 | i have lost my access to reporting_tool in crm... | from: dthyan matheywtyuews \nsent: thursday, s... | oetlgbfw bsctrnwp | GRP_0 | i have lost my access to reporting_tool in crm... | English |
| 2742 | outlook not starting | outlook not starting | uncpaqvf dxefiybg | GRP_0 | outlook not starting outlook not starting | English |
| 2743 | frequent account lock out. | user : wothyehre is locked out every day. | dgwrmsja jzlpwuit | GRP_0 | frequent account lock out. user : wothyehre is... | English |
| 2744 | unable to login to distributor_tool | benoittry is unable to login to distributor_to... | hadbkvwt touedfyr | GRP_0 | unable to login to distributor_tool benoittry ... | English |
| 2745 | need help in changing password in password_man... | need help in changing password in password_man... | zngpmjue qvyzposw | GRP_34 | need help in changing password in password_man... | English |
| 2746 | need developer display access for user uacylto... | need developer display access for user uacylto... | pxsghrjd wiehqmka | GRP_2 | need developer display access for user uacylto... | English |
| 2747 | outlook issues | \r\n\r\nreceived from: jmvnxtgc.kvhxntqp@gmail... | jmvnxtgc kvhxntqp | GRP_0 | outlook issues \r\n\r\nreceived from: jmvnxtgc... | English |
| 2748 | issue in engineering tool | \r\n\r\nreceived from: eakhgxbw.pfyadjmb@gmail... | eakhgxbw pfyadjmb | GRP_25 | issue in engineering tool \r\n\r\nreceived fro... | English |
| 2749 | reset passwords for fkuqjwit jgcsaqzi using pa... | the | fkuqjwit jgcsaqzi | GRP_17 | reset passwords for fkuqjwit jgcsaqzi using pa... | English |
| 2750 | job bkbackup_tool_reporting_tool_prod_inc fail... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_reporting_tool_prod_inc fail... | English |
| 2751 | job bkbackup_tool_HostName_771_prod_full faile... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_HostName_771_prod_full faile... | English |
| 2752 | erp slow | erp system is very slow in apac dc. i asked st... | pkdavqwt tafrmxsh | GRP_0 | erp slow erp system is very slow in apac dc. i... | English |
| 2753 | erp can't log on | erp disconnected and we can't log on now. \r\... | zupifghd vdqxepun | GRP_14 | erp can't log on erp disconnected and we can't... | English |
| 2754 | always get reminder for approval of requisitio... | i'm kate liu from apac plant, i can't complete... | mhikeucr quaixnbe | GRP_29 | always get reminder for approval of requisitio... | English |
| 2755 | top urgent! //price issue | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_29 | top urgent! //price issue \n\nreceived from: w... | English |
| 2756 | outlook cannot login for notebook | \r\n\r\nreceived from: oydlehun.svnfrxdk@gmail... | oydlehun svnfrxdk | GRP_0 | outlook cannot login for notebook \r\n\r\nrece... | English |
| 2757 | docking station not working | docking station not working. no power for laptop | lqvdoijm yntmlehu | GRP_19 | docking station not working docking station no... | English |
| 2758 | cann't do "mb31" for po115890552 | there is a po 226901663 in plant_282.\r\nnow,... | jerydwbn gdylnaue | GRP_45 | cann't do "mb31" for po115890552 there is a p... | English |
| 2759 | india plant - india (): node company-ap-ind-kk... | india plant - india (): node company-ap-ind-kk... | jyoqwxhz clhxsoqy | GRP_8 | india plant - india (): node company-ap-ind-kk... | English |
| 2760 | urgent- mm6173026 | dear all\n\nwould you please solve the issue ?... | gkwcxzum answkqpe | GRP_10 | urgent- mm6173026 dear all\n\nwould you please... | English |
| 2761 | customers and sales are not able to create quotes | received over 23 emails and numerous calls fro... | vbmzgsdk jdmyazti | GRP_21 | customers and sales are not able to create quo... | English |
| 2762 | i am not able to service customers - distribut... | unauthorised access. your account has been del... | vbmzgsdk jdmyazti | GRP_21 | i am not able to service customers - distribut... | English |
| 2763 | ms office general question | ms office general question | gcaktshf kpgfrotd | GRP_0 | ms office general question ms office general q... | English |
| 2764 | job Job_555 failed in job_scheduler at: 09/29/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_555 failed in job_scheduler at: 09/29/... | English |
| 2765 | can you please help tami receive in the rma be... | can you please help tami receive in the rma be... | nuhfwplj ojcwxser | GRP_13 | can you please help tami receive in the rma be... | English |
| 2766 | request to remove 1 day pick route logic from ... | request to remove 1 day pick route logic from ... | xnqzhtwu hivumtfz | GRP_6 | request to remove 1 day pick route logic from ... | English |
| 2767 | crm help needed | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | crm help needed \n\nreceived from: oetlgbfw.b... | English |
| 2768 | skype goes to not responding mode | skype goes to not responding mode \n\nphone: | gcaktshf kpgfrotd | GRP_0 | skype goes to not responding mode skype goes t... | English |
| 2769 | ms crm login issue. | ms crm login issue.\n-connected to the user sy... | qifzkoej etbmgjvo | GRP_40 | ms crm login issue. ms crm login issue.\n-conn... | English |
| 2770 | ticket update on sev 2 ticket inplant_864860 | ticket update on sev 2 ticket inplant_864860 | fumkcsji sarmtlhy | GRP_0 | ticket update on sev 2 ticket inplant_864860 t... | English |
| 2771 | usa - company-na-usa-usa-shop-3750g-access-sw0... | we had some bad storms come through last night... | lixjduso upanbtxg | GRP_4 | usa - company-na-usa-usa-shop-3750g-access-sw0... | English |
| 2772 | external link not working in ie | external link not working in ie | bdgaxriq iltbozkw | GRP_0 | external link not working in ie external link... | English |
| 2773 | unable to install mobile app on iphone | unable to install mobile app on iphone \n\npho... | fsvnjexu yxaevupi | GRP_40 | unable to install mobile app on iphone unable... | English |
| 2774 | engg work bench login issue. | engg work bench login issue. | vyjmlain hvjbmdgi | GRP_0 | engg work bench login issue. engg work bench l... | English |
| 2775 | please remove quote from workflow | \r\n\r\nreceived from: lwgytuxq.qspdztiw@gmail... | lwgytuxq qspdztiw | GRP_13 | please remove quote from workflow \r\n\r\nrece... | English |
| 2776 | windows account lock out issue | windows account lock out issue | htsnaodb adjtmlzn | GRP_0 | windows account lock out issue windows accoun... | English |
| 2777 | issues with hana | \n\nreceived from: zdcheloy.aevzsogn@gmail.com... | zdcheloy aevzsogn | GRP_9 | issues with hana \n\nreceived from: zdcheloy.a... | English |
| 2778 | distributor_tool issues for sales area 1108 | please be aware that sales reps and customer a... | qxhdcnmj caflvjrn | GRP_21 | distributor_tool issues for sales area 1108 pl... | English |
| 2779 | printer issue | \r\n\r\nreceived from: iqcylpok.ascpqvni@gmail... | iqcylpok ascpqvni | GRP_3 | printer issue \r\n\r\nreceived from: iqcylpok.... | English |
| 2780 | add ed sheehy to purchasing ad | xszoedmc gmhkdsnw please add oabdfcnk xeuhkoq... | xszoedmc gmhkdsnw | GRP_2 | add ed sheehy to purchasing ad xszoedmc gmhkds... | English |
| 2781 | swap clients e7350 with e7250 | swap clients e7350 with e7250 | lqdpfamz mqitfrcv | GRP_3 | swap clients e7350 with e7250 swap clients e73... | English |
| 2782 | cannot get into the lean tracker to save lean ... | lean tracker will give me an error when trying... | xdabnget wryuikgd | GRP_0 | cannot get into the lean tracker to save lean ... | English |
| 2783 | need to usa remote access to carolutyu magyari... | need to usa remote access to carolutyu magyari... | bnzysqhm ghsinpmu | GRP_0 | need to usa remote access to carolutyu magyari... | English |
| 2784 | for p.o 5019287566 error message | \r\n\r\nreceived from: kaguhxwo.uoyipxqg@gmail... | kaguhxwo uoyipxqg | GRP_6 | for p.o 5019287566 error message \r\n\r\nrecei... | English |
| 2785 | crm installation | crm installation | wanyrjkg tsycmeof | GRP_0 | crm installation crm installation | English |
| 2786 | windows password reset | windows password reset | utfaxivy vwgktxcj | GRP_0 | windows password reset windows password reset | English |
| 2787 | power outage query | power outage query | pvlxjizg xzvlwqjc | GRP_0 | power outage query power outage query | English |
| 2788 | reset passwords for hzmxwdrs tcbjyqps using pa... | the | hzmxwdrs tcbjyqps | GRP_17 | reset passwords for hzmxwdrs tcbjyqps using pa... | English |
| 2789 | blank call | blank call | pwkrlqbc zslqfmka | GRP_0 | blank call blank call | English |
| 2790 | windows password reset request | windows password reset request | nkryuvct jqvcxdrt | GRP_0 | windows password reset request windows passwo... | English |
| 2791 | need to check the payslips | need to check the payslips | nxvbtfui hjickwyd | GRP_0 | need to check the payslips need to check the p... | English |
| 2792 | configure crm on the outlook | configure crm on the outlook \r\n\r\n949 245 8817 | fsvnjexu yxaevupi | GRP_0 | configure crm on the outlook configure crm on... | English |
| 2793 | erp SID_39 account locked // password reset | erp SID_39 account locked // password reset | xtqbjieu uablitwr | GRP_0 | erp SID_39 account locked // password reset er... | English |
| 2794 | infopath installation | name:nmpworvu upgtrvnj\nlanguage:\nbrowser:mic... | nmpworvu upgtrvnj | GRP_0 | infopath installation name:nmpworvu upgtrvnj\n... | English |
| 2795 | skype problem | \r\n\r\nreceived from: pcjtisrv.havyuwds@gmail... | pcjtisrv havyuwds | GRP_0 | skype problem \r\n\r\nreceived from: pcjtisrv.... | English |
| 2796 | the back up tape is not ejecting - i am unable... | have not been able to switch the tapes for thi... | hvskpglx bpsfxmon | GRP_12 | the back up tape is not ejecting - i am unable... | English |
| 2797 | external user called for help for calendar issue | external user called for help for calendar issue | efbwiadp dicafxhv | GRP_0 | external user called for help for calendar iss... | English |
| 2798 | can you please remove my email from this maili... | can you please remove my email from this maili... | btvmxdfc yfahetsc | GRP_0 | can you please remove my email from this maili... | English |
| 2799 | job Job_1387 failed in job_scheduler at: 09/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1387 failed in job_scheduler at: 09/29... | English |
| 2800 | spam mail notification | spam mail notification | sygionua szunhced | GRP_0 | spam mail notification spam mail notification | English |
| 2801 | urgent help required - crm mobile app issue | \r\n\r\nreceived from: vnetbgio.lqxztben@gmail... | vnetbgio lqxztben | GRP_22 | urgent help required - crm mobile app issue \r... | English |
| 2802 | telefon mit der nummer 1038091558 ist defekt. ... | telefon mit der nummer ist defekt. sinterei g... | txkgmwbc qohmgwrp | GRP_33 | telefon mit der nummer 1038091558 ist defekt. ... | German |
| 2803 | weekly reboot reminder - backup_tool servers H... | from: root@HostName_189.hq.company.com [mailto... | dkmcfreg anwmfvlg | GRP_8 | weekly reboot reminder - backup_tool servers H... | English |
| 2804 | probleme mit vpn \wxstfouy isjzcotm | probleme mit vpn \wxstfouy isjzcotm | wxstfouy isjzcotm | GRP_24 | probleme mit vpn \wxstfouy isjzcotm probleme m... | Danish |
| 2805 | no crm tab | \r\n\r\nreceived from: ltsqkane.ycgwexdf@gmail... | ltsqkane ycgwexdf | GRP_0 | no crm tab \r\n\r\nreceived from: ltsqkane.ycg... | English |
| 2806 | stack guard error | stack guard error | lewbzysd gqdaikbv | GRP_0 | stack guard error stack guard error | English |
| 2807 | urgent help required- outlook to crm mfg_toolt... | \n\nreceived from: peojqgvm.qayeptuo@gmail.com... | peojqgvm qayeptuo | GRP_0 | urgent help required- outlook to crm mfg_toolt... | English |
| 2808 | discount form issue | from: fnqelwpk ahrskvln \r\nsent: thursday, se... | trxsychl xamcuong | GRP_3 | discount form issue from: fnqelwpk ahrskvln \r... | English |
| 2809 | email delegation | hatryu bau g called in for an issue where he n... | vrjwyqtf qoxkapfw | GRP_26 | email delegation hatryu bau g called in for an... | English |
| 2810 | computer volume | \r\n\r\nreceived from: fpbmtxei.jtqbcnfs@gmail... | fpbmtxei jtqbcnfs | GRP_0 | computer volume \r\n\r\nreceived from: fpbmtxe... | English |
| 2811 | audio is not working | audio is not working | imoelsap gxdwkimv | GRP_0 | audio is not working audio is not working | English |
| 2812 | chrthryui stavenheim : unbale to login to tess... | from: oinqckds qieswrfu \nsent: thursday, sept... | oinqckds qieswrfu | GRP_12 | chrthryui stavenheim : unbale to login to tess... | English |
| 2813 | brxaqlwn auzroqes:332415 / 2016 purchasing che... | hello team can you please create a credentials... | rujteoza mcoswhju | GRP_2 | brxaqlwn auzroqes:332415 / 2016 purchasing che... | English |
| 2814 | engineering_tool error: machining cloud stoppe... | engineering_tool error: machining cloud stoppe... | keinyujo torvxeda | GRP_0 | engineering_tool error: machining cloud stoppe... | English |
| 2815 | general issue | general issue | rbozivdq gmlhrtvp | GRP_0 | general issue general issue | English |
| 2816 | crm app greyed out | crm app greyed out | iwqjyzph nhmjyzrw | GRP_0 | crm app greyed out crm app greyed out | English |
| 2817 | uninstallation of adwares from computer | uninstallation of adwares from computer | keinyujo torvxeda | GRP_0 | uninstallation of adwares from computer uninst... | English |
| 2818 | blank call // loud noise //gso | blank call // loud noise //gso | rbozivdq gmlhrtvp | GRP_0 | blank call // loud noise //gso blank call // l... | English |
| 2819 | problem with company center quick quote | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_21 | problem with company center quick quote \n\nre... | English |
| 2820 | skype issue : personal certificate error | skype issue : personal certificate error | crjhotyk pxslorbe | GRP_0 | skype issue : personal certificate error skyp... | English |
| 2821 | company center-password changes | i have been setting users up in company center... | qcfmxgid jvxanwre | GRP_0 | company center-password changes i have been se... | English |
| 2822 | EU_tool crashes when confirmations are deleted... | there are now over 130 confirmations needing t... | mlckvyfq aonlxvwb | GRP_25 | EU_tool crashes when confirmations are deleted... | English |
| 2823 | network issues | \r\n\r\nreceived from: verena.financial@compan... | lntbvwgk doqhisxf | GRP_28 | network issues \r\n\r\nreceived from: verena.f... | English |
| 2824 | account lock out issue since last two days. | account lock out issue since last two days.\r\n | qmgspxkf mckfysdh | GRP_0 | account lock out issue since last two days. ac... | English |
| 2825 | mqjdyizg amhywoqg - issues with purchasing acc... | please escalate this issue since mqjdyizg amhy... | xszoedmc gmhkdsnw | GRP_0 | mqjdyizg amhywoqg - issues with purchasing acc... | English |
| 2826 | job Job_1132 failed in job_scheduler at: 09/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1132 failed in job_scheduler at: 09/29... | English |
| 2827 | delivery creation issue | purchase order number 5019291164, delivery cre... | qfnthlam lxvnwuja | GRP_18 | delivery creation issue purchase order number ... | English |
| 2828 | job Job_1137 failed in job_scheduler at: 09/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1137 failed in job_scheduler at: 09/29... | English |
| 2829 | xszoedmc gmhkdsnw or skype. contract library ... | xszoedmc gmhkdsnw 7 or skype. access to colla... | xszoedmc gmhkdsnw | GRP_16 | xszoedmc gmhkdsnw or skype. contract library ... | English |
| 2830 | lean tracker - not able to add new event | \r\n\r\nreceived from: fdmobjul.oicarvqt@gmail... | sojwqapz okihatrb | GRP_0 | lean tracker - not able to add new event \r... | English |
| 2831 | spl gl r indicator is missing in customer open... | spl gl indicator "r - bill of exchange payt re... | tnywkdpl gnjmazuo | GRP_10 | spl gl r indicator is missing in customer open... | English |
| 2832 | ordnerfreigabe für m: kvp3 | ordnerfreigabe für m: kvp3 | nemzycxb xpsgkahw | GRP_34 | ordnerfreigabe für m: kvp3 ordnerfreigabe fü... | Waray |
| 2833 | hsh | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | hsh \n\nreceived from: aksthyuhath.shettythruy... | English |
| 2834 | aidw700011 needs to format and reinstall. | aidw700011 needs to format and reinstall. | oldrctiu bxurpsyi | GRP_19 | aidw700011 needs to format and reinstall. aidw... | English |
| 2835 | reinstall EU_tool und hardcopy.\acqpinyd ecygimqd | reinstall EU_tool und hardcopy.\acqpinyd ecygimqd | acqpinyd ecygimqd | GRP_24 | reinstall EU_tool und hardcopy.\acqpinyd ecygi... | German |
| 2836 | probleme mit companyguest \bctypmjw cbhnxafz | probleme mit companyguest \bctypmjw cbhnxafz | niptbwdq csenjruz | GRP_24 | probleme mit companyguest \bctypmjw cbhnxafz p... | Danish |
| 2837 | probleme mit hp drucker local .\petljhxi bocxgins | probleme mit hp drucker local .\petljhxi bocxgins | petljhxi bocxgins | GRP_24 | probleme mit hp drucker local .\petljhxi bocxg... | English |
| 2838 | ich benötige hilfe bei der passwortänderung ... | ich benötige hilfe bei der passwortänderung ... | ecoljnvt lbdqmvfs | GRP_0 | ich benötige hilfe bei der passwortänderung ... | German |
| 2839 | ughzilfm cfibdamq wanted details to check for ... | ughzilfm cfibdamq wanted details to check for ... | olckhmvx pcqobjnd | GRP_0 | ughzilfm cfibdamq wanted details to check for ... | English |
| 2840 | erp SID_34 account unlock | erp SID_34 account unlock | olckhmvx pcqobjnd | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 2841 | automatically generated confirmations from bls... | system affected: bls (beschichtungsleitstand, ... | xsjqhdgp ymstzudl | GRP_25 | automatically generated confirmations from bls... | English |
| 2842 | i can not create a delivery order number 50192... | mm 4983099 \r\nbestellnumer 5019289193\r\n | uxpytsdk kyamilds | GRP_6 | i can not create a delivery order number 50192... | English |
| 2843 | job Job_593 failed in job_scheduler at: 09/29/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/29/... | English |
| 2844 | engineering tool malfunction | \r\n\r\nreceived from: jkpwisnf.lgpdyncm@gmail... | jkpwisnf lgpdyncm | GRP_25 | engineering tool malfunction \r\n\r\nreceived ... | English |
| 2845 | purchasing catalogue de-wollschläger needs im... | the company is bankruped | rhinvtua aquyjfbs | GRP_29 | purchasing catalogue de-wollschläger needs im... | English |
| 2846 | telephony_software problem | there are connection problems, while calling t... | xjazwpmd sjirdnam | GRP_7 | telephony_software problem there are connectio... | English |
| 2847 | EU_tool - can not get the transfer times of ou... | please see the attached email | xnlapdeq wupaeqlv | GRP_25 | EU_tool - can not get the transfer times of ou... | English |
| 2848 | vuxdrbng owqplduj : s1- k1 | vuxdrbng owqplduj : s1- k1 | cwryvksu cedsairg | GRP_0 | vuxdrbng owqplduj : s1- k1 vuxdrbng owqplduj :... | English |
| 2849 | job Job_2645 failed in job_scheduler at: 09/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 09/29... | English |
| 2850 | selecting customer | i cannot select the customer and cannot edit i... | nzpfadir swzpfnlj | GRP_25 | selecting customer i cannot select the custome... | English |
| 2851 | setup new ws \vuxdrbng owqplduj | setup new ws \vuxdrbng owqplduj | vuxdrbng owqplduj | GRP_24 | setup new ws \vuxdrbng owqplduj setup new ws \... | un |
| 2852 | HostName_66:volume: f:\ label:dat1-HostName_66... | volume: f:\ label:dat1-HostName_66 9a625d75 on... | oldrctiu bxurpsyi | GRP_12 | HostName_66:volume: f:\ label:dat1-HostName_66... | English |
| 2853 | reset the password for bzwrchnd ysfiwvmo on wi... | reset the password for bzwrchnd ysfiwvmo on wi... | bzwrchnd ysfiwvmo | GRP_0 | reset the password for bzwrchnd ysfiwvmo on wi... | English |
| 2854 | job Job_2588 failed in job_scheduler at: 09/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2588 failed in job_scheduler at: 09/29... | English |
| 2855 | outlook funktioniert nicht | am rechner evhw8114148 funktioniert outlook ni... | jnktafrs ytxiowbh | GRP_0 | outlook funktioniert nicht am rechner evhw8114... | German |
| 2856 | lean tracker not opening | lean tracker not opening | saerpwno qsdfmakc | GRP_0 | lean tracker not opening lean tracker not opening | English |
| 2857 | account locked in ad | account locked in ad | gvsabjhq cgwsbiep | GRP_0 | account locked in ad account locked in ad | English |
| 2858 | po5616680457 same tax issue | po5616680457 same tax issue | dizquolf hlykecxa | GRP_10 | po5616680457 same tax issue po5616680457 same ... | English |
| 2859 | modify jb_ecc_bw_zsd531 to pull 36 month sales... | we are in the process of refreshing history i... | ualdxfir kizjmqte | GRP_20 | modify jb_ecc_bw_zsd531 to pull 36 month sales... | English |
| 2860 | create guest wifi - vvrassyhrt | create guest wifi - vvrassyhrt | pxsghrjd wiehqmka | GRP_34 | create guest wifi - vvrassyhrt create guest wi... | English |
| 2861 | i am unable to login to the attendance_tool --... | reset my attendance_tool password | boirqctx bkijgqry | GRP_0 | i am unable to login to the attendance_tool --... | English |
| 2862 | business_client - authorisation | hi,\n\npl. provide business_client authorizat... | oavigqeu kjmvtfpc | GRP_0 | business_client - authorisation hi,\n\npl. pr... | English |
| 2863 | not able to login to skype | not able to login to skype | tcbonyes gpfacron | GRP_0 | not able to login to skype not able to login t... | English |
| 2864 | sound card issue in dell latitude m4800 laptop | sound card issue in dell latitude m4800 laptop | tcbonyes gpfacron | GRP_19 | sound card issue in dell latitude m4800 laptop... | English |
| 2865 | vpn ä¸èƒ½ç™»å½•。 | [‎2016/‎9/‎29 9:14] daisy huang: \r\nhi,... | lzaqjxgi lzfycegm | GRP_31 | vpn ä¸èƒ½ç™»å½•。 [‎2016/‎9/‎29 9:14] ... | English |
| 2866 | usa - (company) : interface fastethernet0/16 &... | interface: fastethernet0/16 · asheshopsw5 on ... | jyoqwxhz clhxsoqy | GRP_8 | usa - (company) : interface fastethernet0/16 &... | English |
| 2867 | prdord 226040587 226040835 226040589 2... | 115939476 226040835 226040589 user statu... | rqpfshjd qiulphdr | GRP_45 | prdord 226040587 226040835 226040589 2... | English |
| 2868 | can not transfer customer in tracking to crm | from: crjhotyk pxslorbe \r\nsent: thursday, se... | crjhotyk pxslorbe | GRP_40 | can not transfer customer in tracking to crm f... | English |
| 2869 | hr_tool e-time problems | \r\n\r\nreceived from: nwzhlktu.plktredg@gmail... | nwzhlktu plktredg | GRP_0 | hr_tool e-time problems \r\n\r\nreceived from:... | English |
| 2870 | login issue | login issue\r\n-verified user details.(employe... | kdjfhwua arfpnhbj | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 2871 | engineering_tool urgent | \n\nreceived from: uezonywf.rldbvipu@gmail.com... | uezonywf rldbvipu | GRP_25 | engineering_tool urgent \n\nreceived from: uez... | English |
| 2872 | help to change the windows password using pass... | help to change the windows password using pass... | ioulqtmk dqevzrsg | GRP_0 | help to change the windows password using pass... | English |
| 2873 | reset passwords for ytzpxhql ntfxgpms using pa... | password was reset but will not allow reset f... | ytzpxhql ntfxgpms | GRP_17 | reset passwords for ytzpxhql ntfxgpms using pa... | English |
| 2874 | collaboration_platform for business continues ... | collaboration_platform is using a lot of memor... | znwytghq sibchqoz | GRP_0 | collaboration_platform for business continues ... | English |
| 2875 | blank call | blank call | pwkrlqbc zslqfmka | GRP_0 | blank call blank call | English |
| 2876 | blank call | blank call | pwkrlqbc zslqfmka | GRP_0 | blank call blank call | English |
| 2877 | frequent account lockout | frequent account lockout | mrduhsci xmvkzqja | GRP_0 | frequent account lockout frequent account lockout | English |
| 2878 | access to open this link | access to open this link for corp contracts \n... | oetlgbfw bsctrnwp | GRP_16 | access to open this link access to open this ... | English |
| 2879 | mobile device activation | from: tsbnfixp numwqahj \nsent: wednesday, sep... | tsbnfixp numwqahj | GRP_0 | mobile device activation from: tsbnfixp numwqa... | English |
| 2880 | correct billing errors vfx3 | to correct attached listed errors | gacfhedw iqustfzh | GRP_10 | correct billing errors vfx3 to correct attache... | English |
| 2881 | i did a po and it received with no problem, i ... | i did a po and it received with no problem, i ... | vwaufgxr nvdyhlqk | GRP_18 | i did a po and it received with no problem, i ... | English |
| 2882 | skype issues - calling desk and headset // ooo | my skype errors out when calling my desk phone... | ifblxjmc dyrgfwbm | GRP_0 | skype issues - calling desk and headset // ooo... | English |
| 2883 | iphone : crm app install on iphone. | iphone : crm app install on iphone. | jcfignaz tyguzslr | GRP_0 | iphone : crm app install on iphone. iphone : c... | English |
| 2884 | reset passwords for ytzpxhql ntfxgpms using pa... | password resets to everything but erp productio | ytzpxhql ntfxgpms | GRP_17 | reset passwords for ytzpxhql ntfxgpms using pa... | English |
| 2885 | my 2nd monitor will not display any video, it ... | my 2nd monitor will not display any video, it ... | wlsazrce uwehsqbk | GRP_3 | my 2nd monitor will not display any video, it ... | English |
| 2886 | reset passwords for ytzpxhql ntfxgpms using pa... | erp password reset needed | ytzpxhql ntfxgpms | GRP_17 | reset passwords for ytzpxhql ntfxgpms using pa... | English |
| 2887 | wi- fi access to user jamhdtyes kinhytudel | wi- fi access to user jamhdtyes kinhytudel | kauozcir jlyqxise | GRP_0 | wi- fi access to user jamhdtyes kinhytudel wi-... | English |
| 2888 | there is no connection to the erp system. we ... | there is no connection to the erp system. we ... | mfvkxghn mzjasxqd | GRP_0 | there is no connection to the erp system. we ... | English |
| 2889 | no one at the usa facility can log onto erp. ... | my contact information is as follows: \n | yswgzvrc frjzcnsu | GRP_0 | no one at the usa facility can log onto erp. ... | English |
| 2890 | erp connection | \n\nreceived from: jxgobwrm.qkugdipo@gmail.com... | jxgobwrm qkugdipo | GRP_0 | erp connection \n\nreceived from: jxgobwrm.qku... | English |
| 2891 | help. all of our systems are down. erp is down... | help. all of our systems are down. erp is down... | tqrlikex moxaebfq | GRP_4 | help. all of our systems are down. erp is down... | English |
| 2892 | the termination action for manuel zuehlke has ... | hello , \r\n\r\na kündigung for manuel zuehlk... | clyauqjw cxwrsflt | GRP_2 | the termination action for manuel zuehlke has ... | English |
| 2893 | job Job_2668 failed in job_scheduler at: 09/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2668 failed in job_scheduler at: 09/28... | English |
| 2894 | administration tools | help to install the administration tools in wi... | utyeofsk rdyzpwhi | GRP_19 | administration tools help to install the admin... | English |
| 2895 | unable to attach an attachment in expense report | unable to attach an attachment in expense report | yxsermtd vloueirh | GRP_0 | unable to attach an attachment in expense repo... | English |
| 2896 | unable to login business_client | unable to login business_client as there was n... | icqleypr kneoblzd | GRP_0 | unable to login business_client unable to logi... | English |
| 2897 | create quote is not working in distributor_tool | create quote is not working in distributor_tool | vbmzgsdk jdmyazti | GRP_21 | create quote is not working in distributor_too... | English |
| 2898 | unlock personal number in ess | unlock personal number in ess | yxsermtd vloueirh | GRP_0 | unlock personal number in ess unlock personal ... | English |
| 2899 | warehouse to's are creating with planned pgi d... | we are finding warehouse to's creating with th... | hzpmalgo xpvugeyr | GRP_18 | warehouse to's are creating with planned pgi d... | English |
| 2900 | msoffice 2016 installation | msoffice 2016 installation | ferxqvsm esmwxqlf | GRP_0 | msoffice 2016 installation msoffice 2016 insta... | English |
| 2901 | your prjuysva.vpbudksy@gmail.com unauthorized ... | from: naveuythen dyhtruutt \nsent: wednesday, ... | prjuysva vpbudksy | GRP_0 | your prjuysva.vpbudksy@gmail.com unauthorized ... | English |
| 2902 | security clearance to view cutter and insert d... | security clearance to view cutter and insert d... | ndaoxbvi szxlciue | GRP_0 | security clearance to view cutter and insert d... | English |
| 2903 | i do not get open gkad from nx9. apper | appears the next message: "nx 9 has stoped wor... | otjhnpvk vptsreal | GRP_46 | i do not get open gkad from nx9. apper appear... | English |
| 2904 | all the users from usa plant are unable to acc... | all the users from usa plant are unable to acc... | kxsceyzo naokumlb | GRP_41 | all the users from usa plant are unable to acc... | English |
| 2905 | unable to clock orders in mii. | unable to clock orders in mii. multiple user's... | hcdwkxzo quykrcom | GRP_41 | unable to clock orders in mii. unable to cloc... | English |
| 2906 | windows password reset | windows password reset | kauozcir jlyqxise | GRP_0 | windows password reset windows password reset | English |
| 2907 | job SID_37hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hotf failed in job_scheduler at: 09/... | English |
| 2908 | can you help resetting the hr_tool time clock ... | the clock that you punch in your employee numb... | mfeyouli ndobtzpw | GRP_2 | can you help resetting the hr_tool time clock ... | English |
| 2909 | missing travel privileges | \n\nreceived from: uyrpdvoq.mbzevtcx@gmail.com... | uyrpdvoq mbzevtcx | GRP_10 | missing travel privileges \n\nreceived from: ... | English |
| 2910 | unlock user "erp-mae" on server HostName_1076 | please help unlock the user " erp-mae" on serv... | vthuzanc fqdgotvx | GRP_0 | unlock user "erp-mae" on server HostName_1076 ... | English |
| 2911 | lost main monitor display | \r\n\r\nreceived from: wlsazrce.uwehsqbk@gmail... | wlsazrce uwehsqbk | GRP_3 | lost main monitor display \r\n\r\nreceived fro... | English |
| 2912 | engineering tool client - unable to launch | stopped responding error\r\nmultiple programdn... | fydosbih lafdsumb | GRP_0 | engineering tool client - unable to launch sto... | English |
| 2913 | unable to sign in to outlook 2010 after passwo... | unable to sign in to outlook 2010 after passwo... | kijgcwlh gfejlcvb | GRP_0 | unable to sign in to outlook 2010 after passwo... | English |
| 2914 | ticketing_tool ticket | \n\nreceived from: wkqjcfgy.vsknlfri@gmail.com... | wkqjcfgy vsknlfri | GRP_0 | ticketing_tool ticket \n\nreceived from: wkqjc... | English |
| 2915 | websites not loading on company center | companycenter.company.com | qcfmxgid jvxanwre | GRP_0 | websites not loading on company center company... | English |
| 2916 | acct 81910520 was set up to get one monthly in... | \nSID_34 - account 81910520 - smhdyhti tool wa... | jrzpcesm oznigwvj | GRP_13 | acct 81910520 was set up to get one monthly in... | English |
| 2917 | open order book problem (( back order )) - access | we are having a problem back order report para... | jevckify sbnohwiv | GRP_13 | open order book problem (( back order )) - acc... | English |
| 2918 | erp SID_34 password reset | name:mfeyouli ndobtzpw\r\nlanguage:\r\nbrowser... | mfeyouli ndobtzpw | GRP_0 | erp SID_34 password reset name:mfeyouli ndobtz... | English |
| 2919 | erp SID_34 password locked | erp SID_34 password locked | advqtkeu uypkfisq | GRP_0 | erp SID_34 password locked erp SID_34 password... | English |
| 2920 | update on ticket_no0443915 | update on ticket_no0443915 | rbozivdq gmlhrtvp | GRP_0 | update on ticket_no0443915 update on ticket_no... | English |
| 2921 | printer asking to update driver | printer asking to update driver | gqhfieys pkwcdbrv | GRP_0 | printer asking to update driver printer asking... | English |
| 2922 | erp SID_9 password reset | erp SID_9 password reset | ybplwrez lqcyehbf | GRP_0 | erp SID_9 password reset erp SID_9 password reset | English |
| 2923 | ticket update on ticket_no0443915 | ticket update on ticket_no0443915 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0443915 ticket updat... | English |
| 2924 | etime visibility on hr_tool | hi all. had this issue a month ago and was to... | xszoedmc gmhkdsnw | GRP_0 | etime visibility on hr_tool hi all. had this ... | English |
| 2925 | unable to send skype meeting invitation. | unable to send skype meeting invitation. | sdbcpvtx hzpctsla | GRP_0 | unable to send skype meeting invitation. unabl... | English |
| 2926 | ughzilfm cfibdamq called requesting for the ap... | ughzilfm cfibdamq called requesting for the ap... | olckhmvx pcqobjnd | GRP_0 | ughzilfm cfibdamq called requesting for the ap... | English |
| 2927 | windows account locked | windows account locked | vyjmlain hvjbmdgi | GRP_0 | windows account locked windows account locked | English |
| 2928 | probleme mit ie \niptbwdq csenjruz | probleme mit ie \niptbwdq csenjruz | niptbwdq csenjruz | GRP_24 | probleme mit ie \niptbwdq csenjruz probleme mi... | Hungarian |
| 2929 | wanted to know if the account of pathuick st... | wanted to know if the account of pathuick st... | aorthyme rnsuipbk | GRP_0 | wanted to know if the account of pathuick st... | English |
| 2930 | can no longer print to tc 47. | i am no longer able to print to tc47. i must i... | zhwktnia dfhormwk | GRP_0 | can no longer print to tc 47. i am no longer ... | English |
| 2931 | analysis add in does not show up. | analysis add in does not show up. | dslamtcb ezbmonjr | GRP_0 | analysis add in does not show up. analysis add... | English |
| 2932 | s1 to k1 for hcuixqgj mavxgqbs | s1 to k1 for hcuixqgj mavxgqbs | ughzilfm cfibdamq | GRP_34 | s1 to k1 for hcuixqgj mavxgqbs s1 to k1 for hc... | English |
| 2933 | install we03 \ewew8323601 \acqpinyd ecygimqd | install we03 \ewew8323601 \acqpinyd ecygimqd | acqpinyd ecygimqd | GRP_24 | install we03 \ewew8323601 \acqpinyd ecygimqd i... | English |
| 2934 | probleme mit portal \acqpinyd ecygimqd | probleme mit portal \acqpinyd ecygimqd | acqpinyd ecygimqd | GRP_24 | probleme mit portal \acqpinyd ecygimqd problem... | Danish |
| 2935 | hcuixqgj.mavxgqbs@gmail.com password reset | hcuixqgj.mavxgqbs@gmail.com password reset | olckhmvx pcqobjnd | GRP_0 | hcuixqgj.mavxgqbs@gmail.com password reset hcu... | English |
| 2936 | probleme mit portal .\hcuixqgj mavxgqbs | probleme mit portal .\hcuixqgj mavxgqbs | hcuixqgj mavxgqbs | GRP_24 | probleme mit portal .\hcuixqgj mavxgqbs proble... | Danish |
| 2937 | hr_tool etime not loading | hr_tool etime not loading | psikzmba stumdcqp | GRP_0 | hr_tool etime not loading hr_tool etime not lo... | English |
| 2938 | please delete the attached series of meetings | meeting was scheduled by a former employee\r\n... | jhwgydeb ufiatosg | GRP_26 | please delete the attached series of meetings ... | English |
| 2939 | job Job_1129conf_s failed in job_scheduler at:... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1129conf_s failed in job_scheduler at:... | English |
| 2940 | whenever pc is turned on it shows a bluescreen... | whenever pc is turned on it shows a blue scree... | fmorwhip jidvlbtp | GRP_0 | whenever pc is turned on it shows a bluescreen... | English |
| 2941 | unable to find network drives after password r... | unable to find network drives after password r... | dxtulsik xizungmt | GRP_0 | unable to find network drives after password r... | English |
| 2942 | vip 2 // issue with monitor display | name : stdezpqw bkmeuhfz\r\nemail : stdezpqw.b... | stdezpqw bkmeuhfz | GRP_3 | vip 2 // issue with monitor display name : std... | English |
| 2943 | account locked | account locked | qmgspxkf mckfysdh | GRP_0 | account locked account locked | English |
| 2944 | configair server in SID_1 uacyltoe hxgaycze en... | mill_model model in SID_1 is not working corre... | iavozegx jpcudyfi | GRP_14 | configair server in SID_1 uacyltoe hxgaycze en... | English |
| 2945 | password issue. | hi,\r\n\r\nmr. indra kurtyar a is not able to ... | lpdrjngh brdquyct | GRP_0 | password issue. hi,\r\n\r\nmr. indra kurtyar a... | English |
| 2946 | lese und schreibberechtigung für HostName_753... | lese und schreibberechtigung für HostName_753... | veyduami hjxpwqbi | GRP_34 | lese und schreibberechtigung für HostName_753... | German |
| 2947 | modify quote performance model | the model and field [pk_publish_pk_otc_quotes_... | urhpnlaf agmsfqil | GRP_9 | modify quote performance model the model and f... | English |
| 2948 | unable to connect to company secure | unable to connect to company secure | ugephfta hrbqkvij | GRP_0 | unable to connect to company secure unable to ... | English |
| 2949 | please upgrade tom and karghyuens office to th... | please upgrade tom and karghyuen's office to t... | zarlgjes nxjvzcta | GRP_3 | please upgrade tom and karghyuens office to th... | English |
| 2950 | erp SID_34 password reset | please reset my password, not sure why mine gi... | gvderpbx udrzjxkm | GRP_0 | erp SID_34 password reset please reset my pass... | English |
| 2951 | laptop is getting a power supply not sufficien... | laptop is getting a power supply not sufficien... | jmrukcfq rdyuxomp | GRP_3 | laptop is getting a power supply not sufficien... | English |
| 2952 | zlz agreements 4111244546 + 4111337261 don´... | \r\n\r\nreceived from: qbewrpfu.lwibmxzo@gmail... | qbewrpfu lwibmxzo | GRP_13 | zlz agreements 4111244546 + 4111337261 don´... | English |
| 2953 | ughzilfm cfibdamq called in to reset password ... | ughzilfm cfibdamq called in to reset password ... | olckhmvx pcqobjnd | GRP_0 | ughzilfm cfibdamq called in to reset password ... | English |
| 2954 | drucker vh77 und vh79 funktionieren nicht. tic... | \r\n • printer name / make - model? (ex ... | tcepzdhi ymbirlod | GRP_33 | drucker vh77 und vh79 funktionieren nicht. tic... | English |
| 2955 | outlook not working | outlook not working | nvszqucy rhtwlzkj | GRP_0 | outlook not working outlook not working | English |
| 2956 | outlook not working | outlook not working | hbmwlprq ilfvyodx | GRP_0 | outlook not working outlook not working | English |
| 2957 | user- moblews forgotten his telephony_software... | user- moblews forgotten his telephony_software... | ijmabvlz vosuedkm | GRP_7 | user- moblews forgotten his telephony_software... | English |
| 2958 | pc eemw8144241 einrichten damit der barcode an... | pc eemw8144241 einrichten damit der barcode an... | djilqgmw bidchqsg | GRP_42 | pc eemw8144241 einrichten damit der barcode an... | German |
| 2959 | hsh | \r\n\r\nreceived from: aksthyuhath.shettythruy... | badnzyue nxuqmdwl | GRP_0 | hsh \r\n\r\nreceived from: aksthyuhath.shettyt... | English |
| 2960 | ordnerfreigabe für m: kvp3 und ce_leiter | ordnerfreigabe für m: kvp3 und ce_leiter | nemzycxb xpsgkahw | GRP_34 | ordnerfreigabe für m: kvp3 und ce_leiter ordn... | German |
| 2961 | job Job_593 failed in job_scheduler at: 09/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/28/... | English |
| 2962 | wifi is not working. | wifi is not working. | umkpayhc adflvbxg | GRP_0 | wifi is not working. wifi is not working. | English |
| 2963 | please give me administration permission for m... | please give me administration permission for m... | utyeofsk rdyzpwhi | GRP_19 | please give me administration permission for m... | English |
| 2964 | org 1314 - inwarehouse_tool 0159108935 issue | the inwarehouse_tool printed output is not com... | tqfnalpj qyoscnge | GRP_13 | org 1314 - inwarehouse_tool 0159108935 issue t... | English |
| 2965 | org 1314 : inwarehouse_tool# 0159108934 issue | refer to this inwarehouse_tool no. 0159108934 ... | tqfnalpj qyoscnge | GRP_13 | org 1314 : inwarehouse_tool# 0159108934 issue... | English |
| 2966 | please restart the SID_56 server today 8pm est | hello team,\r\n\r\njava changes are moved to p... | nvxkdqfi slkojtcg | GRP_21 | please restart the SID_56 server today 8pm est... | English |
| 2967 | incorrect logo is been displayed on distributo... | incorrect logo is been displayed on distributo... | vbmzgsdk jdmyazti | GRP_21 | incorrect logo is been displayed on distributo... | English |
| 2968 | viewer for step files | \r\n\r\nreceived from: azyfsrqh.wkavqigu@gmail... | azyfsrqh wkavqigu | GRP_0 | viewer for step files \r\n\r\nreceived from: a... | English |
| 2969 | setup new ws \zlnfpuam aktplhre | setup new ws \zlnfpuam aktplhre | zlnfpuam aktplhre | GRP_24 | setup new ws \zlnfpuam aktplhre setup new ws \... | un |
| 2970 | erp purchasing access issue user kgueyiwp cj... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | ekvtdcyq grncjlho | GRP_29 | erp purchasing access issue user kgueyiwp cj... | English |
| 2971 | power outage : vogelfontein sa site hard down ... | what type of outage: ___x__network _____c... | spxqmiry zpwgoqju | GRP_8 | power outage : vogelfontein sa site hard down ... | English |
| 2972 | drucker em06 im auslieferbereich. immer den gl... | drucker em06 im auslieferbereich. immer den gl... | egklxsoy hivwzjcf | GRP_0 | drucker em06 im auslieferbereich. immer den gl... | German |
| 2973 | fqhlvcxn zdfymgjp wants to share the file fqhl... | \r\n\r\nreceived from: fqhlvcxn.zdfymgjp@gmail... | fqhlvcxn zdfymgjp | GRP_0 | fqhlvcxn zdfymgjp wants to share the file fqhl... | English |
| 2974 | pls check erp SID_34 account of vvgraec - she ... | pls check erp account of vvgraec - she is not ... | vwpxjtof vmidzswj | GRP_2 | pls check erp SID_34 account of vvgraec - she ... | English |
| 2975 | ??????????????????? | \r\n\r\nreceived from: yzbjhmpw.vzrulkog@gmail... | yzbjhmpw vzrulkog | GRP_0 | ??????????????????? \r\n\r\nreceived from: yzb... | English |
| 2976 | url portal not functioning | \r\n\r\nreceived from: cxltnjuk.hkdefraw@gmail... | cxltnjuk hkdefraw | GRP_0 | url portal not functioning \r\n\r\nreceived fr... | English |
| 2977 | HostName_66 : volume: f:\ label:dat1-HostName_... | HostName_66 : volume: f:\ label:dat1-HostName_... | spxqmiry zpwgoqju | GRP_12 | HostName_66 : volume: f:\ label:dat1-HostName_... | English |
| 2978 | security incidents - ( #in33987594) : 29866 vi... | source ip :\r\nsystem name :\r\nuser name:\r\... | gzhapcld fdigznbk | GRP_3 | security incidents - ( #in33987594) : 29866 vi... | English |
| 2979 | HostName_1379 : volume: c:\ label:sys-HostName... | HostName_1379 : volume: c:\ label:sys-HostName... | spxqmiry zpwgoqju | GRP_8 | HostName_1379 : volume: c:\ label:sys-HostName... | English |
| 2980 | hp2çƒåŽ‹ç‚‰æ•°æ®ä¼ 输å¡ï¼Œæ•°æ®æ›´æ–°ä¸å... | hp2çƒåŽ‹ç‚‰æ•°æ®ä¼ 输å¡ï¼Œæ•°æ®æ›´æ–°ä¸å... | basqoyjx frvwhbse | GRP_30 | hp2çƒåŽ‹ç‚‰æ•°æ®ä¼ 输å¡ï¼Œæ•°æ®æ›´æ–°ä¸å... | English |
| 2981 | zpononpo mp's data is incorrect. | zpononpo mp's data is incorrect. | nrugzxkl lohqkvry | GRP_9 | zpononpo mp's data is incorrect. zpononpo mp's... | English |
| 2982 | job Job_2645 failed in job_scheduler at: 09/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 09/28... | English |
| 2983 | question - who is taking care on report zzsd... | i've realised that 1,131 not needed customer s... | atlwdyej vtlhzbix | GRP_54 | question - who is taking care on report zzsd... | English |
| 2984 | user creation and deletion on droracle , HostN... | create users : 1. unix team 2. user with sudo... | klopfgxd odxgmqhy | GRP_47 | user creation and deletion on droracle , HostN... | English |
| 2985 | not able to upload the engineering_tool with a... | \r\n\r\nreceived from: nmqgrkex.ldeizfrm@gmail... | nmqgrkex ldeizfrm | GRP_0 | not able to upload the engineering_tool with a... | English |
| 2986 | passwort frau koburvmc jwzlebap #51117 | \r\n\r\nreceived from: mobaidfx.gviwlsrm@gmail... | mobaidfx gviwlsrm | GRP_0 | passwort frau koburvmc jwzlebap #51117 \r\n\r\... | German |
| 2987 | bridgex from lacw8515941 - monitoring_tool rob... | bridgex from lacw8515941 - monitoring_tool rob... | spxqmiry zpwgoqju | GRP_60 | bridgex from lacw8515941 - monitoring_tool rob... | English |
| 2988 | both the numbers for gso are not working. | both the numbers for gso are not working.\r\ng... | aorthyme rnsuipbk | GRP_7 | both the numbers for gso are not working. both... | English |
| 2989 | network outage : kingston pa site is down sinc... | what type of outage: _x____network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage : kingston pa site is down sinc... | English |
| 2990 | printer prtsg004 | \r\n\r\nreceived from: bcxpeuko.utorqehx@gmail... | bcxpeuko utorqehx | GRP_0 | printer prtsg004 \r\n\r\nreceived from: bcxpeu... | English |
| 2991 | erp access issue p 11, passwort zurück setzen | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | ukqoiswv unjarfoq | GRP_2 | erp access issue p 11, passwort zurück setzen... | English |
| 2992 | reactivate ruenzm - it is our ceo (usa - delor... | reactivate ruenzm - it is our ceo (usa - delor... | pwotudlf wpjlxfke | GRP_2 | reactivate ruenzm - it is our ceo (usa - delor... | English |
| 2993 | outlook - indizierung | ich kann seit ca. 1 woche meine suche im outlo... | qjsydrfo oeicyswt | GRP_0 | outlook - indizierung ich kann seit ca. 1 woch... | German |
| 2994 | unlock erp account (user id: murakt) | please unlock my erp account (user id: murakt) | knpodsal pzdkcimf | GRP_0 | unlock erp account (user id: murakt) please un... | English |
| 2995 | job Job_3186 failed in job_scheduler at: 09/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3186 failed in job_scheduler at: 09/28... | English |
| 2996 | login blocked | \r\n\r\nreceived from: ublisodp.qydfvpgw@gmail... | ublisodp qydfvpgw | GRP_0 | login blocked \r\n\r\nreceived from: ublisodp.... | English |
| 2997 | out look is not opening | out look is not opening , showing error messag... | kzybxher prjaswhe | GRP_19 | out look is not opening out look is not openin... | English |
| 2998 | unable to login to ess protel | unable to login to ess portal | svmkobqj sgqtdubv | GRP_0 | unable to login to ess protel unable to login... | English |
| 2999 | unable to login to windows | unable to login to windows | zgmdster bdvcealj | GRP_0 | unable to login to windows unable to login to... | English |
| 3000 | reset passwords for knemilvx dvqtziya using pa... | the | jtwykasf elkhcjqn | GRP_17 | reset passwords for knemilvx dvqtziya using pa... | English |
| 3001 | atp for mm 4870517 issue | \r\n\r\nreceived from: qgrbdnoc.dgupnhxv@gmail... | qgrbdnoc dgupnhxv | GRP_6 | atp for mm 4870517 issue \r\n\r\nreceived from... | English |
| 3002 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 3003 | job SID_56filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_56filesys failed in job_scheduler at: ... | English |
| 3004 | ba02 printer still keep printing some error ta... | we've faced the problem ie. the printer ba02 ... | tqfnalpj qyoscnge | GRP_5 | ba02 printer still keep printing some error ta... | English |
| 3005 | erp-mae windows ad account is locked. | erp-mae ad account is locked and hana producti... | petgvwch zevpkogu | GRP_2 | erp-mae windows ad account is locked. erp-mae ... | English |
| 3006 | ask zwip report | when i sae the zwip report. the sales order350... | zcqnuawo zxdtskpw | GRP_45 | ask zwip report when i sae the zwip report. th... | English |
| 3007 | win8.1 系统æç¤ºæ›´æ–°åŽï¼Œæ‰€æœ‰åº”用软... | win8.1 系统æç¤ºæ›´æ–°åŽï¼Œæ‰€æœ‰åº”用软... | bxtdalsj rnkvcshb | GRP_31 | win8.1 系统æç¤ºæ›´æ–°åŽï¼Œæ‰€æœ‰åº”用软... | English |
| 3008 | job Job_3186 failed in job_scheduler at: 09/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3186 failed in job_scheduler at: 09/27... | English |
| 3009 | metal cutting technology p/l (company zqt 2005... | hi team,\r\n\r\ni have created the attached qu... | uisewznr ewtmkphs | GRP_13 | metal cutting technology p/l (company zqt 2005... | English |
| 3010 | 用å‹-库å˜å¸å’Œçްå˜é‡ä¸ç¬¦ | 用å‹-库å˜å¸å’Œçްå˜é‡ä¸ç¬¦ï¼Œäº§å“ç¼–... | qypsxviu xagqtblv | GRP_48 | 用å‹-库å˜å¸å’Œçްå˜é‡ä¸ç¬¦ 用å‹-库å... | Danish |
| 3011 | job Job_3186 failed in job_scheduler at: 09/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3186 failed in job_scheduler at: 09/27... | English |
| 3012 | download issue | \n\nreceived from: uezonywf.rldbvipu@gmail.com... | uezonywf rldbvipu | GRP_19 | download issue \n\nreceived from: uezonywf.rld... | English |
| 3013 | i have another shipment that will not process | commodity details error the same as inc1552879... | lzspyjki smdbqnef | GRP_18 | i have another shipment that will not process ... | English |
| 3014 | cannot connect | \r\n\r\nreceived from: vjuxfokc.cwhxnoug@gmail... | vjuxfokc cwhxnoug | GRP_0 | cannot connect \r\n\r\nreceived from: vjuxfokc... | English |
| 3015 | job Job_1142 failed in job_scheduler at: 09/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1142 failed in job_scheduler at: 09/27... | English |
| 3016 | user getting prompt to upgrade java. | user getting prompt to upgrade java.\r\n-conne... | mdbegvct dbvichlg | GRP_0 | user getting prompt to upgrade java. user gett... | English |
| 3017 | erp business workplace inbox is not working | erp inbox for smitrtgcj1 is not working. i ha... | pdokqgrn bqkpaxcm | GRP_11 | erp business workplace inbox is not working er... | English |
| 3018 | custom quote. at saving receive error message... | name:lagqcompanyo xqtldrcs\nlanguage:\nbrowser... | lagqkmto xqtldrcs | GRP_13 | custom quote. at saving receive error message... | English |
| 3019 | business_client issue | 1.) briefly describe what you were trying to d... | xzvqgodj arqcuvim | GRP_0 | business_client issue 1.) briefly describe wha... | English |
| 3020 | job Job_1129conf_s failed in job_scheduler at:... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1129conf_s failed in job_scheduler at:... | English |
| 3021 | can you reset my password for SID_37 | name:fybwjzhx ojgrpafb\nlanguage:\nbrowser:mic... | fybwjzhx ojgrpafb | GRP_0 | can you reset my password for SID_37 name:fybw... | English |
| 3022 | reset the password for fueiklyv jargqpkm on er... | please reset my password | fueiklyv jargqpkm | GRP_0 | reset the password for fueiklyv jargqpkm on er... | English |
| 3023 | i installed the analysis for microsoft excel i... | i am able to open the analysis for microsoft e... | fueiklyv jargqpkm | GRP_0 | i installed the analysis for microsoft excel i... | English |
| 3024 | channel management claim issue | claim 845354 is approved but is not showing up... | pfzxecbo ptygkvzl | GRP_15 | channel management claim issue claim 845354 i... | English |
| 3025 | job Job_1146a failed in job_scheduler at: 09/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1146a failed in job_scheduler at: 09/2... | English |
| 3026 | password reset | password reset | dvncgqek skvcrebq | GRP_0 | password reset password reset | English |
| 3027 | crm addin boxes dont stay checked | gso please reach out to lryturhy to correct hi... | crjhotyk pxslorbe | GRP_0 | crm addin boxes dont stay checked gso please r... | English |
| 3028 | expense report blocked | expense report blocked | cqlehowf aosqelnr | GRP_0 | expense report blocked expense report blocked | English |
| 3029 | working on the fax lines in usa to see if we c... | working on the fax lines in usa to see if we c... | makiosjc kxapdhnm | GRP_7 | working on the fax lines in usa to see if we c... | English |
| 3030 | outlook not working, was ok this morning, but ... | outlook down\nwlhxrogv yawtxuod | wlhxrogv yawtxuod | GRP_0 | outlook not working, was ok this morning, but ... | English |
| 3031 | working on getting his new laptop ready for him | working on getting his new laptop ready for him | zjihgovn cqxahony | GRP_3 | working on getting his new laptop ready for hi... | English |
| 3032 | unable to load outlook | unable to load outlook | tkflbvim smwqzfgc | GRP_0 | unable to load outlook unable to load outlook | English |
| 3033 | business objects analysis errors | i recently changed my work computer from an 8g... | ferxqvsm esmwxqlf | GRP_0 | business objects analysis errors i recently ch... | English |
| 3034 | login issue | login issue\r\n-verified user details.(employe... | nmpworvu upgtrvnj | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 3035 | job Job_3194 failed in job_scheduler at: 09/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 09/27... | English |
| 3036 | (srvlavpwdrprd01.company.company.com) is not r... | (srvlavpwdrprd01.company.company.com) is not r... | vushymxe ifrbzdtl | GRP_61 | (srvlavpwdrprd01.company.company.com) is not r... | English |
| 3037 | netweaver access | \r\n\r\nreceived from: oqvwgnkc.gkjylpzx@gmail... | oqvwgnkc gkjylpzx | GRP_0 | netweaver access \r\n\r\nreceived from: oqvwgn... | English |
| 3038 | reset the password for fueiklyv jargqpkm on er... | i tried using my windows login password but it... | fueiklyv jargqpkm | GRP_0 | reset the password for fueiklyv jargqpkm on er... | English |
| 3039 | skype certificate error | skype certificate error | rstjupxe yjlgsiah | GRP_0 | skype certificate error skype certificate error | Latin |
| 3040 | dealer open orders are appearing in vkm4 | hi,\n\nplease raise it ticket. all dealer open... | miecoszw mhvbnodw | GRP_10 | dealer open orders are appearing in vkm4 hi,\... | English |
| 3041 | client 0819 company, inc / rejected edi inware... | from: nihtykki mcgyuouald \nsent: tuesday, se... | iqcylpok ascpqvni | GRP_32 | client 0819 company, inc / rejected edi inware... | English |
| 3042 | pr - workflow | from: grhryueg dewicrth \nsent: tuesday, septe... | kehtxprg uekapfzt | GRP_29 | pr - workflow from: grhryueg dewicrth \nsent: ... | English |
| 3043 | new laptop setup | help to create and configure the user login pr... | uvrbhlnt bjrmalzi | GRP_19 | new laptop setup help to create and configure ... | English |
| 3044 | ticket update on inplant_864352 | ticket update on inplant_864352 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_864352 ticket update ... | English |
| 3045 | unable to view data in distributor_tool account | unable to view data in distributor_tool account | csotmdiw yfeqcbti | GRP_0 | unable to view data in distributor_tool accoun... | English |
| 3046 | dock station- telephony_software ip phone | request for install the dock station and ip ph... | gzjtweph mnslwfqv | GRP_19 | dock station- telephony_software ip phone requ... | English |
| 3047 | the termination action for johhdyanna kadyuilu... | hello , \n\na termination for johhdyanna kadyu... | mobaidfx gviwlsrm | GRP_2 | the termination action for johhdyanna kadyuilu... | English |
| 3048 | job Job_1129conf_s failed in job_scheduler at:... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1129conf_s failed in job_scheduler at:... | English |
| 3049 | vpn connectivity is too slow | vpn connectivity is too slow | pbfscenq qvaylkne | GRP_0 | vpn connectivity is too slow vpn connectivity ... | English |
| 3050 | vpn disconnecting | vpn disconnecting | hjxtczwo wdrxmtqg | GRP_0 | vpn disconnecting vpn disconnecting | English |
| 3051 | erp-mae id seems to be locked in hana SID_60 | erp-mae id seems to be locked in hana SID_60\n... | petgvwch zevpkogu | GRP_53 | erp-mae id seems to be locked in hana SID_60 e... | English |
| 3052 | unable to launch outlook | unable to launch outlook | mvaxhzks kyzvflth | GRP_3 | unable to launch outlook unable to launch outlook | English |
| 3053 | printer not printing | name:xernsfqa uzvsnlbd\nlanguage:\nbrowser:mic... | xernsfqa uzvsnlbd | GRP_0 | printer not printing name:xernsfqa uzvsnlbd\nl... | English |
| 3054 | my outlook will not work on my computer. this ... | bsxvtpke vbfcashd\ncell \nsystem affected is d... | bsxvtpke vbfcashd | GRP_0 | my outlook will not work on my computer. this ... | English |
| 3055 | job Job_1142 failed in job_scheduler at: 09/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1142 failed in job_scheduler at: 09/27... | English |
| 3056 | unable to connect to vpn | unable to connect to vpn | hjxtczwo wdrxmtqg | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 3057 | unable to connect to company secure in usa | unable to connect to company secure in usa | horzelqj ujyzldmh | GRP_0 | unable to connect to company secure in usa una... | English |
| 3058 | update on ticket_no1555136 | name:dfgtyon stasrty\nlanguage:\nbrowser:micro... | rbozivdq gmlhrtvp | GRP_0 | update on ticket_no1555136 name:dfgtyon stasr... | English |
| 3059 | account unlock | account unlock | jqxtbspr mpfdivlh | GRP_0 | account unlock account unlock | English |
| 3060 | ticket update on inplant_864348 | ticket update on inplant_864348 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_864348 ticket update ... | English |
| 3061 | inwarehouse_tools are not automatically being ... | customer 81371659, sales org 1204, have inware... | vcedphrq yajdpgnz | GRP_13 | inwarehouse_tools are not automatically being ... | English |
| 3062 | ticket update - inplant_862976 | ticket update - inplant_862976 | olckhmvx pcqobjnd | GRP_0 | ticket update - inplant_862976 ticket update -... | English |
| 3063 | SID_37 password | \r\n\r\nreceived from: czsmnbdi.ispdhfer@gmail... | czsmnbdi ispdhfer | GRP_0 | SID_37 password \r\n\r\nreceived from: czsmnbd... | English |
| 3064 | hello, i am have problems running open sales b... | hello, i am have problems running open sales b... | bmixaeon mtaguhed | GRP_13 | hello, i am have problems running open sales b... | English |
| 3065 | unable to login to skype | unable to login to skype | ugephfta hrbqkvij | GRP_0 | unable to login to skype unable to login to skype | English |
| 3066 | programdnty zfiu0007 problem with credits not ... | we have some accounts where tax is not being i... | rhwsmefo tvphyura | GRP_10 | programdnty zfiu0007 problem with credits not ... | English |
| 3067 | unable to set up skype meetings | unable to set up skype meetings | keqvyfzw qwbohdxg | GRP_0 | unable to set up skype meetings unable to set ... | English |
| 3068 | rechner ewew8323527 \bluescreen \wrcktgbd wzrg... | rechner ewew8323527 \bluescreen \wrcktgbd wzrg... | wrcktgbd wzrgyunp | GRP_24 | rechner ewew8323527 \bluescreen \wrcktgbd wzrg... | Luxembourgish |
| 3069 | reinstall hardkopy we_wu116 \wrcktgbd wzrgyunp | reinstall hardkopy we_wu116 \wrcktgbd wzrgyunp | wrcktgbd wzrgyunp | GRP_24 | reinstall hardkopy we_wu116 \wrcktgbd wzrgyunp... | English |
| 3070 | probleme mit hp4050 \fehler 41.1 \lxvunpiz mgj... | probleme mit hp4050 \fehler 41.1 \lxvunpiz mgj... | lxvunpiz mgjxwept | GRP_24 | probleme mit hp4050 \fehler 41.1 \lxvunpiz mgj... | German |
| 3071 | rechner ewew8323612 sehr langsam .\lxvunpiz mg... | rechner ewew8323612 sehr langsam .\lxvunpiz mg... | lxvunpiz mgjxwept | GRP_24 | rechner ewew8323612 sehr langsam .\lxvunpiz mg... | German |
| 3072 | setup new ws \sgnubadl gpkovbah | setup new ws \sgnubadl gpkovbah | sgnubadl gpkovbah | GRP_24 | setup new ws \sgnubadl gpkovbah setup new ws \... | un |
| 3073 | unable to connect to tc78 and tc19 | unable to connect to tc78 and tc19 | arjpdohf mrqwdtil | GRP_0 | unable to connect to tc78 and tc19 unable to c... | English |
| 3074 | erp SID_34 password reset done. | erp SID_34 password reset done. | upcajlmd uqsbmiea | GRP_0 | erp SID_34 password reset done. erp SID_34 pa... | English |
| 3075 | account locked. | account locked. | sygionua szunhced | GRP_34 | account locked. account locked. | English |
| 3076 | password is not getting synchronized. | password is not getting synchronized. | keqldvig hmiyeobl | GRP_0 | password is not getting synchronized. password... | English |
| 3077 | reset passsw erp SID_34 - user: almrgtyeiba | hi team,\r\n\r\ncould you please reset passw t... | qasdhyzm yuglsrwx | GRP_0 | reset passsw erp SID_34 - user: almrgtyeiba hi... | English |
| 3078 | unable to launch outlook after resetting the p... | unable to launch outlook after resetting the p... | keqldvig hmiyeobl | GRP_0 | unable to launch outlook after resetting the p... | English |
| 3079 | crm plugin not responding | crm plugin not responding | owlgqjme qhcozdfx | GRP_0 | crm plugin not responding crm plugin not respo... | English |
| 3080 | urgent: crm mailbox is not synchronising | urgent: crm mailbox is not synchronising. got ... | crjhotyk pxslorbe | GRP_40 | urgent: crm mailbox is not synchronising urgen... | English |
| 3081 | printer problem / issue information | please complete all required questions below. ... | owhuxbnf sxbgyrou | GRP_0 | printer problem / issue information please com... | English |
| 3082 | unable to get the crm app on outlook | unable to get the crm app on outlook | fydosbih lafdsumb | GRP_0 | unable to get the crm app on outlook unable to... | English |
| 3083 | termination for user lisfgta geitrhybler | termination for user lisfgta geitrhybler\n\n\n... | mobaidfx gviwlsrm | GRP_2 | termination for user lisfgta geitrhybler termi... | English |
| 3084 | pls reset windows password for user vvkertgipn | pls reset windows password for user vvkertgipn | vwpxjtof vmidzswj | GRP_0 | pls reset windows password for user vvkertgipn... | English |
| 3085 | call for ecwtrjnq jpecxuty | call for ecwtrjnq jpecxuty | olckhmvx pcqobjnd | GRP_0 | call for ecwtrjnq jpecxuty call for ecwtrjnq j... | English |
| 3086 | employee termination foulgnmdia pgsqwrumh langmar | hello , \n\na kündigung foulgnmdia pgsqwrumh ... | mobaidfx gviwlsrm | GRP_2 | employee termination foulgnmdia pgsqwrumh lang... | English |
| 3087 | unable to sign in to vpn | unable to sign in to vpn | ncjispka wspgujxm | GRP_0 | unable to sign in to vpn unable to sign in to vpn | English |
| 3088 | probleme bei der projekt eingabe im collaborat... | dear it,\r\n\r\nstill some issues with the tra... | difozlav dgbfptos | GRP_0 | probleme bei der projekt eingabe im collaborat... | English |
| 3089 | lean tracker problems | hello it helpdesk,\r\n\r\ngood morning.\r\ni a... | dshferby houtnzdi | GRP_0 | lean tracker problems hello it helpdesk,\r\n\r... | English |
| 3090 | inc1553541 - ticket update | inc1553541 - ticket update | olckhmvx pcqobjnd | GRP_0 | inc1553541 - ticket update inc1553541 - ticket... | English |
| 3091 | procenter login credential for new joiner | please create procenter login credential for b... | utyeofsk rdyzpwhi | GRP_37 | procenter login credential for new joiner plea... | English |
| 3092 | access to teams drive - folder sox self-assess... | need access to folder sox self-assessments for... | bayxwszc oiedajqz | GRP_34 | access to teams drive - folder sox self-assess... | English |
| 3093 | job bk_hana_SID_22_arc_dp failed in job_schedu... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bk_hana_SID_22_arc_dp failed in job_schedu... | English |
| 3094 | r3ad hr queues stuck in SID_39 - 21k entries | hr employee data is not replicated - got stuck... | kgytujhe bonhwzrx | GRP_15 | r3ad hr queues stuck in SID_39 - 21k entries h... | English |
| 3095 | probleme mit druecker mp16 | probleme mit druecker mp16\r\n\r\nfehlermeldun... | txkgmwbc qohmgwrp | GRP_33 | probleme mit druecker mp16 probleme mit drueck... | German |
| 3096 | unable to login to erp | misplaced password | uaclgmeq hyxzmwdi | GRP_0 | unable to login to erp misplaced password | English |
| 3097 | security incidents - ( #in33976733) : suspicio... | source ip: 10.16.90.249\r\nsource hostname: an... | gzhapcld fdigznbk | GRP_56 | security incidents - ( #in33976733) : suspicio... | English |
| 3098 | security incidents - ( #in33984033) : internal... | source ip :\r\nsystem name :\r\nuser name:\r\... | gzhapcld fdigznbk | GRP_19 | security incidents - ( #in33984033) : internal... | English |
| 3099 | kfdyzexr hnbetvfk : password reset | kfdyzexr hnbetvfk : password reset | xvwchsdg pladjmxt | GRP_0 | kfdyzexr hnbetvfk : password reset kfdyzexr hn... | English |
| 3100 | unable to create delivery | please provide the following:\r\n\r\nwhat orde... | aztqelgy fqnkuxvw | GRP_6 | unable to create delivery please provide the f... | English |
| 3101 | mobile device activation | mobile device activation | ayktfvjr soghziec | GRP_0 | mobile device activation mobile device activa... | English |
| 3102 | po language is incorrect-po#4505652547 | from: xjvubmlq vyamhjip \r\nsent: tuesday, sep... | xjvubmlq vyamhjip | GRP_29 | po language is incorrect-po#4505652547 from: x... | English |
| 3103 | reset the password for pumjbcna scluvtyj on er... | hi all,\n\nthe user romertanj need their passw... | pumjbcna scluvtyj | GRP_0 | reset the password for pumjbcna scluvtyj on er... | English |
| 3104 | reset passwords for pumjbcna scluvtyj using pa... | hi all,\r\n\r\nplease, the user romertanj need... | pumjbcna scluvtyj | GRP_17 | reset passwords for pumjbcna scluvtyj using pa... | English |
| 3105 | outlook not getting connected to exchange server | outlook not getting connected to exchange server | ayktfvjr soghziec | GRP_0 | outlook not getting connected to exchange serv... | English |
| 3106 | urgent // price update error | \r\n\r\nreceived from: uarnkqps.gufcjxma@gmail... | uarnkqps gufcjxma | GRP_13 | urgent // price update error \r\n\r\nreceived... | English |
| 3107 | erp SID_34 account locked | erp SID_34 account locked | fjetbklw oeuawsbq | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 3108 | drucker dell 1350 cnw druckt alle seiten mit g... | druckt druckt alles vergraut | wgmnjxft zeyhasdj | GRP_33 | drucker dell 1350 cnw druckt alle seiten mit g... | German |
| 3109 | finance_app | \r\n\r\nreceived from: bujiesrg.zopcrshl@gmail... | bujiesrg zopcrshl | GRP_55 | finance_app \r\n\r\nreceived from: bujiesrg.zo... | English |
| 3110 | password for w-lan anrgtdy bofffgtyin | \n\nreceived from: dubpgacz.kjzhilng@gmail.com... | dubpgacz kjzhilng | GRP_0 | password for w-lan anrgtdy bofffgtyin \n\nrece... | English |
| 3111 | account locked in ad | account locked in ad | adxuzbcv uojxrivy | GRP_0 | account locked in ad account locked in ad | English |
| 3112 | help to pose the 4 pos which cannot be posed b... | when the 4 pos are posed, as the local tax law... | dizquolf hlykecxa | GRP_10 | help to pose the 4 pos which cannot be posed b... | English |
| 3113 | account locked in supply_chain_software | account locked in supply_chain_software | rvdtagmf klbnhydo | GRP_0 | account locked in supply_chain_software accou... | English |
| 3114 | circuit outage:australia-dmvpn-1811-rtr02 down... | what type of outage: _____network ___yes_... | bozdftwx smylqejw | GRP_8 | circuit outage:australia-dmvpn-1811-rtr02 down... | English |
| 3115 | final inwarehouse_tool for project is not work... | dear it team,\r\n\r\ni have again an issue wit... | fmqubnvs kcxpeyiv | GRP_13 | final inwarehouse_tool for project is not work... | English |
| 3116 | after changing the password,outlook is not res... | name:mandgtryjuth\nlanguage:\nbrowser:microsof... | lfamubxq evgwkyix | GRP_0 | after changing the password,outlook is not res... | English |
| 3117 | engineering_tool-new customer addition | \r\n\r\nreceived from: skmdgnuh.utgclesd@gmail... | skmdgnuh utgclesd | GRP_25 | engineering_tool-new customer addition \r\n\r\... | English |
| 3118 | hpqc account--reset password | \n\nreceived from: phfduvwl.yqnaucep@gmail.com... | phfduvwl yqnaucep | GRP_0 | hpqc account--reset password \n\nreceived from... | English |
| 3119 | unable to open outlook and business_client | unable to open outlook and business_client | otpkzifh gywinoml | GRP_0 | unable to open outlook and business_client un... | English |
| 3120 | 电脑硬盘故障,请求维修。 | 电脑硬盘故障,请求维修。 | ruhbyzpv vlksnjti | GRP_30 | 电脑硬盘故障,请求维修。 电脑硬... | English |
| 3121 | business_client not working | \r\n\r\nreceived from: otpkzifh.gywinoml@gmail... | otpkzifh gywinoml | GRP_0 | business_client not working \r\n\r\nreceived f... | English |
| 3122 | job Job_3190 failed in job_scheduler at: 09/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3190 failed in job_scheduler at: 09/27... | English |
| 3123 | the plm conversion server - is reporting a : w... | the plm conversion server - is reporting a : w... | spxqmiry zpwgoqju | GRP_14 | the plm conversion server - is reporting a : w... | English |
| 3124 | add the inxsupmy zhwmifvx to materials_managem... | \n\nreceived from: inxsupmy.zhwmifvx@gmail.com... | inxsupmy zhwmifvx | GRP_0 | add the inxsupmy zhwmifvx to materials_managem... | English |
| 3125 | erp login blocked | \r\n\r\nreceived from: ublisodp.qydfvpgw@gmail... | ublisodp qydfvpgw | GRP_0 | erp login blocked \r\n\r\nreceived from: ublis... | English |
| 3126 | outlook is not updating on my laptop | name:warrrtyen\nlanguage:\nbrowser:microsoft i... | wmybrona qvwhpamb | GRP_0 | outlook is not updating on my laptop name:warr... | English |
| 3127 | circuit outage : carrier india dmvpn-rtr02 is ... | what type of outage: _____network __x___c... | spxqmiry zpwgoqju | GRP_8 | circuit outage : carrier india dmvpn-rtr02 is ... | English |
| 3128 | erp SID_34 account locked | erp SID_34 account locked | iwqfelcu gsubfiml | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 3129 | erp SID_34 account locked | erp SID_34 account locked | dbhwzfxy amhowrfk | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 3130 | sound system of laptop | \r\n\r\nreceived from: ygkzwsud.cvjgkxws@gmail... | ygkzwsud cvjgkxws | GRP_19 | sound system of laptop \r\n\r\nreceived from: ... | English |
| 3131 | erp login trouble | \r\n\r\nreceived from: xosycftu.olhpmsdw@gmail... | xosycftu olhpmsdw | GRP_0 | erp login trouble \r\n\r\nreceived from: xosyc... | English |
| 3132 | circuit outage : switzerland dmvpn-2821-rtr01 ... | what type of outage: _____network ___x__c... | spxqmiry zpwgoqju | GRP_8 | circuit outage : switzerland dmvpn-2821-rtr01 ... | English |
| 3133 | hr_tool-etime 系统ä¸èƒ½ç™»å½•,一直显ç¤... | hr_tool-etime 系统ä¸èƒ½ç™»å½•,一直显ç¤... | qekyowtv qdjixvkh | GRP_31 | hr_tool-etime 系统ä¸èƒ½ç™»å½•,一直显ç¤... | English |
| 3134 | erp system - very slow response_apac | we've faced the problem of erp system which is... | tqfnalpj qyoscnge | GRP_0 | erp system - very slow response_apac we've fac... | English |
| 3135 | HostName_212 : /dev/u00lv is over 20% space c... | HostName_212 : /dev/u00lv is over 20% space c... | spxqmiry zpwgoqju | GRP_8 | HostName_212 : /dev/u00lv is over 20% space c... | English |
| 3136 | unable to browse "hr_tool" site. | unable to browse "hr_tool" site. snapshot of e... | cpnqvlfk imjucnes | GRP_0 | unable to browse "hr_tool" site. unable to bro... | English |
| 3137 | é‚®ç®±æ— æ³•å¯åЍ | é‚®ç®±æ— æ³•å¯åŠ¨ï¼Œæç¤ºæ— 法创新新的å... | bzypjigs qokwvgyn | GRP_30 | é‚®ç®±æ— æ³•å¯åЍ é‚®ç®±æ— æ³•å¯åŠ¨ï¼Œæç¤º... | English |
| 3138 | job pp_EU_tool_netch_keheu2 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_keheu2 failed in job_sche... | English |
| 3139 | crm | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_15 | crm \r\n\r\nreceived from: hmjdrvpb.komuaywn@g... | English |
| 3140 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 3141 | erp slow | apac china, apac dc & company colleagues said ... | bqdyhnoj rwyvsfgn | GRP_0 | erp slow apac china, apac dc & company colleag... | English |
| 3142 | job pp_EU_tool_netch_ap2 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap2 failed in job_schedul... | English |
| 3143 | purchasing order export issue | \r\n\r\nreceived from: jrdafplx.fcnjmvts@gmail... | jrdafplx fcnjmvts | GRP_29 | purchasing order export issue \r\n\r\nreceived... | English |
| 3144 | password reset via password_manager_tool passw... | password reset via password_manager_tool passw... | fsvnjexu yxaevupi | GRP_0 | password reset via password_manager_tool passw... | English |
| 3145 | outlook not working and unable to receive emails. | outlook not working and unable to receive emails. | pvbomqht smfkuhwi | GRP_0 | outlook not working and unable to receive emai... | English |
| 3146 | engineering_tool-new customer | \r\n\r\nreceived from: skmdgnuh.utgclesd@gmail... | skmdgnuh utgclesd | GRP_25 | engineering_tool-new customer \r\n\r\nreceived... | English |
| 3147 | msd: outlook not showing the crm add-in. | msd: outlook not showing the crm add-in.\r\n-c... | ohnimgtv nmqyuolh | GRP_0 | msd: outlook not showing the crm add-in. msd: ... | English |
| 3148 | vpn access status check | vpn access status check | HdOuWxAt qfKdlJMx | GRP_0 | vpn access status check vpn access status check | English |
| 3149 | cannot find dr. cyxieuwk rekwlqmu in ticketing... | i tried to add cyxieuwk.rekwlqmu@gmail.com to ... | fyuqhlcx fjiuhxae | GRP_0 | cannot find dr. cyxieuwk rekwlqmu in ticketing... | English |
| 3150 | alrthyu s lowe. my ee# is 6045304.it needs to ... | from: scthyott lortwe \nsent: monday, septembe... | sbvlxuwm yanbikrx | GRP_9 | alrthyu s lowe. my ee# is 6045304.it needs to ... | English |
| 3151 | expense report issue : getting alert in expens... | expense report issue \r\n\r\nplease change cos... | fjciqgav ybkqvazh | GRP_10 | expense report issue : getting alert in expens... | English |
| 3152 | outlook language is changing automatically. | outlook language is changing automatically.\r\... | jborwynt gidxbfrq | GRP_0 | outlook language is changing automatically. ou... | English |
| 3153 | mobile device activation | mobile device activation | tyuhfljp zyjfpgtk | GRP_0 | mobile device activation mobile device activation | English |
| 3154 | load telephony_software onto users pc | load telephony_software onto users pc | wrqxmfan fsizndjb | GRP_7 | load telephony_software onto users pc load tel... | English |
| 3155 | no audio while on skype call | no audio while on skype call | ibsywxpc icxhsbfv | GRP_0 | no audio while on skype call no audio while on... | English |
| 3156 | problem with erp login the server list is not ... | problem with erp login the server list is not ... | iorecadj crtmqdjg | GRP_0 | problem with erp login the server list is not ... | English |
| 3157 | i am not able to upload engineering_tool, see ... | i am not able to upload engineering_tool, see ... | zidcxslw clyfdaki | GRP_0 | i am not able to upload engineering_tool, see ... | English |
| 3158 | not able to login to windows | not able to login to windows | bwisgahv phqmgouw | GRP_0 | not able to login to windows not able to login... | English |
| 3159 | user unable to login to the telephony_software . | user unable to login to the telephony_software... | unzfykar osxmbhav | GRP_7 | user unable to login to the telephony_software... | English |
| 3160 | compensation system is missing september inwar... | the compensation system is missing september i... | aofextgk tugywidl | GRP_25 | compensation system is missing september inwar... | English |
| 3161 | ockwafib.wftboqry@gmail.com called to service ... | ockwafib.wftboqry@gmail.com called to service ... | eqzibjhw ymebpoih | GRP_0 | ockwafib.wftboqry@gmail.com called to service ... | English |
| 3162 | cópia de conta telefonica | solicito fornecer cópia da conta telefônica ... | dughqrnf mebofqhz | GRP_62 | cópia de conta telefonica solicito fornecer c... | Portuguese |
| 3163 | confirmation qty window not deducting confirme... | as per my understanding, mii should subtract a... | entuakhp xrnhtdmk | GRP_41 | confirmation qty window not deducting confirme... | English |
| 3164 | rzonkfua yidvloun was unable to login to windo... | rzonkfua yidvloun was unable to login to windo... | rbozivdq gmlhrtvp | GRP_0 | rzonkfua yidvloun was unable to login to windo... | English |
| 3165 | partial confirmation info sent to erp but mach... | usa go-live week. issue reported on 9/21\r\n\r... | entuakhp xrnhtdmk | GRP_41 | partial confirmation info sent to erp but mach... | English |
| 3166 | unable to print purchase orders from erp | unable to print purchase orders from erp | sprzgqyv uxpjtgaw | GRP_0 | unable to print purchase orders from erp unabl... | English |
| 3167 | entered "data maintenance" window using operat... | during usa go-live week on 9/22 i was able to ... | entuakhp xrnhtdmk | GRP_41 | entered "data maintenance" window using operat... | English |
| 3168 | the kündigung action for pfgia scgtitt has co... | hello , \n\na kündigung for pfgia scgtitt, 11... | vmthcrkf iceyusnd | GRP_2 | the kündigung action for pfgia scgtitt has co... | English |
| 3169 | mii logging in under different user | issue reported from usa, usa and usa\n\nnote f... | entuakhp xrnhtdmk | GRP_41 | mii logging in under different user issue repo... | English |
| 3170 | ie 10 needed for finance_app. | ie 10 needed for finance_app.\r\n-connected to... | aymgdoqt eoxphqas | GRP_0 | ie 10 needed for finance_app. ie 10 needed for... | English |
| 3171 | erp SID_34 password reset | erp SID_34 password reset | uojdnrvs amchenrg | GRP_0 | erp SID_34 password reset erp SID_34 password... | English |
| 3172 | password reset | password reset | insbceoa czgpyrtb | GRP_0 | password reset password reset | English |
| 3173 | the driver was not loaded properly. : inc1554... | \nsummary:hello,\ni can't log in my pc due to ... | efbwiadp dicafxhv | GRP_0 | the driver was not loaded properly. : inc1554... | English |
| 3174 | partner rtr team - email restrictions | \n\nreceived from: ntsowaem.jfgslyde@gmail.com... | ntsowaem jfgslyde | GRP_26 | partner rtr team - email restrictions \n\nrec... | English |
| 3175 | documents folder is missing | documents folder is missing. | xekdljqh cuqbgtlf | GRP_0 | documents folder is missing documents folder i... | English |
| 3176 | unable to connect to dg05 printer | unable to connect to dg05 printer | zylaexnv pvkzbduh | GRP_0 | unable to connect to dg05 printer unable to c... | English |
| 3177 | ticket update on ticket_no0439545 | ticket update on ticket_no0439545 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0439545 ticket updat... | English |
| 3178 | unable to print erp orders | unable to print erp orders | esqcuwbg gdcuhzqw | GRP_0 | unable to print erp orders unable to print erp... | English |
| 3179 | unable to connect to wifi | unable to connect to wifi | ypetnhio ouhlpvig | GRP_0 | unable to connect to wifi unable to connect to... | English |
| 3180 | 7350: unable to hear audio on skype | 7350: unable to hear audio on skype | eqxakzyi cwfrjitq | GRP_0 | 7350: unable to hear audio on skype 7350: unab... | English |
| 3181 | connection to system production_order_interfac... | when converting planned orders to production o... | znxcupyi bhrwyxgu | GRP_0 | connection to system production_order_interfac... | English |
| 3182 | skype issue login issue | skype issue login issue | gbirhjat fptbrhwv | GRP_0 | skype issue login issue skype issue login issue | English |
| 3183 | hr_tool etime query | hr_tool etime query | efulzico epgfbhmt | GRP_0 | hr_tool etime query hr_tool etime query | English |
| 3184 | reset the password for cyvdluja oxrkfpbz on ot... | reset the password for cyvdluja oxrkfpbz on ot... | cyvdluja oxrkfpbz | GRP_7 | reset the password for cyvdluja oxrkfpbz on ot... | English |
| 3185 | unable to open outlook | unable to open outlook | mnsejpby xsrdtvkw | GRP_0 | unable to open outlook unable to open outlook | English |
| 3186 | information pushed out of bar in machine statu... | in machine status window, the active hours of ... | entuakhp xrnhtdmk | GRP_41 | information pushed out of bar in machine statu... | English |
| 3187 | invlaid order number (usa) | we see order 2105783 in mii, which infact is m... | entuakhp xrnhtdmk | GRP_41 | invlaid order number (usa) we see order 210578... | English |
| 3188 | "work center allowed % difference" message sho... | when "confirm. qty. threshold" is set to 100%,... | entuakhp xrnhtdmk | GRP_41 | "work center allowed % difference" message sho... | English |
| 3189 | re: sent from snipping tool | \r\n\r\nreceived from: tfesaxip.cvorpnth@gmail... | tfesaxip cvorpnth | GRP_0 | re: sent from snipping tool \r\n\r\nreceived f... | English |
| 3190 | sent from snipping tool | \r\n\r\nreceived from: tfesaxip.cvorpnth@gmail... | tfesaxip cvorpnth | GRP_0 | sent from snipping tool \r\n\r\nreceived from:... | English |
| 3191 | unable to login to ess | unable to login to ess | hduzwpio wrcgunso | GRP_0 | unable to login to ess unable to login to ess | English |
| 3192 | erp help | \r\n\r\nreceived from: znxcupyi.bhrwyxgu@gmail... | znxcupyi bhrwyxgu | GRP_0 | erp help \r\n\r\nreceived from: znxcupyi.bhrwy... | English |
| 3193 | skype issue : personal certificate error. | \nsummary:i am unable to sign into skype - get... | grtaoivq dwjvfkqe | GRP_0 | skype issue : personal certificate error. \nsu... | English |
| 3194 | job Job_3032 failed in job_scheduler at: 09/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_14 | job Job_3032 failed in job_scheduler at: 09/26... | English |
| 3195 | assign to plm - cannot print work orders due t... | connection to system production_order_interfac... | utebfkyi vlzaneuj | GRP_0 | assign to plm - cannot print work orders due t... | English |
| 3196 | wrong "stock status" symbols displayed in dist... | wrong "stock status" symbols displayed in dist... | hbmwlprq ilfvyodx | GRP_20 | wrong "stock status" symbols displayed in dist... | English |
| 3197 | erp access issue | high priority: gofmxlun kxcfrobq is getting er... | rxuobtjg grcmqaxd | GRP_3 | erp access issue high priority: gofmxlun kxcfr... | English |
| 3198 | pair formation error for orders which have rig... | order 226047825, operation 40\r\noperator unab... | entuakhp xrnhtdmk | GRP_41 | pair formation error for orders which have rig... | English |
| 3199 | able to start a confirmed job in mii (usa) | for order 226044182, operation 0015, we "final... | entuakhp xrnhtdmk | GRP_41 | able to start a confirmed job in mii (usa) for... | English |
| 3200 | unable to get production order to print | error reads\r\nconnection to system production... | xplwmiyr pifoldxr | GRP_0 | unable to get production order to print error... | English |
| 3201 | erp printing issue : connection to system prod... | erp printing issue : connection to system prod... | acmglkti cwgxrabu | GRP_0 | erp printing issue : connection to system prod... | English |
| 3202 | erp production order printing issue : connecti... | erp printing issue : connection to system prod... | bdeplqyj fewovrcq | GRP_0 | erp production order printing issue : connecti... | English |
| 3203 | access needed for vrtybundj to ticketing_tool | please usa ycimqxdn wtubpdsz (vrtybundj) acces... | wqxzleky uwjchqor | GRP_36 | access needed for vrtybundj to ticketing_tool ... | English |
| 3204 | crm | \r\n\r\nreceived from: saqbgcpl.ybfzcjiq@gmail... | saqbgcpl ybfzcjiq | GRP_0 | crm \r\n\r\nreceived from: saqbgcpl.ybfzcjiq@g... | English |
| 3205 | business_client login issue | business_client login issue | unrbafjx reyshakw | GRP_0 | business_client login issue business_client lo... | English |
| 3206 | erp is not letting me print orders message no.... | ,message no. /dvsrepro/zrfc016\n\n | qbevnaot shrqicog | GRP_0 | erp is not letting me print orders message no.... | English |
| 3207 | email information | from: kthvr sertce \nsent: monday, september 2... | tjlgzkbp iervwjzg | GRP_26 | email information from: kthvr sertce \nsent: m... | English |
| 3208 | expense report is blocked | expense report is blocked | vtrwyeku gisxlqvt | GRP_0 | expense report is blocked expense report is bl... | English |
| 3209 | personal certificate error : skype issue | personal certificate error : skype issue | hduzwpio wrcgunso | GRP_0 | personal certificate error : skype issue pers... | English |
| 3210 | unable to print production orders on erp print... | unable to print production orders on erp print... | skrxopnw zjasxphv | GRP_14 | unable to print production orders on erp print... | English |
| 3211 | exporting contacts from outlook | exporting contacts from outlook | rwhavckz drvxyihj | GRP_0 | exporting contacts from outlook exporting con... | English |
| 3212 | skype is not opening. | skype is not opening. | pdvjanwx oprdiygs | GRP_0 | skype is not opening. skype is not opening. | English |
| 3213 | reinstall EU_tool \ewew8323851 \wrcktgbd wzrgyunp | reinstall EU_tool \ewew8323851 \wrcktgbd wzrgyunp | wrcktgbd wzrgyunp | GRP_24 | reinstall EU_tool \ewew8323851 \wrcktgbd wzrgy... | Nauru |
| 3214 | sales doc 35900112/000010 still shows as open ... | sales doc 35900112/000010 still shows as open ... | xkmvpaei fizqoprk | GRP_13 | sales doc 35900112/000010 still shows as open ... | English |
| 3215 | windows and erp account locked | windows and erp account locked | vyjmlain hvjbmdgi | GRP_0 | windows and erp account locked windows and erp... | English |
| 3216 | blank call / loud noise / gso | blank call / loud noise / gso | rbozivdq gmlhrtvp | GRP_0 | blank call / loud noise / gso blank call / lou... | English |
| 3217 | skype is "not responding" when trying to do an... | attachment shows skype version, etc.\n\ni am n... | dvzgjsom ynpxqjlf | GRP_0 | skype is "not responding" when trying to do an... | English |
| 3218 | password reset help from password_management_t... | password reset help from password_management_t... | rwhavckz drvxyihj | GRP_0 | password reset help from password_management_t... | English |
| 3219 | call for ecwtrjnq jpecxuty | call for ecwtrjnq jpecxuty | olckhmvx pcqobjnd | GRP_0 | call for ecwtrjnq jpecxuty call for ecwtrjnq j... | English |
| 3220 | unable to open hr_engineering_tool for hours--... | \n\nreceived from: umzcxfah.aoshpjiu@gmail.com... | umzcxfah aoshpjiu | GRP_0 | unable to open hr_engineering_tool for hours--... | English |
| 3221 | password reset | password reset | yvfrgiba kezghiqa | GRP_0 | password reset password reset | English |
| 3222 | compatibility view settings | \r\n\r\nreceived from: tdkfuobm.qrtmaxos@gmail... | tdkfuobm qrtmaxos | GRP_0 | compatibility view settings \r\n\r\nreceived f... | English |
| 3223 | password reset request for erp prtgghj4k & SID_67 | unable to login to hr_tool erp systems. | pbhmwqtz wqlbudjx | GRP_0 | password reset request for erp prtgghj4k & SID... | English |
| 3224 | archivierung von e-mails | \n\nreceived from: anivdcor.rbmfhiox@gmail.com... | anivdcor rbmfhiox | GRP_0 | archivierung von e-mails \n\nreceived from: an... | German |
| 3225 | windows password reset | windows password reset | tfbpzgcr ztqkbuic | GRP_0 | windows password reset windows password reset | English |
| 3226 | crm online issue | \nsummary:urgent help required crm issue crm r... | wbtrvdsi gdbuvszx | GRP_0 | crm online issue \nsummary:urgent help requir... | English |
| 3227 | msd crm | when i turn on crm, it comes on as my name as ... | qmpobijv wamtbupd | GRP_0 | msd crm when i turn on crm, it comes on as my ... | English |
| 3228 | ms excel analysis addin: disabled | ms excel analysis addin: disabled | rhwsmefo tvphyura | GRP_0 | ms excel analysis addin: disabled ms excel ana... | English |
| 3229 | can not populate the tranpertation zone in crm... | see attachments. other csr were having the sa... | pfzljgwa wqdficxk | GRP_15 | can not populate the tranpertation zone in crm... | English |
| 3230 | blocked from expense report | \r\n\r\nreceived from: proygkjt.mwetuhqf@gmail... | proygkjt mwetuhqf | GRP_0 | blocked from expense report \r\n\r\nreceived f... | English |
| 3231 | job Job_585 failed in job_scheduler at: 09/26/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_585 failed in job_scheduler at: 09/26/... | English |
| 3232 | allow to edit contact info and upate back to erp. | allow to edit contact info and update back to ... | dhkovprf pltndoab | GRP_20 | allow to edit contact info and upate back to e... | English |
| 3233 | outlook cannot connect to the server | outlook cannot connect to the server | gfjqrsxz bcyhezsl | GRP_3 | outlook cannot connect to the server outlook c... | English |
| 3234 | engineering_tool uploading issue | global it service request (help@company.com)\r... | zidcxslw clyfdaki | GRP_25 | engineering_tool uploading issue global it ser... | English |
| 3235 | no audio in dell 7350 2 in 1 tablet | no audio in dell 7350 2 in 1 tablet | badgknqs xwelumfz | GRP_0 | no audio in dell 7350 2 in 1 tablet no audio i... | English |
| 3236 | uacyltoe hxgaycze message | hallo liebe kollegen,\r\n\r\nwarum habe ich di... | fmhlugqk dpraethi | GRP_0 | uacyltoe hxgaycze message hallo liebe kollegen... | German |
| 3237 | erp accout had been locked | \r\n\r\nreceived from: qyidkvap.cxnfdjpk@gmail... | qyidkvap cxnfdjpk | GRP_0 | erp accout had been locked \r\n\r\nreceived fr... | English |
| 3238 | reset the password for qekdgaim wagshrzl on er... | SID_34 erp production system - please reset my... | qekdgaim wagshrzl | GRP_0 | reset the password for qekdgaim wagshrzl on er... | English |
| 3239 | need to configure printers | need to configure printers | olckhmvx pcqobjnd | GRP_0 | need to configure printers need to configure p... | English |
| 3240 | reset the password for łukasz kutnik on other... | hey team,\r\n\r\ncan you please reset my passw... | wgqkKupL esgahtqn | GRP_7 | reset the password for łukasz kutnik on other... | English |
| 3241 | open connection for erp - oss #321013 | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | mxawhbun siyqthel | GRP_2 | open connection for erp - oss #321013 system (... | English |
| 3242 | help | \r\n\r\nreceived from: lanigpkq.qzhakunx@gmail... | lanigpkq qzhakunx | GRP_33 | help \r\n\r\nreceived from: lanigpkq.qzhakunx@... | English |
| 3243 | collaboration_platform | \r\n\r\nreceived from: xaertwdh.kcsagvpy@gmail... | epAYsqnX RAkuDnXG | GRP_16 | collaboration_platform \r\n\r\nreceived from: ... | English |
| 3244 | urgent: usb ports not working again. | usb ports not working again after replacement.... | gpdywmbt pmxfiqkl | GRP_3 | urgent: usb ports not working again. usb ports... | English |
| 3245 | locked out again of erp prtgghj4k and SID_67 | locked out again of erp prtgghj4k and SID_67\n... | qpkbiwzl urypnjvq | GRP_2 | locked out again of erp prtgghj4k and SID_67 l... | English |
| 3246 | jartnine m called to give a status update | jartnine m called to give a status update | olckhmvx pcqobjnd | GRP_0 | jartnine m called to give a status update jart... | English |
| 3247 | getting error while accessing it support revie... | pl refer attachment | ginjmaxk zumkvfeb | GRP_19 | getting error while accessing it support revie... | English |
| 3248 | receiving error with open order book nightly r... | receiving error with open order book nightly r... | omufjcxr ahypftjx | GRP_13 | receiving error with open order book nightly r... | English |
| 3249 | SID_1 access | \n\nreceived from: amrthruta.kadgdyam@company.... | pwvmkeza mzwqgejy | GRP_2 | SID_1 access \n\nreceived from: amrthruta.kadg... | English |
| 3250 | network printer – wy85 issue – no print out | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_0 | network printer – wy85 issue – no print ou... | English |
| 3251 | error message during document release | \n\nreceived from: phqwmniy.kjucgqom@gmail.com... | phqwmniy kjucgqom | GRP_0 | error message during document release \n\nrece... | English |
| 3252 | purchasing menue in shopping cart not working ... | see attached screenshot | rhinvtua aquyjfbs | GRP_29 | purchasing menue in shopping cart not working ... | English |
| 3253 | application engineer database | \r\n\r\nreceived from: bmudkpie.qolrvbip@gmail... | bmudkpie qolrvbip | GRP_28 | application engineer database \r\n\r\nreceived... | English |
| 3254 | wifi & lan not working in office | \r\n\r\nreceived from: okycwstu.tvrnbgfs@gmail... | okycwstu tvrnbgfs | GRP_19 | wifi & lan not working in office \r\n\r\nrece... | English |
| 3255 | peer certificate rejected by chainverifier err... | installation of 'godaddy certificate bundles -... | hoyevanb ruwvniet | GRP_14 | peer certificate rejected by chainverifier err... | English |
| 3256 | forgot password. | forgot password. | kpudhygb vnizrdeb | GRP_0 | forgot password. forgot password. | English |
| 3257 | private address fields are enabled on employee... | disable private address fields, new & edit but... | tavsikpl dcrkwuny | GRP_15 | private address fields are enabled on employee... | English |
| 3258 | cancel duplicate miro entry po#5019256094 (5321) | \r\n\r\nreceived from: neokfwiy.ufriscym@gmail... | neokfwiy ufriscym | GRP_10 | cancel duplicate miro entry po#5019256094 (532... | English |
| 3259 | reinstall company barcode für ewew8323753 \zl... | reinstall company barcode für ewew8323753 \zl... | zlqfptjx xnklbfua | GRP_24 | reinstall company barcode für ewew8323753 \zl... | Catalan |
| 3260 | kein email eingang von der adresse p.eggert@ka... | es kann von dieser adresse nichts empfangen od... | egklxsoy hivwzjcf | GRP_0 | kein email eingang von der adresse p.eggert@ka... | German |
| 3261 | wrong data in crm (wrong data signed to contac... | we have opened complaint 7611184115: contact p... | ylitqvaj ljxdfhus | GRP_15 | wrong data in crm (wrong data signed to contac... | English |
| 3262 | erp SID_34 password reset request. | erp SID_34 password reset request. | dbhwzfxy amhowrfk | GRP_0 | erp SID_34 password reset request. erp SID_34 ... | English |
| 3263 | reference to ticket_no1553927 / chg0034452 | \r\n\r\nreceived from: ytwmgpbk.cpawsihk@gmail... | ytwmgpbk cpawsihk | GRP_2 | reference to ticket_no1553927 / chg0034452 \r... | English |
| 3264 | job Job_3181 failed in job_scheduler at: 09/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3181 failed in job_scheduler at: 09/26... | English |
| 3265 | query : change the screen saver. | query : change the screen saver.\r\n | ylqvitsk bfnackrw | GRP_0 | query : change the screen saver. query : chang... | English |
| 3266 | work center to be updated in pm order confirma... | hi \r\n\r\npm work center to be updated to pm ... | ctngxwqa arbzlpmh | GRP_20 | work center to be updated in pm order confirma... | English |
| 3267 | vpn on pc edmlx000001 can't work (urgent) | efyumrls gqjcbufx (finance and administration ... | ziwkespl dyehbrst | GRP_0 | vpn on pc edmlx000001 can't work (urgent) efyu... | English |
| 3268 | skype meeting option is not showing up in cale... | skype meeting option is not showing up in cale... | cqwtksbu tgxockrn | GRP_0 | skype meeting option is not showing up in cale... | English |
| 3269 | outlook issue | \r\n\r\nreceived from: nxlzpgfr.rlqowmyt@gmail... | nxlzpgfr rlqowmyt | GRP_0 | outlook issue \r\n\r\nreceived from: nxlzpgfr.... | English |
| 3270 | erp SID_34 account | \r\n\r\nreceived from: zuxcfonv.nyhpkrbe@gmail... | zuxcfonv nyhpkrbe | GRP_0 | erp SID_34 account \r\n\r\nreceived from: zux... | English |
| 3271 | launch adobe acrobat | \nname:melerowicz\nlanguage:\nbrowser:microsof... | ubiqcrvy mxjcnqfs | GRP_0 | launch adobe acrobat \nname:melerowicz\nlangu... | English |
| 3272 | network outage poncacity-schlumhdyhter-dmvpn-r... | what type of outage: __x___network _____c... | bozdftwx smylqejw | GRP_8 | network outage poncacity-schlumhdyhter-dmvpn-r... | English |
| 3273 | account unlock - erp SID_34 | unlocked account using password_management_too... | wgpimkle kijhcwur | GRP_0 | account unlock - erp SID_34 unlocked account u... | English |
| 3274 | password | \r\n\r\nreceived from: woxrljif.qymrszdk@gmail... | woxrljif qymrszdk | GRP_0 | password \r\n\r\nreceived from: woxrljif.qymr... | English |
| 3275 | problems with approval in universal work list | \n\nreceived from: dkinobsv.wymgzcrh@gmail.com... | dkinobsv wymgzcrh | GRP_2 | problems with approval in universal work list ... | English |
| 3276 | lean tracker not working | lean tracker not working | yhroaeqj djtyroha | GRP_0 | lean tracker not working lean tracker not working | English |
| 3277 | unable to process in ecs | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_13 | unable to process in ecs \n\nreceived from: r... | English |
| 3278 | dir 71913895 nxd 000 00 ac locked by user | dir 71913895 nxd 000 00 ac can't be opened... | phedsjct lyphanue | GRP_14 | dir 71913895 nxd 000 00 ac locked by user ... | English |
| 3279 | support für rechner messvorrichtung \jionmp... | support für rechner messvorrichtung \jionmp... | jionmpsf wnkpzcmv | GRP_24 | support für rechner messvorrichtung \jionmp... | Luxembourgish |
| 3280 | the purchasing doesn't work | there is no option in purchasing , check statu... | zuxcfonv nyhpkrbe | GRP_29 | the purchasing doesn't work there is no optio... | English |
| 3281 | rechner we_wu160 funktioniert nicht . | rechner we_wu160 funktioniert nicht . | jionmpsf wnkpzcmv | GRP_24 | rechner we_wu160 funktioniert nicht . rechner ... | German |
| 3282 | rechner für viotto funktioniert nicht | rechner für viotto funktioniert nicht | jionmpsf wnkpzcmv | GRP_24 | rechner für viotto funktioniert nicht rechner... | German |
| 3283 | job Job_2645 failed in job_scheduler at: 09/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 09/26... | English |
| 3284 | node ldiw8511217sf located at usa village is d... | node ldiw8511217sf located at usa village is d... | spxqmiry zpwgoqju | GRP_8 | node ldiw8511217sf located at usa village is d... | English |
| 3285 | hana report | \n\nreceived from: bujiesrg.zopcrshl@gmail.com... | bujiesrg zopcrshl | GRP_9 | hana report \n\nreceived from: bujiesrg.zopcrs... | English |
| 3286 | truview application is down | truview application is down. we are not gettin... | wczegmok bgqoclvs | GRP_4 | truview application is down truview applicatio... | English |
| 3287 | looks like the tzornbldf network account is lo... | the tzornbldf account is used to in 90% of the... | hldifrbv gadyktfz | GRP_14 | looks like the tzornbldf network account is lo... | English |
| 3288 | locked me out of erp | \ni tried to change my password by password_ma... | adxuzbcv uojxrivy | GRP_0 | locked me out of erp \ni tried to change my p... | English |
| 3289 | issue to create skype meeting request on outlook | when i try to create skype meeting on outlook,... | fhcmnxat geazkjcs | GRP_0 | issue to create skype meeting request on outlo... | English |
| 3290 | job Job_1338 failed in job_scheduler at: 09/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 09/26... | English |
| 3291 | job Job_1332 failed in job_scheduler at: 09/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1332 failed in job_scheduler at: 09/26... | English |
| 3292 | tickets for jost berfkting classified as "usa"... | \r\n\r\nreceived from: mynfoicj.riuvxdas@gmail... | mynfoicj riuvxdas | GRP_36 | tickets for jost berfkting classified as "usa"... | English |
| 3293 | the unit prices of order #35990512 , item ! ~ ... | we need to revise the pirces for order#3599051... | tfazwrdv upwonzvd | GRP_13 | the unit prices of order #35990512 , item ! ~ ... | English |
| 3294 | unable to login to erp SID_34 account | unable to login to erp SID_34 account | rdpctwam jpweibfl | GRP_0 | unable to login to erp SID_34 account unable t... | English |
| 3295 | delivery note creation request | \r\n\r\nreceived from: fbvpcytz.nokypgvx@gmail... | fbvpcytz nokypgvx | GRP_6 | delivery note creation request \r\n\r\nreceive... | English |
| 3296 | purchasing issue-pr can't release | document number 21745726\r\nrelevant document ... | zupifghd vdqxepun | GRP_29 | purchasing issue-pr can't release document num... | English |
| 3297 | outlook - keine rückmeldung | outlook\r\ni'm not able to log-on to outlook t... | atlwdyej vtlhzbix | GRP_0 | outlook - keine rückmeldung outlook\r\ni'm ... | English |
| 3298 | excel is blank when open excel file | excel is blank when open excel file | pwksivmq dbxajims | GRP_31 | excel is blank when open excel file excel is ... | English |
| 3299 | erp SID_34 account locked | erp SID_34 account locked | tvirflky febluink | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 3300 | outlookæ— æ³•ç™»é™† ,一直显示æ£åœ¨å¯åŠ¨ã€‚ | outlookæ— æ³•ç™»é™† ,一直显示æ£åœ¨å¯åŠ¨ã€‚ | eyoqnkjl gakhdebf | GRP_30 | outlookæ— æ³•ç™»é™† ,一直显示æ£åœ¨å¯åЍã... | English |
| 3301 | no accounting documents for #0159146993 & #904... | there are no accounting documents for billings... | tfazwrdv upwonzvd | GRP_10 | no accounting documents for #0159146993 & #904... | English |
| 3302 | excel is blank when open the excel file | excel is blank when open the excel file | pwksivmq dbxajims | GRP_0 | excel is blank when open the excel file excel... | English |
| 3303 | 百度æœç´¢åŽ-新网页打ä¸å¼€ | \n\nreceived from: ktghvuwr.uwtakcmj@gmail.com... | ktghvuwr uwtakcmj | GRP_31 | 百度æœç´¢åŽ-新网页打ä¸å¼€ \n\nreceive... | English |
| 3304 | user uthagtpgc - outlook issue | \n\nreceived from: rgtarthi.erjgypa@company.co... | xqoljzbh aydcwkxt | GRP_0 | user uthagtpgc - outlook issue \n\nreceived fr... | English |
| 3305 | anzeigen der bestellübersicht im erp netweave... | im erp netweaver portal ist es nicht mehr mög... | dnjxilqu povreyhq | GRP_0 | anzeigen der bestellübersicht im erp netweave... | German |
| 3306 | erp t-code error | \r\n\r\nreceived from: ohdrnswl.rezuibdt@gmail... | ohdrnswl rezuibdt | GRP_2 | erp t-code error \r\n\r\nreceived from: ohdrns... | English |
| 3307 | erp系统登录åŽï¼Œé‡‡è´é¡µé¢æ— 法显示"... | erp系统登录åŽï¼Œé‡‡è´é¡µé¢æ— 法显示"... | lszhkxoy blemoyjd | GRP_30 | erp系统登录åŽï¼Œé‡‡è´é¡µé¢æ— 法显示"... | English |
| 3308 | error message during route card release | \n\nreceived from: phqwmniy.kjucgqom@gmail.com... | phqwmniy kjucgqom | GRP_45 | error message during route card release \n\nre... | English |
| 3309 | network outage | network outage\nunable to connect both lan and... | dwafrmth oabwzitv | GRP_4 | network outage network outage\nunable to conne... | English |
| 3310 | job Job_2110 failed in job_scheduler at: 09/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_2110 failed in job_scheduler at: 09/26... | English |
| 3311 | erp printing issue | from: sridthshar herytur \nsent: monday, septe... | antigvjx zekluqim | GRP_14 | erp printing issue from: sridthshar herytur \n... | English |
| 3312 | network outage: usa vpn router is down since 0... | what type of outage: ___x__network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage: usa vpn router is down since 0... | English |
| 3313 | attendance_tool password not working | \r\n\r\nreceived from: rsvminjz.tcpqvbae@gmail... | rsvminjz tcpqvbae | GRP_0 | attendance_tool password not working \r\n\r\nr... | English |
| 3314 | regarding cell phone model. | from: gdhyrts muggftyali \nsent: monday, sept... | kbclinop vsczklfp | GRP_0 | regarding cell phone model. from: gdhyrts mug... | English |
| 3315 | 电脑系统å¯åЍè“å±ã€‚ | 电脑系统å¯åЍè“å±ã€‚æ°´ä¸å°å¿ƒæ´’到ç... | hdungfsc znuhyjkx | GRP_31 | 电脑系统å¯åЍè“å±ã€‚ 电脑系统å¯åЍ... | English |
| 3316 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 3317 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 3318 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 3319 | need to know who the processor is. | from: kbyivdfz zwutmehy [mailto:kbyivdfz.zwutm... | kbyivdfz zwutmehy | GRP_29 | need to know who the processor is. from: kbyiv... | English |
| 3320 | reset pw | \n\nreceived from: yhmzxcia.heszapvl@gmail.com... | yhmzxcia heszapvl | GRP_0 | reset pw \n\nreceived from: yhmzxcia.heszapvl... | English |
| 3321 | wireless outage again-taiwan 0926 | \r\n\r\nreceived from: ticqvhal.vgokzesi@gmail... | ticqvhal vgokzesi | GRP_4 | wireless outage again-taiwan 0926 \r\n\r\nrece... | English |
| 3322 | job Job_3186 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3186 failed in job_scheduler at: 09/25... | English |
| 3323 | job Job_2114 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_2114 failed in job_scheduler at: 09/25... | English |
| 3324 | erp account lock | erp account lock | lfcwmxap ehodblur | GRP_0 | erp account lock erp account lock | English |
| 3325 | it help | \n\nreceived from: notwkdgr.zvmesjpt@gmail.com... | notwkdgr zvmesjpt | GRP_26 | it help \n\nreceived from: notwkdgr.zvmesjpt@g... | English |
| 3326 | eagsm657 : the service (security_tool passwor... | eagsm657 : the service (security_tool passwor... | rkupnshb gsmzfojw | GRP_2 | eagsm657 : the service (security_tool passwor... | English |
| 3327 | account locked , unable to login to ess portal | account locked , unable to login to ess portal | mrduhsci xmvkzqja | GRP_0 | account locked , unable to login to ess portal... | English |
| 3328 | job Job_1429 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1429 failed in job_scheduler at: 09/25... | English |
| 3329 | lv23 not printing | lv23 not printing | mrduhsci xmvkzqja | GRP_0 | lv23 not printing lv23 not printing | English |
| 3330 | job Job_1420 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1420 failed in job_scheduler at: 09/25... | English |
| 3331 | ms crm configuration in outlook | ms crm configuration in outlook | bjeacoiy ufaqhlog | GRP_0 | ms crm configuration in outlook ms crm configu... | English |
| 3332 | sound coming from computer while connecting an... | sound coming from computer while connecting an... | kexcsbgw lzabjxwf | GRP_19 | sound coming from computer while connecting an... | English |
| 3333 | job snp_heu_6_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_6_regen failed in job_scheduler at... | English |
| 3334 | sound issue : 7350 | summary:issue with the sound of the laptop .th... | kexcsbgw lzabjxwf | GRP_0 | sound issue : 7350 summary:issue with the soun... | English |
| 3335 | job Job_1343 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1343 failed in job_scheduler at: 09/25... | English |
| 3336 | markhtyingre email as junk | hello all\r\nhow are you doing?\r\n\r\nplease ... | hupnceij hyozjakb | GRP_0 | markhtyingre email as junk hello all\r\nhow ar... | English |
| 3337 | job co_val_update_crosscomp failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job co_val_update_crosscomp failed in job_sche... | English |
| 3338 | job Job_1148 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 09/25... | English |
| 3339 | job Job_3049 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 09/25... | English |
| 3340 | job Job_3049 failed in job_scheduler at: 09/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_45 | job Job_3049 failed in job_scheduler at: 09/25... | English |
| 3341 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | English |
| 3342 | job Job_1141 failed in job_scheduler at: 09/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1141 failed in job_scheduler at: 09/24... | English |
| 3343 | application "plm scheduled tasks monitor" in... | alwaysupservice.exe for plm conversion server ... | jyoqwxhz clhxsoqy | GRP_8 | application "plm scheduled tasks monitor" in... | English |
| 3344 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | dcaokyph vrdnocxs | GRP_0 | request to reset microsoft online services pas... | English |
| 3345 | inquiry on erp status- unable to access ess po... | inquiry on erp status- unable to access ess po... | aqdjcuhn lagfitkz | GRP_0 | inquiry on erp status- unable to access ess po... | English |
| 3346 | job Job_444 failed in job_scheduler at: 09/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_444 failed in job_scheduler at: 09/24/... | English |
| 3347 | job bkbackup_tool_powder_prod_full failed in j... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_powder_prod_full failed in j... | English |
| 3348 | job SID_56hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_56hoti failed in job_scheduler at: 09/... | English |
| 3349 | job SID_38hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_38hoti failed in job_scheduler at: 09/... | English |
| 3350 | vip 2--workflow notifications in universal wo... | vip 2 - ticket\n\nreceived from: dxyvfuhr.uyfq... | dxyvfuhr uyfqgomx | GRP_2 | vip 2--workflow notifications in universal wo... | English |
| 3351 | job Job_3194 failed in job_scheduler at: 09/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 09/24... | English |
| 3352 | ms crmdynamics deployment query | ms crm dynamics deployment query. | tmopbken ibzougsd | GRP_0 | ms crmdynamics deployment query ms crm dynami... | English |
| 3353 | uacyltoe hxgaycze message email. | from: efbwiadp dicafxhv \nsent: saturday, sept... | cfzsajbe lyejkdho | GRP_0 | uacyltoe hxgaycze message email. from: efbwiad... | English |
| 3354 | yahoo, emails skype team viewer not loading ; ... | yahoo, emails skype team viewer not loading ; ... | deaokmqp oruitnmx | GRP_0 | yahoo, emails skype team viewer not loading ; ... | English |
| 3355 | job Job_1429 failed in job_scheduler at: 09/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1429 failed in job_scheduler at: 09/24... | English |
| 3356 | uacyltoe hxgaycze email sent from neerthyu ag... | from: neerthyu agrtywal \r\nsent: saturday, se... | okycwstu tvrnbgfs | GRP_0 | uacyltoe hxgaycze email sent from neerthyu ag... | English |
| 3357 | sound issue : 7350 issue | sound issue : 7350 issue | crjhotyk pxslorbe | GRP_0 | sound issue : 7350 issue sound issue : 7350 issue | English |
| 3358 | job Job_2040 failed in job_scheduler at: 09/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2040 failed in job_scheduler at: 09/24... | English |
| 3359 | job Job_1320 failed in job_scheduler at: 09/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1320 failed in job_scheduler at: 09/24... | English |
| 3360 | erp log on balancing error : vpn issue | erp log on balancing error : vpn issue | goaxzsql qpjnbgsa | GRP_0 | erp log on balancing error : vpn issue erp lo... | English |
| 3361 | the plant has had our n network drive deleted ... | is there anyway you can add our n network dri... | zqpyrxsn zihmunyb | GRP_12 | the plant has had our n network drive deleted ... | English |
| 3362 | job Job_1388 failed in job_scheduler at: 09/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1388 failed in job_scheduler at: 09/24... | English |
| 3363 | pls help - unable to connect vpn | \r\n\r\nreceived from: vxhyftae.tbkyfdli@gmail... | vxhyftae tbkyfdli | GRP_0 | pls help - unable to connect vpn \r\n\r\nrecei... | English |
| 3364 | job apo_cif_pSID_74_ap failed in job_scheduler... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job apo_cif_pSID_74_ap failed in job_scheduler... | English |
| 3365 | job apo_cif_pds3_am failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job apo_cif_pds3_am failed in job_scheduler at... | English |
| 3366 | job apo_cif_pds1_am failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job apo_cif_pds1_am failed in job_scheduler at... | English |
| 3367 | job apo_cif_pds3_eu failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job apo_cif_pds3_eu failed in job_scheduler at... | English |
| 3368 | job bkwin_infonet1_full failed in job_schedule... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_infonet1_full failed in job_schedule... | English |
| 3369 | job Job_1148 failed in job_scheduler at: 09/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 09/24... | English |
| 3370 | unable to access engineering_tool | unable to access engineering_tool due to vpn | uvjpaeli bnphqsxr | GRP_0 | unable to access engineering_tool unable to ac... | English |
| 3371 | job SID_56filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_56filesys failed in job_scheduler at: ... | English |
| 3372 | not able to login to vpn, | not able to login to vpn,\r\n-advised the call... | psikzmba stumdcqp | GRP_0 | not able to login to vpn, not able to login to... | English |
| 3373 | urgent help required- outlook to crm mfg_toolt... | \n\nreceived from: jhxwiply.midhcnze@gmail.com... | jhxwiply midhcnze | GRP_40 | urgent help required- outlook to crm mfg_toolt... | English |
| 3374 | vip 2: time setting on collaboration_platform | \r\n\r\nreceived from: ebikdrqw.empubwxo@gmail... | ebikdrqw empubwxo | GRP_16 | vip 2: time setting on collaboration_platform ... | English |
| 3375 | login issue | login issue\r\n-verified user details.(employe... | dbfrevtj wbrpdxnj | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 3376 | ms crm installation . | ms crm installation .\r\nconnected to the user... | jkelxorm uwqjlzfm | GRP_0 | ms crm installation . ms crm installation .\r\... | English |
| 3377 | zbxljotu cbunzrak ihre rechnung zur bestellung... | zbxljotu cbunzrak ihre rechnung zur bestellung... | zbxljotu cbunzrak | GRP_26 | zbxljotu cbunzrak ihre rechnung zur bestellung... | German |
| 3378 | outlook configuration and vpn connectivity | outlook configuration and vpn connectivity | tgewaniq yepifgbl | GRP_0 | outlook configuration and vpn connectivity out... | English |
| 3379 | engineering tool login issue. | engineering tool login issue.\r\n-connected to... | vyjmlain hvjbmdgi | GRP_0 | engineering tool login issue. engineering tool... | English |
| 3380 | urgent help required- outlook to crm mfg_toolt... | urgent help required- outlook to crm mfg_toolt... | kvqtzayg ehjrviak | GRP_0 | urgent help required- outlook to crm mfg_toolt... | English |
| 3381 | dell 7350: skype audio not working. | dell 7350: skype audio not working.\r\n-connec... | tmhflanr snbvcido | GRP_0 | dell 7350: skype audio not working. dell 7350:... | English |
| 3382 | support with | \n\nreceived from: jogtse.mhytusa@company.com\... | kwyozxgd gasxctph | GRP_25 | support with \n\nreceived from: jogtse.mhytusa... | Spanish |
| 3383 | The | \r\n-connected to the user system using teamvi... | qftpazns fxpnytmk | GRP_0 | The \r\n-connected to the user system using te... | English |
| 3384 | ie issue | ie issue | ptljghyk qhtvlrxe | GRP_0 | ie issue ie issue | English |
| 3385 | multiple switch company-na-usa-usa is down sin... | switch company-na-usa-usa-shippingarea-2960-ac... | jyoqwxhz clhxsoqy | GRP_4 | multiple switch company-na-usa-usa is down sin... | English |
| 3386 | i drive not connecting | i drive not connecting \r\n\r\ntried with ip a... | tnhzdapi juqcbdzl | GRP_0 | i drive not connecting i drive not connecting... | English |
| 3387 | support with | \n\nreceived from: whoyizfp.gclnfkis@gmail.com... | whoyizfp gclnfkis | GRP_25 | support with \n\nreceived from: whoyizfp.gcln... | English |
| 3388 | locked er | \r\n\r\nreceived from: jxgobwrm.qkugdipo@gmail... | jxgobwrm qkugdipo | GRP_0 | locked er \r\n\r\nreceived from: jxgobwrm.qkug... | English |
| 3389 | problem on trs | \r\n\r\nreceived from: bvpglyzh.dyhusejm@gmail... | bvpglyzh dyhusejm | GRP_0 | problem on trs \r\n\r\nreceived from: bvpglyzh... | English |
| 3390 | msd crm | urgent help required - outlook to crm mfg_too... | goktenap kjnwotzq | GRP_22 | msd crm urgent help required - outlook to crm... | English |
| 3391 | ticket update for ticket_no0442691 | ticket update for ticket_no0442691 | fumkcsji sarmtlhy | GRP_0 | ticket update for ticket_no0442691 ticket upda... | English |
| 3392 | skype error : getting skype certificate error | skype error : getting skype certificate error | xwzstlgj tzkbmgan | GRP_0 | skype error : getting skype certificate error ... | English |
| 3393 | logon balancing error in erp even after connec... | unable to connect to erp modules even after co... | umkpayhc adflvbxg | GRP_0 | logon balancing error in erp even after connec... | English |
| 3394 | infopath issue : | can not submit a discount through collaboratio... | kinryjcf pgetfijq | GRP_0 | infopath issue : can not submit a discount th... | English |
| 3395 | unable to connect to mobile broadband | unable to connect to mobile broadband | imoelsap gxdwkimv | GRP_0 | unable to connect to mobile broadband unable t... | English |
| 3396 | account locked | account locked | qifzkoej etbmgjvo | GRP_0 | account locked account locked | English |
| 3397 | interface: fastethernet0/6 · company-johthryu... | interface: fastethernet0/6 · company-johthryu... | jloygrwh acvztedi | GRP_4 | interface: fastethernet0/6 · company-johthryu... | English |
| 3398 | erp SID_34 account locked | erp SID_34 account locked | nlrwqeti qarixwbv | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 3399 | account locked. | account locked. | tqrylspg ijzghqwy | GRP_0 | account locked. account locked. | English |
| 3400 | account locked. | account locked. | vyjmlain hvjbmdgi | GRP_0 | account locked. account locked. | English |
| 3401 | audio issue in dell 7350 | name:ksgytjqr ojdukgzc\nlanguage:\nbrowser:mic... | ksgytjqr ojdukgzc | GRP_3 | audio issue in dell 7350 name:ksgytjqr ojdukgz... | English |
| 3402 | password reset | password reset | oalprbtd nyxftpms | GRP_0 | password reset password reset | English |
| 3403 | performance (speed) issue (mii) | order took 30 minutes to batch over from one w... | juaxnvwz reampilj | GRP_41 | performance (speed) issue (mii) order took 30 ... | English |
| 3404 | outlook error | \r\n\r\nreceived from: doxmlcpr.xjheyscu@gmail... | doxmlcpr xjheyscu | GRP_0 | outlook error \r\n\r\nreceived from: doxmlcpr.... | English |
| 3405 | need the password_management_tool link | need the password_management_tool link | vybmcrxo kirxdspz | GRP_0 | need the password_management_tool link need th... | English |
| 3406 | unable to connect to tc78 | unable to connect to tc78 | csmhykge mpxbjudw | GRP_0 | unable to connect to tc78 unable to connect to... | English |
| 3407 | usa village - clappdico: company-na-usa-clapp... | usa village - clappdico: company-na-usa-clapp... | oldrctiu bxurpsyi | GRP_8 | usa village - clappdico: company-na-usa-clapp... | English |
| 3408 | internet explorer issue | internet explorer issue | zcaeryfo tdovhslb | GRP_0 | internet explorer issue internet explorer issue | English |
| 3409 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | fcpnodsr nbrdxscg | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 3410 | reset the password for oweklxnm ubayizsq on wi... | i try to change my log-in password and the sy... | oweklxnm ubayizsq | GRP_0 | reset the password for oweklxnm ubayizsq on wi... | English |
| 3411 | erp SID_34 password reset. | erp SID_34 password reset. | zyxjagro vjgozhpn | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 3412 | please unlock : tpfghtlugn (erp hana SID_60) d... | please unlock : tpfghtlugn (erp hana SID_60) d... | tivbxojn gorlajmp | GRP_53 | please unlock : tpfghtlugn (erp hana SID_60) d... | English |
| 3413 | k100sfs.company.company.com is reporting a : ... | observing below alert in monitoring_tool since... | jloygrwh acvztedi | GRP_14 | k100sfs.company.company.com is reporting a : ... | English |
| 3414 | crm in mobile phone | \n\nreceived from: qjiutmel.fgvtxeoy@gmail.com... | qjiutmel fgvtxeoy | GRP_0 | crm in mobile phone \n\nreceived from: qjiutme... | English |
| 3415 | unable to get emails synced on samsung mobile ... | unable to get emails synced on samsung mobile ... | vrjwyqtf qoxkapfw | GRP_0 | unable to get emails synced on samsung mobile ... | English |
| 3416 | password reset ad | password reset ad | ojgxundh aegxpmvd | GRP_0 | password reset ad password reset ad | English |
| 3417 | users are unable to connect to a machine in sh... | users are unable to connect to a machine in sh... | pvlxjizg xzvlwqjc | GRP_4 | users are unable to connect to a machine in sh... | English |
| 3418 | pm_tool_for_sd: missing currency-table in pm_t... | from: jurten setgyrt \nsent: friday, september... | crebvyhm nsegpdab | GRP_20 | pm_tool_for_sd: missing currency-table in pm_t... | English |
| 3419 | office reinstall | office reinstall | ejvkzobl yijgokrn | GRP_0 | office reinstall office reinstall | English |
| 3420 | re: need a little help--please | \n\nreceived from: bcefayom.lzhwcgvb@gmail.com... | bcefayom lzhwcgvb | GRP_18 | re: need a little help--please \n\nreceived fr... | English |
| 3421 | re: need a little help--please | \n\nreceived from: smxoklny.hbecskgl@gmail.com... | khvzugxm yqfrcjwl | GRP_18 | re: need a little help--please \n\nreceived fr... | English |
| 3422 | please include purchase group in pr to po anal... | please include field to enter aqzz/erpquery/me... | jycshmvf uewramti | GRP_20 | please include purchase group in pr to po anal... | English |
| 3423 | xerox in our office will not turn on, no power... | xerox in our office will not turn on, no power... | xzcwlqrv fjrdhiqt | GRP_3 | xerox in our office will not turn on, no power... | English |
| 3424 | rechner ewewx212455 ( olympus ) kein zugriff a... | rechner ewewx212455 ( olympus ) kein zugriff a... | ughzilfm cfibdamq | GRP_24 | rechner ewewx212455 ( olympus ) kein zugriff a... | German |
| 3425 | printer not working | \n\nreceived from: ugyawsjv.ypgjirlm@gmail.com... | ugyawsjv ypgjirlm | GRP_19 | printer not working \n\nreceived from: ugyawsj... | English |
| 3426 | ms outlook doens't start | \r\n\r\nreceived from: tzradpnj.izlotycb@gmail... | tzradpnj izlotycb | GRP_0 | ms outlook doens't start \r\n\r\nreceived from... | English |
| 3427 | job Job_488 failed in job_scheduler at: 09/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_488 failed in job_scheduler at: 09/23/... | English |
| 3428 | co account assignments have different profit c... | from: rzucjgvp ioqjgmah \nsent: friday, septem... | eyxngjol lohcygnf | GRP_44 | co account assignments have different profit c... | English |
| 3429 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | ipwjorsc uboapexr | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 3430 | install EU_tool und bls \ rechner olympus \xw... | install EU_tool und bls \ rechner olympus \xw... | xwirzvda okhyipgr | GRP_24 | install EU_tool und bls \ rechner olympus \xw... | German |
| 3431 | schreib- und leseberechtigung auf den ordner ... | hallo ,\r\n\r\nbitte schreib- und leseberechti... | htvepyua izgulrcf | GRP_24 | schreib- und leseberechtigung auf den ordner ... | German |
| 3432 | dds | dss | onctqhsg cpahzsle | GRP_0 | dds dss | English |
| 3433 | info type '0017' missing to personal number 56... | from: fbgetczn jlsvxura \r\nsent: friday, sept... | fbgetczn jlsvxura | GRP_10 | info type '0017' missing to personal number 56... | English |
| 3434 | request access to SID_1 uacyltoe hxgaycze | \n\nreceived from: gkerqucv.bqumyrea@gmail.com... | gkerqucv bqumyrea | GRP_0 | request access to SID_1 uacyltoe hxgaycze \n\n... | English |
| 3435 | setup new ws \ewew8323879 \jionmpsf wnkpzcmv | setup new ws \ewew8323879 \jionmpsf wnkpzcmv | jionmpsf wnkpzcmv | GRP_24 | setup new ws \ewew8323879 \jionmpsf wnkpzcmv s... | un |
| 3436 | drucker von cvd we17 einrichten am pc 212536 ... | drucker von cvd we17 einrichten am pc 212536 ... | hnyeajrw ctxjsolz | GRP_24 | drucker von cvd we17 einrichten am pc 212536 ... | German |
| 3437 | outlook issue | \r\n\r\nreceived from: rgtarthi.erjgypa@compan... | xqoljzbh aydcwkxt | GRP_26 | outlook issue \r\n\r\nreceived from: rgtarthi.... | English |
| 3438 | probleme mit collaboration_platform / infopath... | probleme mit collaboration_platform / infopath... | difozlav dgbfptos | GRP_24 | probleme mit collaboration_platform / infopath... | English |
| 3439 | erp pur - wrong subcontracting demand 2nd mate... | hello,\r\nwith component 2433384 we see a wron... | tckyrinp vbzqslco | GRP_29 | erp pur - wrong subcontracting demand 2nd mate... | English |
| 3440 | HostName_1379: volume: h:\is over 85% space co... | volume: h:\ label:dat4-HostName_1379-data e3fc... | bozdftwx smylqejw | GRP_39 | HostName_1379: volume: h:\is over 85% space co... | English |
| 3441 | owa does not open. | owa does not open. \r\nerror : page can not be... | wczrtsja crwioekx | GRP_0 | owa does not open. owa does not open. \r\nerro... | English |
| 3442 | HostName_1379 : volume: c:\ is over 85% space ... | volume: c:\ label:sys-HostName_1379 28385a7b o... | bozdftwx smylqejw | GRP_39 | HostName_1379 : volume: c:\ is over 85% space ... | English |
| 3443 | user tempuser changed the layout in fb03 to be... | erp SID_34, finance:\r\nuser tempuser changed ... | ipwjorsc uboapexr | GRP_10 | user tempuser changed the layout in fb03 to be... | English |
| 3444 | keine netzwerkverbindung für rechner vhw7020 | bitte netzwerkverbindung für rechner vhw7020 ... | wogicpdt jbdyzmhf | GRP_33 | keine netzwerkverbindung für rechner vhw7020 ... | German |
| 3445 | appreciate hub password | \r\n\r\nreceived from: xwertljy.zrmlhkyq@gmail... | xwertljy zrmlhkyq | GRP_0 | appreciate hub password \r\n\r\nreceived from:... | English |
| 3446 | account "helftgyldt" gesperrt | anmeldung bei account "helftgyldt" nicht mögl... | kbcedtiq jxnzpgwe | GRP_0 | account "helftgyldt" gesperrt anmeldung bei ac... | German |
| 3447 | reset passwords for qoybxkfh dwcmxuea using pa... | the | qoybxkfh dwcmxuea | GRP_17 | reset passwords for qoybxkfh dwcmxuea using pa... | English |
| 3448 | outlook takes too much time to open. | outlook takes too much time to open. | rxgvfoub fhqmvwrd | GRP_0 | outlook takes too much time to open. outlook t... | English |
| 3449 | unable to change password through password_man... | unable to change password through password_man... | ypuaejsc yoxrqtsn | GRP_0 | unable to change password through password_man... | English |
| 3450 | account "jncvkrzm thjquiyl" gesperrt | anmeldung bei account "jncvkrzm thjquiyl" nich... | kbcedtiq jxnzpgwe | GRP_0 | account "jncvkrzm thjquiyl" gesperrt anmeldung... | German |
| 3451 | access for printer wy15 for trainee | \n\nreceived from: jczwxvdn.pexuklry@gmail.com... | jczwxvdn pexuklry | GRP_19 | access for printer wy15 for trainee \n\nreceiv... | English |
| 3452 | error when pgi for with t&d delivery 9169324512 | gso,\r\nplease open an it ticket for the erp c... | aeiljfxg hzwxtyjr | GRP_44 | error when pgi for with t&d delivery 916932451... | English |
| 3453 | account lock release request of "nakagtwsgs" | hi team,\n\nplease unlock the windows account ... | gworzkhc inypbucg | GRP_0 | account lock release request of "nakagtwsgs" h... | English |
| 3454 | password reset -hsh | hello:\n\none of the workman aqihfoly xsrkthvf... | noscwdpm akiowsmp | GRP_0 | password reset -hsh hello:\n\none of the workm... | English |
| 3455 | picture in collaboration_platform / outlook / ... | my profile shows different pictures on collabo... | gwrkhufx gsfrlqwi | GRP_16 | picture in collaboration_platform / outlook / ... | English |
| 3456 | job Job_485 failed in job_scheduler at: 09/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_485 failed in job_scheduler at: 09/23/... | English |
| 3457 | password reset | \n\nreceived from: bctypmjw.cbhnxafz@gmail.com... | bctypmjw cbhnxafz | GRP_0 | password reset \n\nreceived from: bctypmjw.cbh... | English |
| 3458 | can i be allowed to use dropbox ? | marcom team has assigned a task of proofreadin... | obfgkwim hlasbrmj | GRP_0 | can i be allowed to use dropbox ? marcom team ... | English |
| 3459 | erp account gesperrt | erp-passwort 3mal verkehrt eingegeben - bitte ... | tqrylspg ijzghqwy | GRP_0 | erp account gesperrt erp-passwort 3mal verkehr... | German |
| 3460 | add the rtpcnyhq ceqmwkhi to materials_manage... | \n\nreceived from: inxsupmy.zhwmifvx@gmail.com... | inxsupmy zhwmifvx | GRP_0 | add the rtpcnyhq ceqmwkhi to materials_manage... | English |
| 3461 | job bwhrertran failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrertran failed in job_scheduler at: 09/... | English |
| 3462 | india coating: interface: vlan1 on company-ap... | india coating: interface: vlan1 on company-ap... | mnlazfsr mtqrkhnx | GRP_8 | india coating: interface: vlan1 on company-ap... | English |
| 3463 | engineering tool log in problem | \r\n\r\nreceived from: dwsyaqpr.bzasnmvw@gmail... | pchjidaq pvtxjaml | GRP_0 | engineering tool log in problem \r\n\r\nreceiv... | English |
| 3464 | engineering_tool problem | hello\r\ni can not add a new customer while ma... | cuytdmhv yeqdmwvt | GRP_25 | engineering_tool problem hello\r\ni can not ad... | English |
| 3465 | apac, apac: temprature sensor#1, yellow - on ... | sw#1, temperature sensor#1, yellow - on comp... | mnlazfsr mtqrkhnx | GRP_4 | apac, apac: temprature sensor#1, yellow - on ... | English |
| 3466 | vip 2 - outlook not working - receiving a mess... | outlook not working - receiving a message that... | qdilorms feayhdmu | GRP_19 | vip 2 - outlook not working - receiving a mess... | English |
| 3467 | urgent - new customer account | \r\n\r\nreceived from: aunpdmlj.kzhapcve@gmail... | aunpdmlj kzhapcve | GRP_15 | urgent - new customer account \r\n\r\nreceived... | English |
| 3468 | sign in password | \r\n\r\nreceived from: fpedscxo.acuvyqnx@gmail... | fpedscxo acuvyqnx | GRP_0 | sign in password \r\n\r\nreceived from: fpedsc... | English |
| 3469 | boot up issue with the laptop. | boot up issue with the laptop.\n-user requesti... | koiapqbg teyldpkw | GRP_3 | boot up issue with the laptop. boot up issue w... | English |
| 3470 | :my computer keeps going off line | name:sndaofyw jetcxpda\nlanguage:\nbrowser:mic... | sndaofyw jetcxpda | GRP_0 | :my computer keeps going off line name:sndaofy... | English |
| 3471 | job Job_555 failed in job_scheduler at: 09/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_555 failed in job_scheduler at: 09/22/... | English |
| 3472 | job SID_46filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_46filesys failed in job_scheduler at: ... | English |
| 3473 | user not recieving email on the iphone. | user not recieving email on the iphone.\r\n-ch... | bfmlysrk olbthfqr | GRP_0 | user not recieving email on the iphone. user n... | English |
| 3474 | vip 2: skype login issue. | name:rgtyob lafgseimer\nlanguage:\nbrowser:mic... | pjkmtfeg wnrcyaks | GRP_0 | vip 2: skype login issue. name:rgtyob lafgseim... | English |
| 3475 | job SID_47filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_47filesys failed in job_scheduler at: ... | English |
| 3476 | software installation | name:uprmwlgb kirvecja\nlanguage:\nbrowser:mic... | uprmwlgb kirvecja | GRP_0 | software installation name:uprmwlgb kirvecja\n... | English |
| 3477 | unable to print erp jobs from prtqv7282 after ... | unable to print erp jobs from prtqv7282 after ... | xpoqcrtb zwrypjqv | GRP_45 | unable to print erp jobs from prtqv7282 after ... | English |
| 3478 | change printer from prtqv0001 to prtqv7282 | change printer from prtqv0001 to prtqv7282 | xpoqcrtb zwrypjqv | GRP_0 | change printer from prtqv0001 to prtqv7282 cha... | English |
| 3479 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | vmdwslkj exvcknbp | GRP_0 | request to reset microsoft online services pas... | English |
| 3480 | bill hartwell can't access drawings on \\HostN... | please assign bill the necessary permissions s... | zqrnveyx hajtfmcd | GRP_12 | bill hartwell can't access drawings on \\HostN... | English |
| 3481 | quoting engine | \n\nreceived from: iauqlrjk.nijdaukz@gmail.com... | iauqlrjk nijdaukz | GRP_14 | quoting engine \n\nreceived from: iauqlrjk.nij... | English |
| 3482 | product selector not working | please investigate the issue with the product ... | lenxvcbq vwnhjtoi | GRP_51 | product selector not working please investigat... | English |
| 3483 | no display on the external monitor connected t... | no display on the external monitor connected t... | fumkcsji sarmtlhy | GRP_19 | no display on the external monitor connected t... | English |
| 3484 | ticket update on ticket_no0442920 | ticket update on ticket_no0442920 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0442920 ticket updat... | English |
| 3485 | unable to print from printer // install driver | unable to print from printer // install driver | idlupnzr nkxylwrc | GRP_0 | unable to print from printer // install driver... | English |
| 3486 | mscrm: outlook not opening. | mscrm: outlook not opening.\r\n-connected to t... | gbwviklo ukwijqtm | GRP_0 | mscrm: outlook not opening. mscrm: outlook not... | English |
| 3487 | outlook on my pc won't open. | stays on the open screen and won't complete. ... | hybiaxlk lawptzir | GRP_0 | outlook on my pc won't open. stays on the op... | English |
| 3488 | unable to access windows account | unable to access windows account | quxtnlgd tqnjyzsm | GRP_0 | unable to access windows account unable to acc... | English |
| 3489 | auf den totmannhandys ist eine störung. | auf den totmannhandys ist eine störung.\r\n" ... | tfrbwoua aegpkruc | GRP_42 | auf den totmannhandys ist eine störung. auf d... | German |
| 3490 | urgent help required- crm mobile app | loading crm mobile app times out and returns t... | jvshydix rzpmnylt | GRP_0 | urgent help required- crm mobile app loading ... | English |
| 3491 | user haveing issues with the skype audio. | user haveing issues with the skype audio.\r\n-... | ibsywxpc icxhsbfv | GRP_0 | user haveing issues with the skype audio. user... | English |
| 3492 | job Job_3194 failed in job_scheduler at: 09/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 09/22... | English |
| 3493 | collaboration_platform permission help | i made a mistake and change the permissions do... | zhvrtnom waedkqzj | GRP_16 | collaboration_platform permission help i made ... | English |
| 3494 | user wanted help to check if a email was spam. | user wanted help to check if a email was spam.... | ibsywxpc icxhsbfv | GRP_0 | user wanted help to check if a email was spam.... | English |
| 3495 | skype problem! | \r\n\r\nreceived from: ztdgvclp.gzcalstq@gmail... | ztdgvclp gzcalstq | GRP_0 | skype problem! \r\n\r\nreceived from: ztdgvclp... | English |
| 3496 | ie cleanup | ie cleanup | lwgytuxq qspdztiw | GRP_0 | ie cleanup ie cleanup | English |
| 3497 | unable to access bex analyzer | unable to access bex analyzer as nothing happe... | jfgkmauh wfrgkejq | GRP_19 | unable to access bex analyzer unable to acces... | English |
| 3498 | erp login information misplaced | password reset needed | puxyqwjn zgmnsvjx | GRP_0 | erp login information misplaced password reset... | English |
| 3499 | ticket update inplant_862994 | ticket update inplant_862994 | fumkcsji sarmtlhy | GRP_0 | ticket update inplant_862994 ticket update inp... | English |
| 3500 | outlook asking to reactivate | outlook asking to reactivate | tfrpybxj qodbpvwj | GRP_27 | outlook asking to reactivate outlook asking t... | English |
| 3501 | unable to print from the printer hp color lase... | unable to print from the printer hp color lase... | edanpfzl qyrfndkp | GRP_3 | unable to print from the printer hp color lase... | English |
| 3502 | usb port issue | usb ports not works at time | qubywmgf jouickqx | GRP_19 | usb port issue usb ports not works at time | English |
| 3503 | ie upgrade | upgraded the ie to 11 on uacyltoe hxgaycze wor... | gzhapcld fdigznbk | GRP_19 | ie upgrade upgraded the ie to 11 on uacyltoe h... | English |
| 3504 | user wants to change the erp printer prt1: prt... | user wants to change the erp printer prt1: prt... | omiwzbue auvolfhp | GRP_0 | user wants to change the erp printer prt1: prt... | English |
| 3505 | windows account locked | windows account locked | pyrtfdxu nxfkqmoy | GRP_0 | windows account locked windows account locked | English |
| 3506 | :i am trying to find an expense report to appr... | name:bonhyb knepkhsw\nlanguage:\nbrowser:micro... | xziwkgeo gdiraveu | GRP_0 | :i am trying to find an expense report to appr... | English |
| 3507 | crm app installation | crm app installation | itslpwra vybdkuoa | GRP_0 | crm app installation crm app installation | English |
| 3508 | cannot connect to \\HostName_779\engineering_a... | cannot connect to \\HostName_779\engineering_a... | ajdcnwtb bvijwxko | GRP_12 | cannot connect to \\HostName_779\engineering_a... | English |
| 3509 | unable to install crm app on galaxy s3 | user has a samsung galaxy s3 device with andro... | tuzkadxv rxloutpn | GRP_63 | unable to install crm app on galaxy s3 user h... | English |
| 3510 | ticket update on inplant_861679 | ticket update on inplant_861679 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_861679 ticket update ... | English |
| 3511 | erp vc - configair application in SID_1 uacylt... | configair server in uacyltoe hxgaycze environm... | iavozegx jpcudyfi | GRP_14 | erp vc - configair application in SID_1 uacylt... | English |
| 3512 | HostName_986: application "plm scheduled task... | HostName_986: application "plm scheduled task... | rkupnshb gsmzfojw | GRP_14 | HostName_986: application "plm scheduled task... | English |
| 3513 | password reset | password reset | qgzfklpu dqumyvlo | GRP_0 | password reset password reset | English |
| 3514 | EU_tool issue | EU_tool is having issue since we i upgraded to... | ulmctsvi lbvrdika | GRP_25 | EU_tool issue EU_tool is having issue since we... | English |
| 3515 | need to upgrade ie 11 | could you please confirm if this upgrade occur... | qfcxbpht oiykfzlr | GRP_0 | need to upgrade ie 11 could you please confirm... | English |
| 3516 | sometimes ship to address is changed from the ... | examples \r\n5616762610\r\n4505623480\r\n56167... | rhinvtua aquyjfbs | GRP_29 | sometimes ship to address is changed from the ... | English |
| 3517 | job Job_1394 failed in job_scheduler at: 09/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1394 failed in job_scheduler at: 09/22... | English |
| 3518 | engineering_tool issue high importance | \r\n\r\nreceived from: xkegcqov.drctxjqi@gmail... | xkegcqov drctxjqi | GRP_25 | engineering_tool issue high importance \r\n\r... | English |
| 3519 | ticket update on inplant_862933 | ticket update on inplant_862933 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_862933 ticket update ... | English |
| 3520 | need access to user's collaboration_platform | need access to user's collaboration_platform\r... | xmeytziq dcgwuvfk | GRP_16 | need access to user's collaboration_platform n... | English |
| 3521 | erp pur - wrong subcontracting demand for mm 3... | hello,\r\nmaterial 4895588 shows 2 pieces dema... | tckyrinp vbzqslco | GRP_29 | erp pur - wrong subcontracting demand for mm 3... | English |
| 3522 | cannot access collaboration_platform | i can't access my collaboration_platform. it ... | qcfmxgid jvxanwre | GRP_0 | cannot access collaboration_platform i can't a... | English |
| 3523 | vitalyst // unable to see customer list in crm | vitalyst // unable to see customer list in crm... | oxkhntpl xwszgidt | GRP_22 | vitalyst // unable to see customer list in crm... | English |
| 3524 | account locked | ic\n welcome, our next available agent will be... | bnoupaki cpeioxdz | GRP_0 | account locked ic\n welcome, our next availabl... | English |
| 3525 | erp netweaver error | \n\nreceived from: unrbafjx.reyshakw@gmail.com... | unrbafjx reyshakw | GRP_0 | erp netweaver error \n\nreceived from: unrbafj... | English |
| 3526 | password reset - erp SID_34 | reset the erp SID_34 password as marcel had is... | yszectoh kqwljchg | GRP_0 | password reset - erp SID_34 reset the erp SID_... | English |
| 3527 | unable to connect to home printer | unable to connect to home printer | ztrpuvdf jlahkmdv | GRP_0 | unable to connect to home printer unable to c... | English |
| 3528 | erp SID_34 account unlock | erp SID_34 account unlock | fcpnodsr nbrdxscg | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 3529 | PR | create a purchase requisition with purchasing ... | ejvkzobl yijgokrn | GRP_29 | PR create a purchase requisition with purchasi... | English |
| 3530 | security incidents - ( #in33944691 ) : possibl... | source ip: 195.272.28.222\nsource port: 80\nso... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33944691 ) : possibl... | English |
| 3531 | ship-to # 81051078 + 81053823 created in dist... | i have created a new ship-to # 81053823 for th... | repyzajo lxfwopyq | GRP_15 | ship-to # 81051078 + 81053823 created in dist... | English |
| 3532 | security incidents - ( #in33944327) :possible ... | source ip :\r\nsystem name :\r\nuser name:\r\... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33944327) :possible ... | English |
| 3533 | unable to create delivery | please provide the following:\r\n\r\nwhat orde... | mvwiygou rpkscnlv | GRP_6 | unable to create delivery please provide the f... | English |
| 3534 | 9047883335 - sales inwarehouse_tool rejected a... | the footer with banking details has not printe... | lmwfdnri joplxizv | GRP_13 | 9047883335 - sales inwarehouse_tool rejected a... | English |
| 3535 | unable to detect the dell usb adapter | unable to detect the dell usb adapter\r\n\r\n | ztrpuvdf jlahkmdv | GRP_0 | unable to detect the dell usb adapter unable ... | English |
| 3536 | india high latency | india high latency | rkupnshb gsmzfojw | GRP_4 | india high latency india high latency | English |
| 3537 | analysis add-in getting disabled | analysis add-in getting disabled | tqpbazxm jhbkycgd | GRP_0 | analysis add-in getting disabled analysis add-... | English |
| 3538 | lcowx216132 | \n\nreceived from: zwirhcol.narzlmfw@gmail.com... | zwirhcol narzlmfw | GRP_0 | lcowx216132 \n\nreceived from: zwirhcol.narzlm... | English |
| 3539 | lcow7404551 | \n\nreceived from: zwirhcol.narzlmfw@gmail.com... | zwirhcol narzlmfw | GRP_0 | lcow7404551 \n\nreceived from: zwirhcol.narzlm... | English |
| 3540 | clad qc computer is moving to a new location | this computer is moving to a new location, the... | uqrbzknc snvimeqt | GRP_3 | clad qc computer is moving to a new location t... | English |
| 3541 | clad qc computer cannot access the erp, shop_f... | brgtyad ahdwqrson is the operator in this area... | uqrbzknc snvimeqt | GRP_3 | clad qc computer cannot access the erp, shop_f... | English |
| 3542 | gthxezqp ainuhbmk desk is moving, cables need ... | in the next week the operators control desk is... | uqrbzknc snvimeqt | GRP_3 | gthxezqp ainuhbmk desk is moving, cables need ... | English |
| 3543 | the computer in my office needs access to the ... | this is a location for the access database for... | uqrbzknc snvimeqt | GRP_12 | the computer in my office needs access to the ... | English |
| 3544 | auflösung am bildschirm von pc eemw 8143337 s... | auflösung am bildschirm von pc eemw 8143337 s... | egklxsoy hivwzjcf | GRP_42 | auflösung am bildschirm von pc eemw 8143337 s... | German |
| 3545 | engineering_tool log in problem | \n\nreceived from: amrthruta.kadgdyam@company.... | pwvmkeza mzwqgejy | GRP_0 | engineering_tool log in problem \n\nreceived f... | English |
| 3546 | reset the password for rlhuwmve krcfhoxj on er... | please reset petrghada's SID_1 password as soo... | rlhuwmve krcfhoxj | GRP_0 | reset the password for rlhuwmve krcfhoxj on er... | English |
| 3547 | laptop will not start up while docked, blue po... | laptop will not start up while docked, blue po... | zlemowkf hamtklux | GRP_3 | laptop will not start up while docked, blue po... | English |
| 3548 | business_client error during log in | \r\n\r\nreceived from: amrthruta.kadgdyam@comp... | pwvmkeza mzwqgejy | GRP_0 | business_client error during log in \r\n\r\nre... | English |
| 3549 | bluetooth headset bekommt keine verbindung mit... | bluetooth headset bekommt keine verbindung mit pc | bwgldaoe aczyfqjr | GRP_33 | bluetooth headset bekommt keine verbindung mit... | German |
| 3550 | unable to open outlook | unable to open outlook | jyzkbgpm vxmjcbdw | GRP_0 | unable to open outlook unable to open outlook | English |
| 3551 | printer problem / issue information | please complete all required questions below. ... | ploxzuts utvimnwo | GRP_0 | printer problem / issue information please com... | English |
| 3552 | need reset password erp SID_1 system | need reset password erp SID_1 system | gzawrocy shbgwxep | GRP_2 | need reset password erp SID_1 system need res... | English |
| 3553 | job Job_1132 failed in job_scheduler at: 09/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1132 failed in job_scheduler at: 09/22... | English |
| 3554 | to add a new employee to distribution lists | \n\nreceived from: bmudkpie.qolrvbip@gmail.com... | bmudkpie qolrvbip | GRP_0 | to add a new employee to distribution lists \n... | English |
| 3555 | see attachment | see attachment\ncontact : (uk) | xcufgmhj yezfxmga | GRP_0 | see attachment see attachment\ncontact : (uk) | English |
| 3556 | when i call the germany office with telephony_... | when i call the germany office with telephony_... | pxvzohlu hwyijpgd | GRP_7 | when i call the germany office with telephony_... | English |
| 3557 | blocked inwarehouse_tool for 5205 9048054513 | blocked inwarehouse_tool in our system. reason... | ahmgtlyf ofgxcrys | GRP_13 | blocked inwarehouse_tool for 5205 9048054513 b... | English |
| 3558 | videos won't play in skirtylport training | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_0 | videos won't play in skirtylport training \n\n... | English |
| 3559 | bitte konto erzeugen. ewew7212768 | optiplex 5040 \nmessmachine \nberirtch : zedgh... | ughzilfm cfibdamq | GRP_12 | bitte konto erzeugen. ewew7212768 optiplex 504... | German |
| 3560 | unable to access SID_1 | \r\n\r\nreceived from: rxoynvgi.ntgdsehl@gmail... | rxoynvgi ntgdsehl | GRP_0 | unable to access SID_1 \r\n\r\nreceived from:... | English |
| 3561 | reset the password for bwgldaoe aczyfqjr on er... | please reset my password in erp SID_1 erp uacy... | bwgldaoe aczyfqjr | GRP_0 | reset the password for bwgldaoe aczyfqjr on er... | English |
| 3562 | not able to login to beyond evolution campaign... | not able to login to beyond evolution campaign... | rcbdyslq zuspjbtw | GRP_9 | not able to login to beyond evolution campaign... | English |
| 3563 | business_client issue | \r\n\r\nreceived from: lvxakohq.tsfnhowj@gmail... | lvxakohq tsfnhowj | GRP_0 | business_client issue \r\n\r\nreceived from: l... | English |
| 3564 | erp hrp hcm account lockout | erp hrp hcm account lockout | jionmpsf wnkpzcmv | GRP_0 | erp hrp hcm account lockout erp hrp hcm accoun... | English |
| 3565 | probleme mit erpgui \jionmpsf wnkpzcmv | probleme mit erpgui \jionmpsf wnkpzcmv | jionmpsf wnkpzcmv | GRP_24 | probleme mit erpgui \jionmpsf wnkpzcmv problem... | Danish |
| 3566 | pc empw 8144239 neu aufsetzen | pc empw 8144239 neu aufsetzen | wyotidgu nydzrtuw | GRP_33 | pc empw 8144239 neu aufsetzen pc empw 8144239... | German |
| 3567 | not able to create dc | \r\n\r\nreceived from: rgtarthi.erjgypa@compan... | xqoljzbh aydcwkxt | GRP_13 | not able to create dc \r\n\r\nreceived from: r... | English |
| 3568 | job Job_593 failed in job_scheduler at: 09/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/22/... | English |
| 3569 | id04 printer not working at company | id04 printer not working at company | jvhqyamt wodzrcjg | GRP_19 | id04 printer not working at company id04 print... | English |
| 3570 | konto gesperrt \ handy wlan authentifizierungs... | konto gesperrt \ handy wlan authentifizierungs... | jxphgfmb gjbtuwek | GRP_24 | konto gesperrt \ handy wlan authentifizierungs... | German |
| 3571 | access point defekt .\jxphgfmb gjbtuwek | access point defekt .\jxphgfmb gjbtuwek | jxphgfmb gjbtuwek | GRP_24 | access point defekt .\jxphgfmb gjbtuwek access... | English |
| 3572 | probleme mit outlook \kwehgxts agdsqbwv | hallo ,\r\n\r\nich möchte gerne das in der su... | kwehgxts agdsqbwv | GRP_24 | probleme mit outlook \kwehgxts agdsqbwv hallo ... | German |
| 3573 | probleme mit skype \difozlav dgbfptos \niptbwd... | probleme mit skype \difozlav dgbfptos \niptbwd... | niptbwdq csenjruz | GRP_24 | probleme mit skype \difozlav dgbfptos \niptbwd... | Danish |
| 3574 | 1098572 stock issue | \n\nreceived from: rgtoger.lfgtiu@company.com\... | bejcxvis anxmhwis | GRP_29 | 1098572 stock issue \n\nreceived from: rgtoger... | English |
| 3575 | dvd palyer not working | \r\n\r\nreceived from: gwmspqeo.vwfetaqg@gmail... | gwmspqeo vwfetaqg | GRP_19 | dvd palyer not working \r\n\r\nreceived from: ... | English |
| 3576 | login problems in skype. | login problems in skype. | xnkqufwl hjnvudlk | GRP_0 | login problems in skype. login problems in skype. | English |
| 3577 | please check pgi from delivery note 9169359948 | please check pgi from delivery note 8058248837 | tvmlrwkz rsxftjep | GRP_18 | please check pgi from delivery note 9169359948... | English |
| 3578 | your account | hello,\r\n\r\ni'm unable to login on the bcd t... | anuxbyzg bvsqcjkw | GRP_0 | your account hello,\r\n\r\ni'm unable to login... | English |
| 3579 | job Job_512 failed in job_scheduler at: 09/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_512 failed in job_scheduler at: 09/22/... | English |
| 3580 | poland experience some response time slowness ... | poland experience some response time slowness ... | mcytlpva jutxbdor | GRP_14 | poland experience some response time slowness ... | English |
| 3581 | usa - (company inc.):gigabitethernet2/0/49 -in... | usa - (company inc.): interface: gigabitethern... | oldrctiu bxurpsyi | GRP_4 | usa - (company inc.):gigabitethernet2/0/49 -in... | English |
| 3582 | erp - SID_34 - long response time + long runtime | several users in fürth including me are exper... | cfajzero vlygoksi | GRP_6 | erp - SID_34 - long response time + long runti... | English |
| 3583 | collaboration_platform | \r\n\r\nreceived from: xaertwdh.kcsagvpy@gmail... | epAYsqnX RAkuDnXG | GRP_0 | collaboration_platform \r\n\r\nreceived from: ... | English |
| 3584 | outlook hangs. | outlook hangs. | cpsybwla snymigat | GRP_0 | outlook hangs. outlook hangs. | English |
| 3585 | EU_tool problem - urgent- | \r\n\r\nreceived from: xnlapdeq.wupaeqlv@gmail... | xnlapdeq wupaeqlv | GRP_25 | EU_tool problem - urgent- \r\n\r\nreceived fr... | English |
| 3586 | frequent account lock out. | hello can you please do the daily reset of my ... | afplnyxb eiomnuba | GRP_0 | frequent account lock out. hello can you pleas... | English |
| 3587 | please provide permission to the files in m:\i... | please provide permission to the files in m:\i... | ytwmgpbk cpawsihk | GRP_12 | please provide permission to the files in m:\i... | English |
| 3588 | mikrofon vom mobiltelefon gigaset sl 3 defekt! | bitte telefon tauschen. | qbsgwujo gvbzkjfq | GRP_33 | mikrofon vom mobiltelefon gigaset sl 3 defekt!... | German |
| 3589 | ship-to creation error | since we have many users that have multiple so... | hbmwlprq ilfvyodx | GRP_20 | ship-to creation error since we have many user... | English |
| 3590 | full access to oe drive fürth | \r\n\r\nreceived from: scjxobhd.ldypjkmf@gmail... | scjxobhd ldypjkmf | GRP_34 | full access to oe drive fürth \r\n\r\nreceive... | English |
| 3591 | please help to logon erp system | \r\n\r\nreceived from: rtjwbuev.gfpwdetq@gmail... | rtjwbuev gfpwdetq | GRP_0 | please help to logon erp system \r\n\r\nreceiv... | English |
| 3592 | power outage: engineering_toolkuznetsk warehou... | engineering_toolkuznetsk warehouse - (company)... | oldrctiu bxurpsyi | GRP_8 | power outage: engineering_toolkuznetsk warehou... | English |
| 3593 | awb 0276036761 / sin - jnb | hi johthryugftyson\n\nany update form it team ... | rxoynvgi ntgdsehl | GRP_18 | awb 0276036761 / sin - jnb hi johthryugftyson... | English |
| 3594 | bitte erstellen sie mir eine liste über alle ... | bitte erstellen sie mir eine liste über alle ... | ukvlnrwb fiyeczmh | GRP_0 | bitte erstellen sie mir eine liste über alle ... | German |
| 3595 | unable to create new or any exepnse report - i... | user is a new employee and unable to create ex... | vfrdxtqw jfbmsenz | GRP_10 | unable to create new or any exepnse report - i... | English |
| 3596 | i can not log in erp | password logon no longer possible - too many f... | qdbfemro mcsqzlvd | GRP_0 | i can not log in erp password logon no long... | English |
| 3597 | usa access for configuring outlook exchange on... | usa access for configuring outlook exchange on... | ytwmgpbk cpawsihk | GRP_0 | usa access for configuring outlook exchange on... | English |
| 3598 | reset passwords for qdbfemro mcsqzlvd using pa... | i can not log in erp | qdbfemro mcsqzlvd | GRP_17 | reset passwords for qdbfemro mcsqzlvd using pa... | English |
| 3599 | plm response is very slow | \r\n\r\nreceived from: hctduems.znalhivf@gmail... | hctduems znalhivf | GRP_0 | plm response is very slow \r\n\r\nreceived fro... | English |
| 3600 | users are complaining that erp response is ver... | users are complaining that erp response is ver... | ythucdjx mujfrsyl | GRP_14 | users are complaining that erp response is ver... | English |
| 3601 | given name and sur name changes required in wi... | given name and surname changes required in win... | hnkwirgv wdgebvpz | GRP_2 | given name and sur name changes required in wi... | English |
| 3602 | erp slow response | \n\nreceived from: kugwsrjz.xnygwtle@gmail.com... | isuclrnw hxrtkiws | GRP_14 | erp slow response \n\nreceived from: kugwsrjz.... | English |
| 3603 | apac company:fastethernet0/48 - company-ap-chn... | apac company: company-ap-chn-apac-shop-closet... | oldrctiu bxurpsyi | GRP_4 | apac company:fastethernet0/48 - company-ap-chn... | English |
| 3604 | security_tool notification: password verificat... | from: ugyothfz ugrmkdhx \nsent: thursday, sept... | ugyothfz ugrmkdhx | GRP_2 | security_tool notification: password verificat... | English |
| 3605 | apac- china and apac plant have reported erp s... | apac- china and apac plant have reported erp s... | obuwfnkm ufpwmybi | GRP_14 | apac- china and apac plant have reported erp s... | English |
| 3606 | acct 70939408 | \n\nreceived from: nkthumgf.mwgdenbs@gmail.com... | nkthumgf mwgdenbs | GRP_15 | acct 70939408 \n\nreceived from: nkthumgf.mwgd... | English |
| 3607 | outlook isue : user called back. | \r\n\r\nreceived from: vxzahrlc.frtkpehy@gmail... | vxzahrlc frtkpehy | GRP_0 | outlook isue : user called back. \r\n\r\nrecei... | English |
| 3608 | dell 7350: sound issue. | dell 7350: sound issue.\r\n-connected to the u... | nyjvwsxf npwoglzf | GRP_0 | dell 7350: sound issue. dell 7350: sound issue... | English |
| 3609 | job SID_47filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_47filesys failed in job_scheduler at: ... | English |
| 3610 | my account (user = morhyerw) is being repeated... | for the past two days, my account has been rep... | kdjfhwua arfpnhbj | GRP_0 | my account (user = morhyerw) is being repeated... | English |
| 3611 | outlook not launching. | outlook not launching.\n-connected to the user... | huaxlyfi lqvamnbj | GRP_0 | outlook not launching. outlook not launching.\... | English |
| 3612 | workflow | \n\nreceived from: nealxjbc.owjduxai@gmail.com... | nealxjbc owjduxai | GRP_13 | workflow \n\nreceived from: nealxjbc.owjduxai@... | English |
| 3613 | login issue | login issue\r\n-verified user details.(employe... | ugrnzjpy utbswegc | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 3614 | not able to login to vpn, | not able to login to vpn,\r\n-advised the call... | zidbmyut esmbcxor | GRP_0 | not able to login to vpn, not able to login to... | English |
| 3615 | network problems (multiple applications are ru... | how did you determine there are network proble... | juaxnvwz reampilj | GRP_41 | network problems (multiple applications are ru... | English |
| 3616 | vip 1: please add me to the allowed sender lis... | please add me to the allowed sender list for t... | hkrecpfv kgwpbexv | GRP_26 | vip 1: please add me to the allowed sender lis... | English |
| 3617 | engineering_tool not working | name:mikhghytr\nlanguage:\nbrowser:microsoft i... | vcyktjxp uxdojvrq | GRP_0 | engineering_tool not working name:mikhghytr\nl... | English |
| 3618 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | cawuojrb trwsilgq | GRP_0 | error login on to the SID_34 system. error log... | English |
| 3619 | call came and got disconnected | call came and got disconnected | rbozivdq gmlhrtvp | GRP_0 | call came and got disconnected call came and g... | English |
| 3620 | unable to update passwords on all accounts | unable to update passwords on all accounts | nesmdkpr dcaqoxsy | GRP_0 | unable to update passwords on all accounts una... | English |
| 3621 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | jvshydix rzpmnylt | GRP_0 | error login on to the SID_34 system. error log... | English |
| 3622 | cannot print to prtqx1248 on pc rqxw8514035 an... | cannot print to prtqx1248 on pc rqxw8514035 an... | mfrsgwnk wremyjlo | GRP_3 | cannot print to prtqx1248 on pc rqxw8514035 an... | English |
| 3623 | request to remove 1 day pick route logic from ... | name:xnqzhtwu hivumtfz\nlanguage:\nbrowser:mic... | xnqzhtwu hivumtfz | GRP_18 | request to remove 1 day pick route logic from ... | English |
| 3624 | computer crashed after a reboot | computer crashed after a reboot | zstkagwu jlyrhdcf | GRP_0 | computer crashed after a reboot computer crash... | English |
| 3625 | unable to connect to outlook | name:mikhghytr\nlanguage:\nbrowser:microsoft i... | vcyktjxp uxdojvrq | GRP_0 | unable to connect to outlook name:mikhghytr\nl... | English |
| 3626 | ticket update inplant_862604 | ticket update inplant_862604 | fumkcsji sarmtlhy | GRP_0 | ticket update inplant_862604 ticket update inp... | English |
| 3627 | email search option issue | \r\n\r\nreceived from: xyculgav.cuqptoah@gmail... | xyculgav cuqptoah | GRP_19 | email search option issue \r\n\r\nreceived fro... | English |
| 3628 | r: ticket_no1402627 change in report zsdslsum ... | \r\n\r\nreceived from: xawlkiey.demjqrfl@gmail... | xawlkiey demjqrfl | GRP_64 | r: ticket_no1402627 change in report zsdslsum ... | English |
| 3629 | account expired for user coumikzb ubfcwegt | account expired for user coumikzb ubfcwegt\n\n... | vrjwyqtf qoxkapfw | GRP_2 | account expired for user coumikzb ubfcwegt acc... | English |
| 3630 | company emails on personal smartphone | company emails on personal smartphone | pjnlxcrm kizumjot | GRP_0 | company emails on personal smartphone company ... | English |
| 3631 | usa:interface down on tengigabitethernet1/5 te... | interface down - on tengigabitethernet1/5 ·... | oldrctiu bxurpsyi | GRP_4 | usa:interface down on tengigabitethernet1/5 te... | English |
| 3632 | dell 7350:sound issue with skype calls. | dell 7350:sound issue with skype calls.\n-conn... | ijplstng juybetlo | GRP_0 | dell 7350:sound issue with skype calls. dell 7... | English |
| 3633 | berechtigung für ordner einrichten | ich benötige für folgende personen aus germa... | xtfniscy ecoyksda | GRP_33 | berechtigung für ordner einrichten ich benöt... | German |
| 3634 | requesting un-install and re-install of excel ... | i am currently running into issues with my "co... | ferxqvsm esmwxqlf | GRP_0 | requesting un-install and re-install of excel ... | English |
| 3635 | ticket update on inplant_862569 | ticket update on inplant_862569 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_862569 ticket update ... | English |
| 3636 | blank call | blank call | fumkcsji sarmtlhy | GRP_0 | blank call blank call | English |
| 3637 | blank call | blank call | fumkcsji sarmtlhy | GRP_0 | blank call blank call | English |
| 3638 | unable to connect projector | \r\n\r\nreceived from: aljbtwsh.lepkbgix@gmail... | aljbtwsh lepkbgix | GRP_19 | unable to connect projector \r\n\r\nreceived f... | English |
| 3639 | windows password reset | windows password reset | khsilgon tpyeucvl | GRP_0 | windows password reset windows password reset | English |
| 3640 | mii password reset | mii password reset | ycazngpi mdsqixlr | GRP_0 | mii password reset mii password reset | English |
| 3641 | password reset | password reset | mrduhsci xmvkzqja | GRP_0 | password reset password reset | English |
| 3642 | job Job_1387 failed in job_scheduler at: 09/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1387 failed in job_scheduler at: 09/21... | English |
| 3643 | erp access issue - SID_1 | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | slubnjry qcrabvoe | GRP_2 | erp access issue - SID_1 system (SID_34, SID_3... | English |
| 3644 | re: need a little help--please | \n\nreceived from: damuphws.arkulcoi@gmail.com... | damuphws arkulcoi | GRP_18 | re: need a little help--please \n\nreceived fr... | English |
| 3645 | ç”å¤: ç”å¤: order products online problem | \r\n\r\nreceived from: fkdazsmi.yecbrofv@gmail... | fkdazsmi yecbrofv | GRP_0 | ç”å¤: ç”å¤: order products online problem ... | English |
| 3646 | blank call // gso loud noise | blank call // gso loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call // gso loud noise blank call // gso... | English |
| 3647 | ç”å¤: ç”å¤: order products online problem | \r\n\r\nreceived from: fkdazsmi.yecbrofv@gmail... | fkdazsmi yecbrofv | GRP_0 | ç”å¤: ç”å¤: order products online problem ... | English |
| 3648 | erp SID_1 account locked out | erp SID_1 account locked out | iauqlrjk nijdaukz | GRP_0 | erp SID_1 account locked out erp SID_1 account... | English |
| 3649 | re: need a little help--please | \n\nreceived from: smxoklny.hbecskgl@gmail.com... | khvzugxm yqfrcjwl | GRP_18 | re: need a little help--please \n\nreceived fr... | English |
| 3650 | laptop not booting up | laptop not booting up | lzqbyner jyncfahz | GRP_0 | laptop not booting up laptop not booting up | English |
| 3651 | ticket update on ticket_no0442388 | ticket update on ticket_no0442388 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0442388 ticket updat... | English |
| 3652 | need to check if sdlixwmb zvygmnco's account i... | need to check if sdlixwmb zvygmnco's account i... | pvlxjizg xzvlwqjc | GRP_0 | need to check if sdlixwmb zvygmnco's account i... | English |
| 3653 | hwbipgfq.sqiyfdax@gmail.com called to check ho... | hwbipgfq.sqiyfdax@gmail.com called to check ho... | olckhmvx pcqobjnd | GRP_0 | hwbipgfq.sqiyfdax@gmail.com called to check ho... | English |
| 3654 | unable to update passwords | unable to update passwords | hawrkqnp sjwrgakp | GRP_0 | unable to update passwords unable to update p... | English |
| 3655 | vip2: erp SID_34 account unlock | vip2: erp SID_34 account unlock | usqrpicf dfmxaliz | GRP_0 | vip2: erp SID_34 account unlock vip2: erp SID_... | English |
| 3656 | crm configuration and password reset | crm configuration and password reset | tgewaniq yepifgbl | GRP_0 | crm configuration and password reset crm confi... | English |
| 3657 | general enquiry about engineering_tool install... | general enquiry about engineering_tool install... | rbozivdq gmlhrtvp | GRP_0 | general enquiry about engineering_tool install... | English |
| 3658 | network outage :canada, ontario - (company):si... | what type of outage: ___x__network _____c... | oldrctiu bxurpsyi | GRP_8 | network outage :canada, ontario - (company):si... | English |
| 3659 | erp SID_34 account locked | erp SID_34 account locked | bjtguqne xthqrzpc | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 3660 | please activate my new company owned samsung s... | \r\n\r\nreceived from: nwfoucba.dzbujamc@gmail... | nwfoucba dzbujamc | GRP_0 | please activate my new company owned samsung s... | English |
| 3661 | unable to load outlook | unable to load outlook | tgewaniq yepifgbl | GRP_0 | unable to load outlook unable to load outlook | English |
| 3662 | .companyfoundation@kcompany.com and .relations... | need to add two mailboxes to outlook (still wo... | fmjeaoih ndyezlkb | GRP_0 | .companyfoundation@kcompany.com and .relations... | English |
| 3663 | drucker wk20 defekt | drucker wk20 defekt | xgejlvkn msbunvpx | GRP_33 | drucker wk20 defekt drucker wk20 defekt | English |
| 3664 | password reset as it is expired | password reset as it is expired | zylwdbig wdkbztjp | GRP_0 | password reset as it is expired password reset... | English |
| 3665 | modify teamsales sproc to calculate full ytd i... | the current team sproc calculates a delta valu... | aofextgk tugywidl | GRP_25 | modify teamsales sproc to calculate full ytd i... | English |
| 3666 | infopath links to discount forms do not open | hello,\r\ndiscount team in poznań is unable t... | ahydmrbu fjymgtvo | GRP_0 | infopath links to discount forms do not open h... | English |
| 3667 | unable to load erp | unable to load erp | olckhmvx pcqobjnd | GRP_0 | unable to load erp unable to load erp | English |
| 3668 | recall: ticket_no1551667 - due date has been u... | \r\n\r\nreceived from: riqmdnzs.mtlghwex@gmail... | riqmdnzs mtlghwex | GRP_2 | recall: ticket_no1551667 - due date has been u... | English |
| 3669 | connect 2 in 1 to companysecure | connect 2 in 1 to companysecure | hmgbwyce sacuoyfe | GRP_3 | connect 2 in 1 to companysecure connect 2 in 1... | English |
| 3670 | unable to get on network drives | unable to get on network drives | jrxsdcna iyhktobe | GRP_0 | unable to get on network drives unable to get ... | English |
| 3671 | erp SID_34 password reset | erp SID_34 password reset | wsomjgqe osyicmxw | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 3672 | account locked. | account locked. | znyijvpg kjqhrwlv | GRP_0 | account locked. account locked. | English |
| 3673 | i cannot provide data into crm | i can't provide information in crm - during wo... | lmsxcvoz vzhkdpfn | GRP_15 | i cannot provide data into crm i can't provide... | English |
| 3674 | password reset | password reset | nmpworvu upgtrvnj | GRP_0 | password reset password reset | English |
| 3675 | due to new hardware usa access to exchange acc... | die synchronisierung mit exchange activesync i... | wjbanovh mohgutiw | GRP_0 | due to new hardware usa access to exchange acc... | German |
| 3676 | erro programdntya docad | please, this problem is related it south_ameri... | lokiwfhg udkoqrcg | GRP_62 | erro programdntya docad please, this problem i... | English |
| 3677 | loop back ip for primary router at erkheim wen... | loop back ip for primary router at erkheim wen... | oldrctiu bxurpsyi | GRP_4 | loop back ip for primary router at erkheim wen... | English |
| 3678 | account lock out. | account lock out. | pmgzhivt shexujmb | GRP_0 | account lock out. account lock out. | English |
| 3679 | cannot open new lean tracker form | \r\n\r\nreceived from: saerpwno.qsdfmakc@gmail... | saerpwno qsdfmakc | GRP_0 | cannot open new lean tracker form \r\n\r\nrece... | English |
| 3680 | monitor in der stäbe-endkontrolle defekt | monitor in der stäbe-endkontrolle defekt | kiqrvwat gwkpxzyt | GRP_33 | monitor in der stäbe-endkontrolle defekt moni... | English |
| 3681 | user password | \r\n\r\nreceived from: bswlorek.yhdrlgbs@gmail... | bswlorek yhdrlgbs | GRP_0 | user password \r\n\r\nreceived from: bswlorek.... | English |
| 3682 | bwa index for bw queries failed due to bwa ser... | dear team,\r\n\r\nwe are facing errors in bwa ... | vthuzanc fqdgotvx | GRP_14 | bwa index for bw queries failed due to bwa ser... | English |
| 3683 | problems with creating pgi in transaction vl02... | problems with creating pgi in transaction vl02... | alenrdvz mhglqndp | GRP_18 | problems with creating pgi in transaction vl02... | English |
| 3684 | maus defekt . | hallo ,\r\nich und howfanzi siavgtby brauchen... | tkhaymqg cwuqzyvm | GRP_24 | maus defekt . hallo ,\r\nich und howfanzi siav... | German |
| 3685 | maus defekt | hallo ,\r\nich und howfanzi siavgtby brauchen... | howfanzi siavgtby | GRP_24 | maus defekt hallo ,\r\nich und howfanzi siavgt... | German |
| 3686 | probleme mit symantec \ konferenzraum stäbe \... | probleme mit symantec \ konferenzraum stäbe \... | nozahtbr ubznqpsy | GRP_24 | probleme mit symantec \ konferenzraum stäbe \... | Danish |
| 3687 | drucker defekt in der qs | fehlermeldung 59.fo | lxfnwyuv bqmjyprz | GRP_24 | drucker defekt in der qs fehlermeldung 59.fo | German |
| 3688 | account locked in erp SID_34 | account locked in erp SID_34 | phqgtfbn lzdntwpr | GRP_0 | account locked in erp SID_34 account locked in... | English |
| 3689 | vpn connection | \r\n\r\nreceived from: xwertljy.zrmlhkyq@gmail... | xwertljy zrmlhkyq | GRP_19 | vpn connection \r\n\r\nreceived from: xwertljy... | English |
| 3690 | network outage:india , in-company- carrier:sit... | what type of outage: __x___network _____c... | oldrctiu bxurpsyi | GRP_8 | network outage:india , in-company- carrier:sit... | English |
| 3691 | pasword and connection problem | i don't reach pasword manager pages. it says s... | mvhcoqed konjdmwq | GRP_0 | pasword and connection problem i don't reach p... | English |
| 3692 | reset passwords for mvhcoqed konjdmwq using pa... | the | mvhcoqed konjdmwq | GRP_17 | reset passwords for mvhcoqed konjdmwq using pa... | English |
| 3693 | reset passwords for mvhcoqed konjdmwq using pa... | the | mvhcoqed konjdmwq | GRP_17 | reset passwords for mvhcoqed konjdmwq using pa... | English |
| 3694 | job Job_1392 failed in job_scheduler at: 09/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1392 failed in job_scheduler at: 09/21... | English |
| 3695 | HostName_809 : usa plant ups is down at 4 am e... | HostName_809 : usa plant ups is down at 4 am e... | rkupnshb gsmzfojw | GRP_8 | HostName_809 : usa plant ups is down at 4 am e... | English |
| 3696 | erp csd cockpit application: condition update ... | erp csd cockpit application: condition update ... | ivcygqta qiovrcal | GRP_13 | erp csd cockpit application: condition update ... | English |
| 3697 | ess password reset | ess password reset | euyvqblc ietfqpga | GRP_0 | ess password reset ess password reset | English |
| 3698 | HostName_239 : volume: /dev/ora_data2 is over... | HostName_239 : volume: /dev/ora_data2 is over... | spxqmiry zpwgoqju | GRP_1 | HostName_239 : volume: /dev/ora_data2 is over... | English |
| 3699 | qlhmawgi sgwipoxn : roaghyunokepc locked | qlhmawgi sgwipoxn : roaghyunokepc locked | boithdfa tojwnydh | GRP_0 | qlhmawgi sgwipoxn : roaghyunokepc locked qlhma... | English |
| 3700 | my SID_1 system is been locked, can you unlo... | my SID_1 system is been locked, can you unlo... | jdocyzgq gdvmjnso | GRP_2 | my SID_1 system is been locked, can you unlo... | English |
| 3701 | collaboration_platform access not going through | \r\n\r\nreceived from: byrljshv.bwvmophd@gmail... | glwtihcj lymcgjhd | GRP_16 | collaboration_platform access not going throug... | English |
| 3702 | aiuw8911994 india patching_antivirus_sw deskto... | this pc is offline since 19th sept | fohvgnkd stfmcapj | GRP_19 | aiuw8911994 india patching_antivirus_sw deskto... | English |
| 3703 | order products online problem | from: -ebusiness service \nsent: wednesday, se... | fkdazsmi yecbrofv | GRP_0 | order products online problem from: -ebusiness... | English |
| 3704 | erpæ— æ³•ç™»å½•ï¼Œæç¤ºlogon balancing error ... | gartryhu:\r\nä½ å¥½ï¼Œä»Žæ˜¨å¤©æ™šä¸Šå¼€å§‹ï... | agzswjku kqwofdjl | GRP_31 | erpæ— æ³•ç™»å½•ï¼Œæç¤ºlogon balancing error ... | English |
| 3705 | security incidents - ( #in33932723 ) : possibl... | source ip: 10.44.63.52\r\nsource hostname: lee... | gzhapcld fdigznbk | GRP_48 | security incidents - ( #in33932723 ) : possibl... | English |
| 3706 | security incidents - ( #in33924718 ) : possibl... | source ip :195.22.28.222\r\ndestination ip: 12... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33924718 ) : possibl... | English |
| 3707 | folder access request | (\\HostName_768) (t:\\finance\global bank bals... | phvkowml azbtkqwx | GRP_34 | folder access request (\\HostName_768) (t:\\fi... | English |
| 3708 | job Job_495 failed in job_scheduler at: 09/21/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_495 failed in job_scheduler at: 09/21/... | English |
| 3709 | do not have permission to ess portal. at | please reach out to me for more information if... | ytwmgpbk cpawsihk | GRP_2 | do not have permission to ess portal. at plea... | English |
| 3710 | mm#3342477 | mm#5270584 | mm#5270486 | mm#4166346 | hi\r\n\r\nplease see below pricing team commen... | kfhnmtgi boxmklnp | GRP_13 | mm#3342477 | mm#5270584 | mm#5270486 | mm#4166... | English |
| 3711 | batch number is not appearing in pdf output of... | dear bhughjdra,\n\nthis is a good enquiry. agr... | vkezwolt fgnqzeai | GRP_25 | batch number is not appearing in pdf output of... | English |
| 3712 | job Job_481 failed in job_scheduler at: 09/21/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_481 failed in job_scheduler at: 09/21/... | English |
| 3713 | e-time 系统javaæ›´æ–°-转贺æ£å¹³ | \n\nreceived from: tuqrvowp.fxmzkvqo@gmail.com... | tuqrvowp fxmzkvqo | GRP_30 | e-time 系统javaæ›´æ–°-转贺æ£å¹³ \n\nrecei... | English |
| 3714 | distributor_tool account identification problem | \r\n\r\nreceived from: pgeknaxy.usokqprd@gmail... | pgeknaxy usokqprd | GRP_0 | distributor_tool account identification proble... | English |
| 3715 | maschinenstillstand ma 7 kesm , fernwartung no... | maschinenstillstand ma 7 kesm , fernwartung no... | fiwaltqr utykjmwi | GRP_33 | maschinenstillstand ma 7 kesm , fernwartung no... | German |
| 3716 | job Job_1390 failed in job_scheduler at: 09/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1390 failed in job_scheduler at: 09/21... | English |
| 3717 | job Job_1332 failed in job_scheduler at: 09/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1332 failed in job_scheduler at: 09/21... | English |
| 3718 | re: need a little help--please | \n\nreceived from: bcefayom.lzhwcgvb@gmail.com... | bcefayom lzhwcgvb | GRP_18 | re: need a little help--please \n\nreceived fr... | English |
| 3719 | job Job_1378 failed in job_scheduler at: 09/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1378 failed in job_scheduler at: 09/21... | English |
| 3720 | lhqSID_1856-new | \n\nreceived from: ctvaejbo.mjcerqwo@gmail.com... | ctvaejbo mjcerqwo | GRP_12 | lhqSID_1856-new \n\nreceived from: ctvaejbo.mj... | English |
| 3721 | leantracker anmeldung funktioniert nicht | lean tracker öffnet nicht. fehlermeldung ersc... | hwfckjzs abxdmyho | GRP_0 | leantracker anmeldung funktioniert nicht lean ... | German |
| 3722 | minitab to be installed | name:wnorzsyv mdflqwxg\nlanguage:\nbrowser:mic... | wnorzsyv mdflqwxg | GRP_19 | minitab to be installed name:wnorzsyv mdflqwxg... | English |
| 3723 | erp access issue: please reset SID_34 password... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | nrugzxkl lohqkvry | GRP_2 | erp access issue: please reset SID_34 password... | English |
| 3724 | windows account locked | windows account locked | gxawkhsq xqrczonv | GRP_0 | windows account locked windows account locked | English |
| 3725 | windows account locked | windows account locked | lqxhoyic ojxkuftc | GRP_0 | windows account locked windows account locked | English |
| 3726 | batch number is not appearing in pdf output of... | \r\n\r\nreceived from: xqkydoat.bveiyclr@gmail... | xqkydoat bveiyclr | GRP_53 | batch number is not appearing in pdf output of... | English |
| 3727 | network outage: poncacity -schlumhdyhter-dmvpn... | what type of outage: __x___network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage: poncacity -schlumhdyhter-dmvpn... | English |
| 3728 | wlan guest access for cantine germany | from: xvwchsdg pladjmxt \nsent: tuesday, septe... | xvwchsdg pladjmxt | GRP_4 | wlan guest access for cantine germany from: xv... | English |
| 3729 | job Job_1374 failed in job_scheduler at: 09/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1374 failed in job_scheduler at: 09/21... | English |
| 3730 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | afijkocw rjtxslpa | GRP_0 | request to reset microsoft online services pas... | English |
| 3731 | erp SID_34 account locked | erp SID_34 account locked | wvaksnpy vnixhytj | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 3732 | not able to access -inq industrial (-inq.indus... | \r\n\r\nreceived from: muqdlobv.qflsdahg@gmail... | muqdlobv qflsdahg | GRP_0 | not able to access -inq industrial (-inq.indus... | English |
| 3733 | expense report - receipts issue | one of my employees sent his expenses to me to... | cyxulwmi lygbewdi | GRP_10 | expense report - receipts issue one of my emp... | English |
| 3734 | two billings were not posted to gl 9169221558 ... | name:jashtyckie\nlanguage:\nbrowser:microsoft ... | fksahqzc cdwhznbo | GRP_10 | two billings were not posted to gl 9169221558 ... | English |
| 3735 | vpn will not allow access to erp | name:pfzxecbo ptygkvzl\r\nlanguage:\r\nbrowser... | pfzxecbo ptygkvzl | GRP_0 | vpn will not allow access to erp name:pfzxecbo... | English |
| 3736 | job Job_2555 failed in job_scheduler at: 09/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2555 failed in job_scheduler at: 09/20... | English |
| 3737 | job SID_51filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_51filesys failed in job_scheduler at: ... | English |
| 3738 | ç”µè¯æ•…éšœ | é“¸æ£’è½¦é—´ç”µè¯æ•…障,39523850 | sbkhjigv pbvlfcse | GRP_48 | ç”µè¯æ•…éšœ é“¸æ£’è½¦é—´ç”µè¯æ•…障,39523850 | English |
| 3739 | laptop can't log on | laptop can't log on | xielgjvr sqjxewmh | GRP_31 | laptop can't log on laptop can't log on | English |
| 3740 | upsæ•…éšœ | 制粉车间3楼psfäº¤æ¢æœºå¤„ups故障,设... | agyvbnwz mxsonkdc | GRP_48 | upsæ•…éšœ 制粉车间3楼psfäº¤æ¢æœºå¤„upsæ•... | English |
| 3741 | internal crm - auto notification, not received | crm 7611183702 - when the responsible user upd... | hgcrtxez azoeingw | GRP_15 | internal crm - auto notification, not received... | English |
| 3742 | SID_1 access beathe | \r\n\r\nreceived from: uisewznr.ewtmkphs@gmail... | uisewznr ewtmkphs | GRP_0 | SID_1 access beathe \r\n\r\nreceived from: uis... | English |
| 3743 | a dell search icon is running all the time slo... | name:danyhuie deyhtwet\nlanguage:\nbrowser:mic... | rozsyfai zncajubh | GRP_0 | a dell search icon is running all the time slo... | English |
| 3744 | job Job_1315 failed in job_scheduler at: 09/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1315 failed in job_scheduler at: 09/20... | English |
| 3745 | add rohhsyni lalanne to shipment notification ... | \n\nreceived from: ibtvlfah.dtlwscma@gmail.com... | ibtvlfah dtlwscma | GRP_18 | add rohhsyni lalanne to shipment notification ... | English |
| 3746 | tax not printing on customer inwarehouse_tools | please review the attached inwarehouse_tools, ... | slkxgzdj wxpytevu | GRP_13 | tax not printing on customer inwarehouse_tools... | English |
| 3747 | canadian customer inwarehouse_tools are not pr... | \n\nreceived from: gkzedilm.tkpfumeb@gmail.com... | bixvmnar glakoprc | GRP_13 | canadian customer inwarehouse_tools are not pr... | English |
| 3748 | telefon defekt | gigaset m2 mit der durchwahl 479\r\nakku hält... | ptvdxwla tlevwmzo | GRP_33 | telefon defekt gigaset m2 mit der durchwahl 4... | German |
| 3749 | unable to log in to erp | unable to log in to erp | uerghtyi erzatqpy | GRP_0 | unable to log in to erp unable to log in to erp | English |
| 3750 | user jeshyensky can't log into accounts | \n\nreceived from: gkzedilm.tkpfumeb@gmail.com... | gkzedilm tkpfumeb | GRP_0 | user jeshyensky can't log into accounts \n\nre... | English |
| 3751 | password reset for mii | password reset for mii\r\n | mktwyzhx zhcenpvt | GRP_0 | password reset for mii password reset for mii\r\n | English |
| 3752 | my phone #, erp, "name or password is incorrec... | i have access to a few systems on erp but i am... | wvaksnpy vnixhytj | GRP_0 | my phone #, erp, "name or password is incorrec... | English |
| 3753 | sfb : personal certificate error | sfb : personal certificate error | eziswfym cehwzojy | GRP_0 | sfb : personal certificate error sfb : person... | Interlingua |
| 3754 | my password is locked when i am trying to go i... | name:nmpworvu upgtrvnj\nlanguage:\nbrowser:mic... | nmpworvu upgtrvnj | GRP_0 | my password is locked when i am trying to go i... | English |
| 3755 | unable to log in to mii | unable to log in to mii | dxgplzyt jutksefr | GRP_0 | unable to log in to mii unable to log in to mii | English |
| 3756 | loading esprit cam software on laptop.... | \r\n\r\nreceived from: jvshydix.rzpmnylt@gmail... | jvshydix rzpmnylt | GRP_3 | loading esprit cam software on laptop.... \r\n... | English |
| 3757 | cannot connect to outlook from home | cannot connect to outlook from home | fecdszvm ovtsxqnl | GRP_3 | cannot connect to outlook from home cannot con... | English |
| 3758 | prpf instead of prir | for usa location and order 226033677, operatio... | entuakhp xrnhtdmk | GRP_41 | prpf instead of prir for usa location and orde... | English |
| 3759 | qipzctgs wjhtbpfr - need network account so he... | qipzctgs wjhtbpfr is onsite in usa at baker. h... | uazkjifp dhtnevcq | GRP_3 | qipzctgs wjhtbpfr - need network account so he... | English |
| 3760 | i cannot access the discount tool | when trying to enter a discount i get the foll... | nbcyhjxg czawdryt | GRP_0 | i cannot access the discount tool when trying ... | English |
| 3761 | confirm threshold qty | if i set confirm qty threshold to 100, it give... | entuakhp xrnhtdmk | GRP_41 | confirm threshold qty if i set confirm qty thr... | English |
| 3762 | performance improvement/tuning | performance improvement/tuning for machine sum... | entuakhp xrnhtdmk | GRP_41 | performance improvement/tuning performance i... | English |
| 3763 | erp SID_34 login issue - terhyury portelance | name:chhyene dolhyt\nlanguage:\nbrowser:micros... | ianqdhmu camoysfq | GRP_0 | erp SID_34 login issue - terhyury portelance ... | English |
| 3764 | vmsliazh ltksxmyv causing high cpu utilization... | we've noticed that the cpu utilization on the ... | dctvfjrn oypnxftq | GRP_1 | vmsliazh ltksxmyv causing high cpu utilization... | English |
| 3765 | outlook addin : crm not showing up. | outlook addin : crm not showing up. | pojhkxua frpxtsca | GRP_0 | outlook addin : crm not showing up. outlook ad... | English |
| 3766 | need acces to erp | \n\nreceived from: umdyvbxo.qwzstijr@gmail.com... | umdyvbxo qwzstijr | GRP_0 | need acces to erp \n\nreceived from: umdyvbxo.... | English |
| 3767 | unable to print expense report | unable to print expense report | csmhykge mpxbjudw | GRP_0 | unable to print expense report unable to print... | English |
| 3768 | password reset | from: microsoft on behalf of company inc. [mai... | goyvcped sxbgiajh | GRP_0 | password reset from: microsoft on behalf of co... | English |
| 3769 | can not create delivery for sto 4908059474 | i had company south_amerirtca look at the sto ... | knabwtox ksbzjdrn | GRP_6 | can not create delivery for sto 4908059474 i h... | English |
| 3770 | create co object for aacount 81469651- plant_2... | is not possible to do gr for delivery 91684375... | jaeuqbvt orlhenfj | GRP_10 | create co object for aacount 81469651- plant_2... | English |
| 3771 | application "hana sidecar prod" on node "HostN... | application "hana sidecar prod" on node "HostN... | rkupnshb gsmzfojw | GRP_14 | application "hana sidecar prod" on node "HostN... | English |
| 3772 | account unlock | account unlock | opzuciql muedfkhz | GRP_0 | account unlock account unlock | English |
| 3773 | vip 2 // erp SID_21 account unlock for user vv... | vip 2 // erp SID_21 account unlock for user vv... | esntuago kwxrdhuv | GRP_0 | vip 2 // erp SID_21 account unlock for user vv... | English |
| 3774 | vip 2 // unable to access collaboration_platform | \nname:brandhyht s muthdyrta\nlanguage:\nbrows... | zanivrec capbfhur | GRP_0 | vip 2 // unable to access collaboration_platfo... | English |
| 3775 | unable to access collaboration_platform | unable to access collaboration_platform | tuyasvzc zmhorudq | GRP_0 | unable to access collaboration_platform unable... | English |
| 3776 | customer master can not be changed. | hello\r\n\r\ncustomer â„–81851756\r\nit change... | uxndyfrs vahxnfgl | GRP_15 | customer master can not be changed. hello\r\n\... | English |
| 3777 | missing ewa reports for SID_51. | i have not received the SID_51 ewa reports for... | drmusvny yvsmtgid | GRP_14 | missing ewa reports for SID_51. i have not re... | English |
| 3778 | vip 2 // unable to access collaboration_platform | vip 2 // unable to access collaboration_platform | ztnpeshl vmdyglqn | GRP_0 | vip 2 // unable to access collaboration_platfo... | English |
| 3779 | unable to access collaboration_platform | unable to access collaboration_platform | qcwoejsk cowdbfkn | GRP_0 | unable to access collaboration_platform unable... | English |
| 3780 | please provide vpn access to ngfedxrp oirmgqcs... | pc is job_scheduler owned, company imaged lapt... | zcdirjeq azokfsdi | GRP_34 | please provide vpn access to ngfedxrp oirmgqcs... | English |
| 3781 | error while qualify a new leadin ms dynamics crm | hi,\r\ni was working in crm and tried to quali... | vkzwafuh tcjnuswg | GRP_40 | error while qualify a new leadin ms dynamics ... | English |
| 3782 | job Job_1394 failed in job_scheduler at: 09/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1394 failed in job_scheduler at: 09/20... | English |
| 3783 | unable to click on claims page of insurance we... | unable to click on claims page of insurance we... | ahuztyxg zlrwshfb | GRP_0 | unable to click on claims page of insurance we... | English |
| 3784 | unable to find any po pending with me | hello,\r\n\r\nam unable to find any po pending... | jmfvwrek pqwehmzg | GRP_29 | unable to find any po pending with me hello,\... | English |
| 3785 | password reset - erp | from: sanmhty mahatndhyua \nsent: tuesday, sep... | slfxjznk hmspexor | GRP_0 | password reset - erp from: sanmhty mahatndhyua... | English |
| 3786 | unable to login to vcenter HostName_795 | unable to login to vcenter HostName_795. | zgemhkby lgwkstcb | GRP_12 | unable to login to vcenter HostName_795 unable... | English |
| 3787 | job kk_uacyltoe hxgaycze failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job kk_uacyltoe hxgaycze failed in job_schedul... | English |
| 3788 | discount form | \r\n\r\nreceived from: sqlcuhep.railgnfb@gmail... | sqlcuhep railgnfb | GRP_0 | discount form \r\n\r\nreceived from: sqlcuhep.... | English |
| 3789 | replication error : domain controller HostName... | we see event ld 1127, 1084 and 2108. which is ... | rutkswpn fouwyqma | GRP_39 | replication error : domain controller HostName... | English |
| 3790 | zredeploy created sto has future committed date | sto created by zredeploy has future committed ... | kaguhxwo uoyipxqg | GRP_6 | zredeploy created sto has future committed dat... | English |
| 3791 | require new driver for local printer. | require new driver for local printer. | sidyuncg ptvogsxa | GRP_0 | require new driver for local printer. require ... | English |
| 3792 | am not able to save a spreadsheet into team do... | need to be able to save several times a day in... | wvqgbdhm fwchqjor | GRP_16 | am not able to save a spreadsheet into team do... | English |
| 3793 | screenshot | \n\nreceived from: gbirhjat.fptbrhwv@gmail.com... | gbirhjat fptbrhwv | GRP_40 | screenshot \n\nreceived from: gbirhjat.fptbrhw... | English |
| 3794 | archiving_tool server - optical archive documents | \r\n\r\nreceived from: seltxfkw.ontgxqwy@gmail... | seltxfkw ontgxqwy | GRP_47 | archiving_tool server - optical archive docume... | English |
| 3795 | erp SID_34 password reset | name:mfeyouli ndobtzpw\nlanguage:\nbrowser:mic... | mfeyouli ndobtzpw | GRP_0 | erp SID_34 password reset name:mfeyouli ndobtz... | English |
| 3796 | job Job_2063b failed in job_scheduler at: 09/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063b failed in job_scheduler at: 09/2... | English |
| 3797 | outlook does not open | outlook does not open | ciszbkoh xozqjavr | GRP_0 | outlook does not open outlook does not open | English |
| 3798 | the shop_floor_app is reporting a : down statu... | observing alert in monitoring_tool since 09:04... | jloygrwh acvztedi | GRP_12 | the shop_floor_app is reporting a : down statu... | English |
| 3799 | clients laptop crashed and will not boot | clients laptop crashed and will not boot | onvpjxei uiolhpjq | GRP_3 | clients laptop crashed and will not boot clien... | English |
| 3800 | account locked | account locked | bjtguqne xthqrzpc | GRP_0 | account locked account locked | English |
| 3801 | in plant_228 EU_tool is not working since friday | we are already in contact with the EU_tool-sys... | zcokibmd xnrthsmj | GRP_25 | in plant_228 EU_tool is not working since frid... | English |
| 3802 | replace monitor in cell 3 with one that tiyhum... | replace monitor in cell 3 with one that tiyhum... | goaxzsql qpjnbgsa | GRP_3 | replace monitor in cell 3 with one that tiyhum... | English |
| 3803 | vip 2: collaboration_platform access problem | \n\nreceived from: kzbuhixt.zjdmoahr@gmail.com... | kzbuhixt zjdmoahr | GRP_0 | vip 2: collaboration_platform access problem \... | English |
| 3804 | collaboration_platform | \n\nreceived from: rxqtvanc.kthqwxvb@gmail.com... | rxqtvanc kthqwxvb | GRP_16 | collaboration_platform \n\nreceived from: rxqt... | English |
| 3805 | replace monitor across from yolktfas fyoxqgvh.... | replace monitor across from yolktfas fyoxqgvh.... | goaxzsql qpjnbgsa | GRP_3 | replace monitor across from yolktfas fyoxqgvh.... | English |
| 3806 | i can not access the company collaboration_pla... | i get an error message indicating "the server ... | yswgzvrc frjzcnsu | GRP_0 | i can not access the company collaboration_pla... | English |
| 3807 | vip2: the hub / collaboration_platform is down | \n\nreceived from: lpoebzsc.grknswyo@gmail.com... | lpoebzsc grknswyo | GRP_0 | vip2: the hub / collaboration_platform is down... | English |
| 3808 | cursors moving in the opposite direction. | cursors moving in the opposite direction.\r\n\r\n | tfbpzgcr ztqkbuic | GRP_0 | cursors moving in the opposite direction. curs... | English |
| 3809 | erp SID_34 account locked. | erp SID_34 account locked. | hzetqwba tmsbnfkh | GRP_0 | erp SID_34 account locked. erp SID_34 account ... | English |
| 3810 | erp password reset for user : lombab<vrcqhnty ... | \nsummary:operator does not know their mii erp... | pxwhlnse hjfzvsoa | GRP_0 | erp password reset for user : lombab<vrcqhnty ... | English |
| 3811 | inc1552016 - ticket update | inc1552016 - ticket update | olckhmvx pcqobjnd | GRP_0 | inc1552016 - ticket update inc1552016 - ticket... | English |
| 3812 | server is busy on collaboration_platform | server is busy on collaboration_platform | ethwnzfb roqytnjk | GRP_0 | server is busy on collaboration_platform serve... | English |
| 3813 | 2 active content versions | we can't open and save 71844588 nxa as there a... | ctvaejbo mjcerqwo | GRP_11 | 2 active content versions we can't open and sa... | English |
| 3814 | vip 2 printer drivers not installing | unsuccessful installing drivers for network pr... | recjqtbg xcyuetmj | GRP_0 | vip 2 printer drivers not installing unsuccess... | English |
| 3815 | company.collaboration_platform.com : applicati... | company.collaboration_platform.com : applicati... | rkupnshb gsmzfojw | GRP_16 | company.collaboration_platform.com : applicati... | English |
| 3816 | drucker em95 defekt | drucker em95 druckt nicht mehr irgend ein fehl... | wyotidgu nydzrtuw | GRP_42 | drucker em95 defekt drucker em95 druckt nicht ... | German |
| 3817 | error message and different views | during working on crm i' m getting exit pop-u... | lmsxcvoz vzhkdpfn | GRP_15 | error message and different views during worki... | English |
| 3818 | wk25 erp drucker druckt nicht sauber. seiten w... | wk25 erp drucker druckt nicht sauber. seiten w... | jcgzqndm hukibzqa | GRP_33 | wk25 erp drucker druckt nicht sauber. seiten w... | German |
| 3819 | vip 2 // unable to sign in to one note as pass... | vip 2 // unable to sign in to one note as pass... | ihozauxs ohdqmipz | GRP_0 | vip 2 // unable to sign in to one note as pass... | English |
| 3820 | account auf iphone löschen und neu anlegen. | da durch den zugriff per iphone auf den mail a... | jxphgfmb gjbtuwek | GRP_24 | account auf iphone löschen und neu anlegen. d... | German |
| 3821 | passwort muß nochmals zurückgestzt werden. | vermutlich hat der zugriff mit dem iphone das ... | jxphgfmb gjbtuwek | GRP_24 | passwort muß nochmals zurückgestzt werden. v... | German |
| 3822 | erp SID_34 password reset request | erp SID_34 password reset request | xgasvhed hesuolmf | GRP_0 | erp SID_34 password reset request erp SID_34 ... | English |
| 3823 | user is unable to open presentation from outlo... | user is unable to open presentation from outlo... | enhjdypo rsbxiepn | GRP_19 | user is unable to open presentation from outlo... | English |
| 3824 | archive emails | old e-mails - they have been archived somewher... | fgljepar xpsarwiz | GRP_0 | archive emails old e-mails - they have been ar... | English |
| 3825 | inc1552901: packet drops in india -1111460708 | \n\nreceived from: mnlazfsr.mtqrkhnx@gmail.com... | mnlazfsr mtqrkhnx | GRP_8 | inc1552901: packet drops in india -1111460708 ... | English |
| 3826 | windows update kb4283716 makes logon the telep... | when users delete the update, it will run the ... | urvitans laqdwvgo | GRP_65 | windows update kb4283716 makes logon the telep... | English |
| 3827 | engineering tool related issue | \r\n\r\nreceived from: zdgxtfqs.tibmhxcs@gmail... | zdgxtfqs tibmhxcs | GRP_25 | engineering tool related issue \r\n\r\nreceive... | English |
| 3828 | one note issue | \r\n\r\nreceived from: lhejbwkc.xbmyvnqf@gmail... | lhejbwkc xbmyvnqf | GRP_16 | one note issue \r\n\r\nreceived from: lhejbwkc... | English |
| 3829 | problem with hagemeyer oci shop in SID_34 purc... | as discussed\r\n | rhinvtua aquyjfbs | GRP_29 | problem with hagemeyer oci shop in SID_34 purc... | English |
| 3830 | cvd amount wrongly generated | \r\n\r\nreceived from: ikerxqwz.prkyuitl@gmail... | ikerxqwz prkyuitl | GRP_10 | cvd amount wrongly generated \r\n\r\nreceived... | English |
| 3831 | reset password in SID_50 - user zigioachstyac | reset password in SID_50 - user zigioachstyac | jaeuqbvt orlhenfj | GRP_2 | reset password in SID_50 - user zigioachstyac ... | English |
| 3832 | bitte im laufwerk germany unter m:\berechnungs... | bitte im laufwerk germany unter m:\berechnungs... | rphoiduv hfbevpir | GRP_12 | bitte im laufwerk germany unter m:\berechnungs... | German |
| 3833 | not able to build distributor_tool project in ... | not able to build distributor_tool project in ... | jdocyzgq gdvmjnso | GRP_2 | not able to build distributor_tool project in ... | English |
| 3834 | awb 0276036761 / sin - jnb | it help,\r\n\r\nfor dn# 9169292812, the post c... | ovhtgsxd dcqhnrmy | GRP_18 | awb 0276036761 / sin - jnb it help,\r\n\r\nfor... | English |
| 3835 | rma process fault in erp | hello,\r\n\r\n\r\ncould you please resolve the... | iwazgesl ydgqtpbo | GRP_18 | rma process fault in erp hello,\r\n\r\n\r\ncou... | English |
| 3836 | engineering_tool update | \r\n\r\nreceived from: xwertljy.zrmlhkyq@gmail... | xwertljy zrmlhkyq | GRP_25 | engineering_tool update \r\n\r\nreceived from:... | English |
| 3837 | zugriff auf verlauf m:\skv-alicona. | hallo ,\n\nfolgende mitarbeiter benötigen zug... | hqyfebtd pkmyrdga | GRP_24 | zugriff auf verlauf m:\skv-alicona. hallo ,\n\... | German |
| 3838 | erp user profile for pthsqroz moedyanvess | i need to complete a npc task in erp, but i ge... | juqpaxry ulqfbiog | GRP_2 | erp user profile for pthsqroz moedyanvess i ne... | English |
| 3839 | HostName_1132: web tier (epmsystem2) & java se... | HostName_1132 : oracle finance_app financial m... | rkupnshb gsmzfojw | GRP_12 | HostName_1132: web tier (epmsystem2) & java se... | English |
| 3840 | drucker em26 geht nicht mehr | drucker em26 geht nicht mehr trotz mehrere dru... | djilqgmw bidchqsg | GRP_42 | drucker em26 geht nicht mehr drucker em26 geht... | German |
| 3841 | unable to launch erp | unable to launch erp | sqgvrmhy eypjuowq | GRP_28 | unable to launch erp unable to launch erp | English |
| 3842 | need access to emails of qiscgfjv.kxfdsijv@gma... | need access to emails of qiscgfjv.kxfdsijv@gma... | khrflgcj zxojidhe | GRP_26 | need access to emails of qiscgfjv.kxfdsijv@gma... | English |
| 3843 | rickjdt has confirmed that the password is wor... | rickjdt has confirmed that the password is wor... | jxphgfmb gjbtuwek | GRP_0 | rickjdt has confirmed that the password is wor... | English |
| 3844 | bitte um freigabe von m:\skv-alicona. | bitte um freigabe von m:\skv-alicona. /hnyeajr... | hnyeajrw ctxjsolz | GRP_12 | bitte um freigabe von m:\skv-alicona. bitte um... | German |
| 3845 | brauche freigabe für m:\skv-alicona. | brauche freigabe für m:\skv-alicona. /hgrvubz... | hgrvubzo wgyhktic | GRP_12 | brauche freigabe für m:\skv-alicona. brauche ... | German |
| 3846 | erp SID_34 password reset | erp SID_34 password reset | ylhukdof fiymhdnw | GRP_0 | erp SID_34 password reset erp SID_34 password... | English |
| 3847 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 3848 | brauche freigabe für m:\skv-alicona. | brauche freigabe für m:\skv-alicona. /lxfnwyu... | lxfnwyuv bqmjyprz | GRP_12 | brauche freigabe für m:\skv-alicona. brauche ... | German |
| 3849 | bitte freigabe für m:\skv-alicona einrichten. | bitte freigabe für m:\skv-alicona einrichten.... | nfybpxdg yjtdkfuo | GRP_12 | bitte freigabe für m:\skv-alicona einrichten.... | German |
| 3850 | bitte freigabe für m:\skv-alicona einrichten. | bitte freigabe für m:\skv-alicona einrichten.... | rhaycqjg arcgonvy | GRP_12 | bitte freigabe für m:\skv-alicona einrichten.... | German |
| 3851 | www.company.com web site - engineering_tool "p... | mikhghytr kinsella has reported that the "pro... | jyervicn ckujvgri | GRP_51 | www.company.com web site - engineering_tool "p... | English |
| 3852 | erp & other internet service are slow for all ... | erp & other internet service are slow for all ... | ythucdjx mujfrsyl | GRP_4 | erp & other internet service are slow for all ... | English |
| 3853 | ainw8911993 new india patching_antivirus_sw de... | this pc is offline since 30th aug. | fohvgnkd stfmcapj | GRP_19 | ainw8911993 new india patching_antivirus_sw de... | English |
| 3854 | unable to download engineering_tools . | \r\n\r\nreceived from: vkezwolt.fgnqzeai@gmail... | vkezwolt fgnqzeai | GRP_25 | unable to download engineering_tools . \r\n\r\... | English |
| 3855 | job Job_3182 failed in job_scheduler at: 09/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3182 failed in job_scheduler at: 09/20... | English |
| 3856 | bitte die drucker umstellen und konfigurieren | bitte die drucker umstellen und konfigurieren ... | vaigycet jtgmpdcr | GRP_24 | bitte die drucker umstellen und konfigurieren ... | German |
| 3857 | error message during route card release | \n\nreceived from: phqwmniy.kjucgqom@gmail.com... | phqwmniy kjucgqom | GRP_45 | error message during route card release \n\nre... | English |
| 3858 | erp net weaver funktioniert nicht. pc: empw700... | erp net weaver funktioniert nicht. pc: empw700... | txkgmwbc qohmgwrp | GRP_0 | erp net weaver funktioniert nicht. pc: empw700... | German |
| 3859 | telefon defekt. gigaset charger for sl3 profes... | ft584095 octophon sl3 prof. ladeschale mnr 513... | txkgmwbc qohmgwrp | GRP_33 | telefon defekt. gigaset charger for sl3 profes... | German |
| 3860 | wrong printing on awa voucher inwarehouse_tools | hello, when awa 81408476 - order with voucher ... | frtwncbv yvxrspqo | GRP_13 | wrong printing on awa voucher inwarehouse_tool... | English |
| 3861 | erp frequent disconnections | \r\n\r\nreceived from: rgtarthi.erjgypa@compan... | xqoljzbh aydcwkxt | GRP_4 | erp frequent disconnections \r\n\r\nreceived f... | English |
| 3862 | unable to login to windows | unable to login to windows \nerror :- domain c... | zfhqxjms ztfcobhy | GRP_19 | unable to login to windows unable to login to... | English |
| 3863 | windows account locked | windows account locked | fdbgoamk hygxzkla | GRP_0 | windows account locked windows account locked | English |
| 3864 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 3865 | erp SID_34 password reset. | erp SID_34 password reset. | wakqbrfx olynbudg | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 3866 | job Job_2406b failed in job_scheduler at: 09/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2406b failed in job_scheduler at: 09/2... | English |
| 3867 | passwort ist abgelaufen. bitte reset einleiten... | passwort ist abgelaufen. bitte reset einleiten... | jxphgfmb gjbtuwek | GRP_24 | passwort ist abgelaufen. bitte reset einleiten... | German |
| 3868 | erp SID_1 access | while starting erp SID_1 i get an error logon ... | urvitans laqdwvgo | GRP_0 | erp SID_1 access while starting erp SID_1 i ge... | English |
| 3869 | india kirty, packet drops on telecom_vendor_1 ... | india kirty, packet drops on telecom_vendor_1 ... | mnlazfsr mtqrkhnx | GRP_8 | india kirty, packet drops on telecom_vendor_1 ... | English |
| 3870 | erp business_client ä¸èƒ½ä½¿ç”¨ï¼Œæ›´æ–°msdot... | æ›´æ–°msdotnet_461_business_client_50_SID_792 . | okebwncv zyxvwkpn | GRP_31 | erp business_client ä¸èƒ½ä½¿ç”¨ï¼Œæ›´æ–°msdot... | English |
| 3871 | please check order# 35042103 - voucher v-00011418 | the order header is showing this voucher code,... | hbmwlprq ilfvyodx | GRP_13 | please check order# 35042103 - voucher v-00011... | English |
| 3872 | HostName_894 : volume: c:\ label:sys-HostName_... | HostName_894 : volume: c:\ label:sys-HostName_... | spxqmiry zpwgoqju | GRP_39 | HostName_894 : volume: c:\ label:sys-HostName_... | English |
| 3873 | request | \n\nreceived from: yxliakph.soucfnqe@gmail.com... | yxliakph soucfnqe | GRP_0 | request \n\nreceived from: yxliakph.soucfnqe@g... | English |
| 3874 | i can't reiceve e-mail form my mobile phone. | could you reset my company mobile phone. detai... | wmrozfpt ltgcofqp | GRP_0 | i can't reiceve e-mail form my mobile phone. c... | English |
| 3875 | cant create a delivery note for a stock transfer | SID_34\r\ncreate a delivery note for mm6339959... | qpiojxcl dxkcljew | GRP_6 | cant create a delivery note for a stock transf... | English |
| 3876 | add printer ag25 10.165.44.227 | \r\n\r\nreceived from: sbgvrncj.idfhtoqv@gmail... | sbgvrncj idfhtoqv | GRP_0 | add printer ag25 10.165.44.227 \r\n\r\nreceiv... | English |
| 3877 | telephony_software - description | telephony_software - department description\... | atlwdyej vtlhzbix | GRP_0 | telephony_software - description telephony_s... | English |
| 3878 | please fix the issues mentioned under descript... | 1) sm21 - transaction canceled fp 045 ( vbkpf ... | mnxbeuso rfmdlwuo | GRP_14 | please fix the issues mentioned under descript... | English |
| 3879 | erp ticket | erp ticket | nemzycxb xpsgkahw | GRP_0 | erp ticket erp ticket | English |
| 3880 | wireless access companyguest request | \n\nreceived from: sbgvrncj.idfhtoqv@gmail.com... | sbgvrncj idfhtoqv | GRP_0 | wireless access companyguest request \n\nrecei... | English |
| 3881 | vsbhyrt is unable to open eng engineering too... | vsbhyrt is unable to open eng engineering too... | rmdtqfxa fwpnqdxo | GRP_0 | vsbhyrt is unable to open eng engineering too... | English |
| 3882 | unable to browse company collaboration_platfor... | unable to browse company collaboration_platfor... | tfaweyjd mdzrgxij | GRP_19 | unable to browse company collaboration_platfor... | English |
| 3883 | job Job_1148 failed in job_scheduler at: 09/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 09/20... | English |
| 3884 | reset password for erp SID_34 production - use... | \r\n\r\nreceived from: wyxqkzmf.urigtqnp@gmail... | wyxqkzmf urigtqnp | GRP_0 | reset password for erp SID_34 production - use... | English |
| 3885 | he is not able to click on the icons. | he is not able to click on the icons. he is ab... | spxqmiry zpwgoqju | GRP_12 | he is not able to click on the icons. he is no... | English |
| 3886 | re: ticket_no1551447 -- comments added | \n\nreceived from: peuckbvr.tjihmgsv@gmail.com... | peuckbvr tjihmgsv | GRP_0 | re: ticket_no1551447 -- comments added \n\nrec... | English |
| 3887 | unable to login to engineering tool | unable to login to engineering tool | hzetqwba tmsbnfkh | GRP_0 | unable to login to engineering tool unable to... | English |
| 3888 | beim benutzer klarp am pc evhw8114323 funktion... | er hat sich bereits am pc evhw8114113 geuacylt... | dtrvxiuq bwuqdtfo | GRP_0 | beim benutzer klarp am pc evhw8114323 funktion... | German |
| 3889 | unable to login to erp SID_34 account | unable to login to erp SID_34 account | mjsetabg oiurnzaq | GRP_0 | unable to login to erp SID_34 account unable ... | English |
| 3890 | job Job_1330 failed in job_scheduler at: 09/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1330 failed in job_scheduler at: 09/20... | English |
| 3891 | windows account locked | windows account locked | ecpkblrs buzgjypk | GRP_0 | windows account locked windows account locked | English |
| 3892 | erp SID_34 account locked | erp SID_34 account locked | xnmgsawf bwghcmxq | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 3893 | crm portal login issue_ kxmidsga zokivdfa | \r\n\r\nreceived from: kxmidsga.zokivdfa@gmail... | kxmidsga zokivdfa | GRP_22 | crm portal login issue_ kxmidsga zokivdfa \r\n... | English |
| 3894 | job Job_1141 failed in job_scheduler at: 09/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1141 failed in job_scheduler at: 09/19... | English |
| 3895 | computer running slow | computer running slow | uaevikhj uazfcwgm | GRP_31 | computer running slow computer running slow | English |
| 3896 | erp | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_14 | erp \r\n\r\nreceived from: hmjdrvpb.komuaywn@... | English |
| 3897 | shipping dashbankrd - data/information not dis... | shipping dashbankrd - tabs which have data ref... | upfthmjx fdxrpqat | GRP_9 | shipping dashbankrd - data/information not dis... | English |
| 3898 | vpn not working- vpn.company.com link is givi... | vpn not working- vpn.company.com link is givi... | kailyenh zfyvkopr | GRP_0 | vpn not working- vpn.company.com link is givi... | English |
| 3899 | job Job_2555 failed in job_scheduler at: 09/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_2555 failed in job_scheduler at: 09/19... | English |
| 3900 | problems with ap vpn | \r\n\r\nreceived from: elixsfvu.pxwbjofl@gmail... | elixsfvu pxwbjofl | GRP_0 | problems with ap vpn \r\n\r\nreceived from: el... | English |
| 3901 | kis documents will not generate because the st... | kis documents will not generate because the st... | lzspyjki smdbqnef | GRP_18 | kis documents will not generate because the st... | English |
| 3902 | wrong unit price on inwarehouse_tool | \r\n\r\nreceived from: ovhtgsxd.dcqhnrmy@gmail... | ovhtgsxd dcqhnrmy | GRP_13 | wrong unit price on inwarehouse_tool \r\n\r\n... | English |
| 3903 | ç”µè„‘æ— æ³•è¿žæŽ¥å…¬å…±ç›˜ï¼Œè¯·å¸®æˆ‘è½¬ç»™å... | ç”µè„‘æ— æ³•è¿žæŽ¥å…¬å…±ç›˜ï¼Œè¯·å¸®æˆ‘è½¬ç»™å... | basqoyjx frvwhbse | GRP_30 | ç”µè„‘æ— æ³•è¿žæŽ¥å…¬å…±ç›˜ï¼Œè¯·å¸®æˆ‘è½¬ç»™å... | English |
| 3904 | usa pc companyst-apc-01 in the pvd area cannot... | usa pc companyst-apc-01 in the pvd area needs ... | kdjfhwua arfpnhbj | GRP_3 | usa pc companyst-apc-01 in the pvd area cannot... | English |
| 3905 | vpn not working- vpn.company.com link is givi... | vpn not working- vpn.company.com link is givi... | hybiaxlk lawptzir | GRP_0 | vpn not working- vpn.company.com link is givi... | English |
| 3906 | The | -user unable tologin to vpn.\r\n-connected to... | awpcmsey ctdiuqwe | GRP_0 | The -user unable tologin to vpn.\r\n-connecte... | English |
| 3907 | i am not able to log into my vpn. when i am tr... | name:mehrugshy\nlanguage:\nbrowser:microsoft i... | dcvphjru ybomrjst | GRP_0 | i am not able to log into my vpn. when i am tr... | English |
| 3908 | vpn not working- vpn.company.com link is givi... | vpn not working- vpn.company.com link is givi... | kailyenh zfyvkopr | GRP_0 | vpn not working- vpn.company.com link is givi... | English |
| 3909 | vpn not working- vpn.company.com link is givi... | vpn not working- vpn.company.com link is givi... | ajgnibkx zixmcjgu | GRP_0 | vpn not working- vpn.company.com link is givi... | English |
| 3910 | The | -user unable tologin to vpn.\r\n-connected to... | rhwsmefo tvphyura | GRP_0 | The -user unable tologin to vpn.\r\n-connecte... | English |
| 3911 | vpn connectivity | \r\n\r\nreceived from: gmrxwqlf.vzacdmbj@gmail... | gmrxwqlf vzacdmbj | GRP_0 | vpn connectivity \r\n\r\nreceived from: gmrxwq... | English |
| 3912 | referencing ticket ticket_no1499477. customer ... | please revisit ticket ticket_no1499477 and rev... | xnqzhtwu hivumtfz | GRP_20 | referencing ticket ticket_no1499477. customer ... | English |
| 3913 | vpn not working- vpn.company.com link is givi... | vpn not working- vpn.company.com link is givi... | objrkcwe zamgitwx | GRP_0 | vpn not working- vpn.company.com link is givi... | English |
| 3914 | vpn not working- vpn.company.com link is givi... | vpn not working- vpn.company.com link is givi... | jborwynt gidxbfrq | GRP_0 | vpn not working- vpn.company.com link is givi... | English |
| 3915 | The | -user unable tologin to vpn.\r\n-connected to... | hxripljo efzounig | GRP_0 | The -user unable tologin to vpn.\r\n-connecte... | English |
| 3916 | unable to access na vpn | when i click on "click here" to enter a new se... | gakceqyb edrjthvo | GRP_0 | unable to access na vpn when i click on "click... | English |
| 3917 | vpn | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | vpn \n\nreceived from: oetlgbfw.bsctrnwp@gmai... | English |
| 3918 | vpn not working- vpn.company.com link is givi... | vpn not working- vpn.company.com link is givi... | sntvfpbl vtokgley | GRP_0 | vpn not working- vpn.company.com link is givi... | English |
| 3919 | germany steel plant the programdnty EU_tool d... | name:cfokqnhz notxygdz\nlanguage:\nbrowser:mic... | cfokqnhz notxygdz | GRP_25 | germany steel plant the programdnty EU_tool d... | English |
| 3920 | vpn not working | vpn not working | elphfvdt ileozacs | GRP_0 | vpn not working vpn not working | English |
| 3921 | The | -user unable tologin to vpn.\r\n-connected to... | cziadygo veiosxby | GRP_0 | The -user unable tologin to vpn.\r\n-connecte... | English |
| 3922 | vpn login issue. | vpn login issue.\r\n-user unable tologin to v... | suyighpt wifujdvq | GRP_0 | vpn login issue. vpn login issue.\r\n-user una... | English |
| 3923 | user unable tologin to vpn. | name:lizhwdoe mjudivse\nlanguage:\nbrowser:mic... | lizhwdoe mjudivse | GRP_0 | user unable tologin to vpn. name:lizhwdoe mju... | English |
| 3924 | The | name:wvqgbdhm fwchqjor\nlanguage:\nbrowser:mic... | wvqgbdhm fwchqjor | GRP_0 | The name:wvqgbdhm fwchqjor\nlanguage:\nbrowser... | English |
| 3925 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | zyxjagro vjgozhpn | GRP_0 | error login on to the SID_34 system. error log... | English |
| 3926 | my distributor_tool account is not working ! m... | my distributor_tool account is not working ! m... | kzbrimwx dconpwbu | GRP_0 | my distributor_tool account is not working ! m... | English |
| 3927 | access to tjlizqgc ngvwoukp' calendars | name:xmeytziq dcgwuvfk\nlanguage:\nbrowser:mic... | xmeytziq dcgwuvfk | GRP_0 | access to tjlizqgc ngvwoukp' calendars name:x... | English |
| 3928 | unable to see name in engineering_tool | unable to see name in engineering_tool | rbozivdq gmlhrtvp | GRP_0 | unable to see name in engineering_tool unable ... | English |
| 3929 | ticket update on inplant_861712 | ticket update on inplant_861712 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_861712 ticket update ... | English |
| 3930 | mii password reset | name:itclukpe aimcfeko\nlanguage:\nbrowser:mic... | wpcatozg roceshun | GRP_0 | mii password reset name:itclukpe aimcfeko\nlan... | English |
| 3931 | crm add-in for outlook | \r\n\r\nreceived from: pnhlrfao.ivjxlyfz@gmail... | pnhlrfao ivjxlyfz | GRP_0 | crm add-in for outlook \r\n\r\nreceived from: ... | English |
| 3932 | password reset for zqbgmfle.wrkmieao@gmail.com | password reset for zqbgmfle.wrkmieao@gmail.com | nivqoxyt ivrhjmnx | GRP_0 | password reset for zqbgmfle.wrkmieao@gmail.com... | English |
| 3933 | ticket update on inplant_861691 | ticket update on inplant_861691 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_861691 ticket update ... | English |
| 3934 | distributor_tool and engineering_tool do not s... | distributor_tool and engineering_tool do not s... | hwfrvpbc thofnixk | GRP_21 | distributor_tool and engineering_tool do not s... | English |
| 3935 | unable to connect to ca07 printer | unable to connect to ca07 printer | skxfydnr cdgrsqnw | GRP_0 | unable to connect to ca07 printer unable to co... | English |
| 3936 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | udhsyljz cogbript | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 3937 | re: ticket_no1551447 -- comments added | \r\n\r\nreceived from: svlcqmnb.qlwerhxt@gmail... | svlcqmnb qlwerhxt | GRP_53 | re: ticket_no1551447 -- comments added \r\n\r\... | English |
| 3938 | csqe - automatic knowledge base sync | we want to setup erp to automatically sync and... | iqtynrbf fyvjpbui | GRP_14 | csqe - automatic knowledge base sync we want t... | English |
| 3939 | cannot print anymore on tc78 | printer is asking for trusted source and drive... | dtnhwjve tqdhvazx | GRP_0 | cannot print anymore on tc78 printer is asking... | English |
| 3940 | locked out on the crm account | locked out on the crm account | ihozauxs ohdqmipz | GRP_0 | locked out on the crm account locked out on th... | English |
| 3941 | access to drawings in net weaver | name:jashyht mkuhtyhui\nlanguage:\nbrowser:mic... | jhxwiply midhcnze | GRP_0 | access to drawings in net weaver name:jashyht ... | English |
| 3942 | crm - outlook | \r\n\r\nreceived from: uvorgwts.mlqzaicb@gmail... | uvorgwts mlqzaicb | GRP_0 | crm - outlook \r\n\r\nreceived from: uvorgwts... | English |
| 3943 | crm/outlook | \n\nreceived from: zolnubvq.ehrqifxp@gmail.com... | zolnubvq ehrqifxp | GRP_0 | crm/outlook \n\nreceived from: zolnubvq.ehrqif... | English |
| 3944 | crm add-in / outlook | \r\n\r\nreceived from: mdbegvct.dbvichlg@gmail... | mdbegvct dbvichlg | GRP_0 | crm add-in / outlook \r\n\r\nreceived from: md... | English |
| 3945 | crm addin in outook | i need to have crm addin in outlook to perform... | ufxdkqbc uehvxmfy | GRP_0 | crm addin in outook i need to have crm addin ... | English |
| 3946 | ticket update on inplant_861658 | ticket update on inplant_861658 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_861658 ticket update ... | English |
| 3947 | sent items folder not showing up in outlook. | sent items folder not showing up in outlook. | vyluaepi dtwfaejr | GRP_0 | sent items folder not showing up in outlook. s... | English |
| 3948 | job Job_3045_ap failed in job_scheduler at: 09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_45 | job Job_3045_ap failed in job_scheduler at: 09... | English |
| 3949 | unable to fill the expense report form for emp... | unable to fill the expense report form for emp... | xziwkgeo gdiraveu | GRP_2 | unable to fill the expense report form for emp... | English |
| 3950 | quotation printing incorrect voucher discount | see attached example - 3116245007. discount a... | pfzxecbo ptygkvzl | GRP_13 | quotation printing incorrect voucher discount ... | English |
| 3951 | ticket_no1543461 - ticket update | ticket_no1543461 - ticket update | olckhmvx pcqobjnd | GRP_0 | ticket_no1543461 - ticket update ticket_no1543... | English |
| 3952 | sfb issue | \nsummary:unable to log into skype calls | tjyoheic eyuwsgld | GRP_0 | sfb issue \nsummary:unable to log into skype ... | English |
| 3953 | ticket_no1546770 - ticket update | ticket_no1546770 - ticket update | olckhmvx pcqobjnd | GRP_0 | ticket_no1546770 - ticket update ticket_no1546... | English |
| 3954 | update on ticket_no1542996 | update on ticket_no1542996 | rbozivdq gmlhrtvp | GRP_0 | update on ticket_no1542996 update on ticket_n... | English |
| 3955 | reset password for hana systems SID_60,SID_59 ... | reset password for hana systems SID_60,SID_59 ... | xagyhbio jvrdnpkh | GRP_53 | reset password for hana systems SID_60,SID_59 ... | English |
| 3956 | please delete sm35 job | same issue as inc1512788\r\n\r\nplease delete ... | mvwiygou rpkscnlv | GRP_5 | please delete sm35 job same issue as inc151278... | English |
| 3957 | sandplant_162 - fc9/15 · drlab HostName_1... | sandplant_162 - fc9/15 · drlab HostName_1... | rkupnshb gsmzfojw | GRP_8 | sandplant_162 - fc9/15 · drlab HostName_1... | English |
| 3958 | terhyury jerhtyua, employee of usa, is locked ... | terhyury jerhtyua, employee of usa, is locked ... | epivntxc fdrxmuga | GRP_0 | terhyury jerhtyua, employee of usa, is locked ... | English |
| 3959 | schdule name:"final" in job_scheduler :batch j... | schdule name:"final" in job_scheduler :batch j... | jloygrwh acvztedi | GRP_8 | schdule name:"final" in job_scheduler :batch j... | English |
| 3960 | sfb issue | can't access skype for business 2015\r\ncomes ... | iwtvrhnz rxiumhfk | GRP_0 | sfb issue can't access skype for business 201... | English |
| 3961 | security incidents - ( #in33805815) : possible... | =========================\r\nevent data\r\n===... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33805815) : possible... | English |
| 3962 | access point company_ita_company_milano_ap05 i... | ip 83.43.63.0179\r\nblue light blinking\r\ndoe... | ziwkespl dyehbrst | GRP_4 | access point company_ita_company_milano_ap05 i... | English |
| 3963 | t&d inwarehouse_tool 0512678028 - pricing error | hi,\r\n\r\nplease refer below mail from branch... | iwqfelcu gsubfiml | GRP_13 | t&d inwarehouse_tool 0512678028 - pricing erro... | English |
| 3964 | windows password reset | windows password reset | afijkocw rjtxslpa | GRP_0 | windows password reset windows password reset | English |
| 3965 | security incidents - ( #in33809307 ) : possibl... | source ip :195.22.28.222 \nsystem name :androi... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33809307 ) : possibl... | English |
| 3966 | user switzerlandim blocked in netweaver | \r\n\r\nreceived from: vogtfyne.isugmpcn@gmail... | xeoycjsu iuasmloj | GRP_0 | user switzerlandim blocked in netweaver \r\n\r... | English |
| 3967 | please install ms visio std on the clients pc | please install ms visio std on the clients pc | unzfykar osxmbhav | GRP_3 | please install ms visio std on the clients pc ... | English |
| 3968 | reset passwords for dwfiykeo argtxmvcumar usin... | i have been locked out of SID_39, client 120 f... | pxsghrjd wiehqmka | GRP_17 | reset passwords for dwfiykeo argtxmvcumar usin... | English |
| 3969 | software request - visio | need visio installed on my laptop. | unzfykar osxmbhav | GRP_3 | software request - visio need visio installed ... | English |
| 3970 | unable to connect to skype | unable to connect to skype | ksgytjqr ojdukgzc | GRP_0 | unable to connect to skype unable to connect ... | English |
| 3971 | connection issues with secomea site manager | well i have fighting with this all week. our s... | sxzuctga qnwhyapd | GRP_4 | connection issues with secomea site manager we... | English |
| 3972 | kein zugriff auf zeiterfassung und sonstiges n... | kein zugriff auf zeiterfassung und sonstiges n... | spdczoth vajtodny | GRP_24 | kein zugriff auf zeiterfassung und sonstiges n... | German |
| 3973 | outlook does not start. | outlook does not start. | sghamujc shompueb | GRP_0 | outlook does not start. outlook does not start. | English |
| 3974 | vfx3 billing errors | please see the attached screen print for vfx3 ... | slkxgzdj wxpytevu | GRP_13 | vfx3 billing errors please see the attached sc... | English |
| 3975 | mobile device activation | mobile device activation | lhycpqra fdhyxqrw | GRP_0 | mobile device activation mobile device activation | English |
| 3976 | power supply issue for pwr8hmc1.hq.company.com... | power supply issue for pwr8hmc1.hq.company.com... | rkupnshb gsmzfojw | GRP_8 | power supply issue for pwr8hmc1.hq.company.com... | English |
| 3977 | issue with symantec endpoint protection | i have 4 warning messages on my symantec endpo... | dctvfjrn oypnxftq | GRP_50 | issue with symantec endpoint protection i have... | English |
| 3978 | trying to get the status of ticket number tick... | name:erirtc\nlanguage:\nbrowser:microsoft inte... | ntsowaem jfgslyde | GRP_0 | trying to get the status of ticket number tick... | English |
| 3979 | windows account lockout | windows account lockout | vyjmlain hvjbmdgi | GRP_0 | windows account lockout windows account lockout | English |
| 3980 | unable to connect to mobile broadband | unable to connect to mobile broadband | ksgytjqr ojdukgzc | GRP_0 | unable to connect to mobile broadband unable ... | English |
| 3981 | monitor not working. | monitor not working. | mknoeicg aziptqvu | GRP_3 | monitor not working. monitor not working. | English |
| 3982 | need mouse replacement | need mouse replacement \r\nltcw7406044 | dxgyefir rczsatqu | GRP_3 | need mouse replacement need mouse replacement... | English |
| 3983 | maus funktioniert nicht mehr richtig. bitte er... | maus funktioniert nicht mehr richtig. bitte er... | howfanzi siavgtby | GRP_24 | maus funktioniert nicht mehr richtig. bitte er... | German |
| 3984 | brauche eine neue funktionierende maus. | brauche eine neue funktionierende maus. /tkhay... | tkhaymqg cwuqzyvm | GRP_24 | brauche eine neue funktionierende maus. brauch... | German |
| 3985 | unable to load outlook due to crm | unable to load outlook due to crm | ksgytjqr ojdukgzc | GRP_0 | unable to load outlook due to crm unable to lo... | English |
| 3986 | smart phone issue | my iphone 6 now has a reduced ear speaker(?). ... | ndyrowef biwecrgx | GRP_0 | smart phone issue my iphone 6 now has a reduce... | English |
| 3987 | keine anmeldung auf skype möglich | keine anmeldung auf skype möglich /vzqomdgt j... | vzqomdgt jwoqbuml | GRP_24 | keine anmeldung auf skype möglich keine anmel... | German |
| 3988 | employee owned mobility agreement | \r\n\r\nreceived from: clzwduvj.keflinbj@gmail... | clzwduvj keflinbj | GRP_0 | employee owned mobility agreement \r\n\r\nrece... | English |
| 3989 | no response from caller | no response from caller | fumkcsji sarmtlhy | GRP_0 | no response from caller no response from caller | English |
| 3990 | i need to know the members in lhqftphfm* | i need to know the members in lhqftphfm*. cou... | ljyfsaox paxockls | GRP_2 | i need to know the members in lhqftphfm* i nee... | English |
| 3991 | account locked out on bex | account locked out on bex | tyuhfljp zyjfpgtk | GRP_0 | account locked out on bex account locked out o... | English |
| 3992 | outlook is not working . i've updated the sp 2... | outlook is not working . i've updated the sp 2... | hnueblym pxfqkrye | GRP_0 | outlook is not working . i've updated the sp 2... | English |
| 3993 | please setup printers dg04 and dg08 on HostNam... | please setup printers dg04 and dg08 on HostNam... | glnfyoqe fexlisau | GRP_12 | please setup printers dg04 and dg08 on HostNam... | English |
| 3994 | printer's won't update their driver | i cannot print at all the status of the printe... | amylzuog irtsuqey | GRP_0 | printer's won't update their driver i cannot p... | English |
| 3995 | printer problem (reroute) / issue information | hi team, \r\n\r\n\r\ncould you please route t... | qasdhyzm yuglsrwx | GRP_8 | printer problem (reroute) / issue information ... | English |
| 3996 | account locked in ad | account locked in ad | xandvryi jcsnqxpt | GRP_0 | account locked in ad account locked in ad | English |
| 3997 | tonerpatrone em01 / germany alle | \r\n\r\nreceived from: yzodcxkn.zyewibop@gmail... | yzodcxkn zyewibop | GRP_42 | tonerpatrone em01 / germany alle \r\n\r\nrecei... | German |
| 3998 | bitte guest wifi fuer gastronomie fuer eine ja... | bitte guest wifi fuer gastronomie fuer eine ja... | gosqphkl grmuhwix | GRP_0 | bitte guest wifi fuer gastronomie fuer eine ja... | German |
| 3999 | ticket update - inplant_859150 | ticket update - inplant_859150 | olckhmvx pcqobjnd | GRP_0 | ticket update - inplant_859150 ticket update -... | English |
| 4000 | password_management_tool account unlock | password_management_tool account unlock | lkfzibrx ljnabpgx | GRP_0 | password_management_tool account unlock passwo... | English |
| 4001 | job Job_577_dr4100 failed in job_scheduler at:... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_577_dr4100 failed in job_scheduler at:... | English |
| 4002 | job Job_575 failed in job_scheduler at: 09/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_575 failed in job_scheduler at: 09/19/... | English |
| 4003 | unable to received incoming email | hi it team\n\nkindly please assist, user kassi... | rxoynvgi ntgdsehl | GRP_0 | unable to received incoming email hi it team\n... | English |
| 4004 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | tavsikpl dcrkwuny | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 4005 | job bkbackup_tool_sql_prod_inc failed in job_s... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_sql_prod_inc failed in job_s... | English |
| 4006 | unable to loginto skype | unable to loginto skype | hlcujyed hqfolasz | GRP_0 | unable to loginto skype unable to loginto skype | Latin |
| 4007 | need assistance - cannot login to engineering ... | need assistance - cannot login to engineering ... | sjeryqba rwtxpzku | GRP_28 | need assistance - cannot login to engineering ... | English |
| 4008 | add user maghtyion cnjkeko (cekomthyr) to acti... | add user maghtyion cnjkeko (cekomthyr) to acti... | skocrqdw pexcdfao | GRP_0 | add user maghtyion cnjkeko (cekomthyr) to acti... | English |
| 4009 | job Job_3181 failed in job_scheduler at: 09/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3181 failed in job_scheduler at: 09/19... | English |
| 4010 | job Job_459 failed in job_scheduler at: 09/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_459 failed in job_scheduler at: 09/19/... | English |
| 4011 | network problems (multiple applications are ru... | hi manjgtiry,\r\n\r\n | mcytlpva jutxbdor | GRP_0 | network problems (multiple applications are ru... | English |
| 4012 | job Job_499 failed in job_scheduler at: 09/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_499 failed in job_scheduler at: 09/19/... | English |
| 4013 | job Job_465 failed in job_scheduler at: 09/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_465 failed in job_scheduler at: 09/19/... | English |
| 4014 | job bwhrattr failed in job_scheduler at: 09/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 09/19... | English |
| 4015 | pls help to create delivery note for sto 49081... | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_6 | pls help to create delivery note for sto 49081... | English |
| 4016 | job Job_593 failed in job_scheduler at: 09/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/19/... | English |
| 4017 | cannot create engineering tool task for er, | cannot create engineering tool task for er, pl... | scievjwr cdlsvoif | GRP_25 | cannot create engineering tool task for er, c... | English |
| 4018 | erp systems are slow in plant | erp systems are slow in plant\nall erp users i... | ouqzfajm pioneqcg | GRP_0 | erp systems are slow in plant erp systems are ... | English |
| 4019 | vip 2: access to company guest from 19 septemb... | \n\nreceived from: sbgvrncj.idfhtoqv@gmail.com... | sbgvrncj idfhtoqv | GRP_0 | vip 2: access to company guest from 19 septemb... | English |
| 4020 | network problems (multiple applications are ru... | how did you determine there are network proble... | jgmlbxns pxjsdwrk | GRP_14 | network problems (multiple applications are ru... | English |
| 4021 | laptop speakers not working. mic not working d... | head set input jack no longer ask questions du... | jgautdmk fpurxzew | GRP_0 | laptop speakers not working. mic not working d... | English |
| 4022 | unable to login to skype | unable to login to skype \nm | yjwivxsh fcetobrj | GRP_19 | unable to login to skype unable to login to s... | English |
| 4023 | infotype 17 has been deleted for huge number o... | we are facing huge issues that german traveler... | ipwjorsc uboapexr | GRP_10 | infotype 17 has been deleted for huge number o... | English |
| 4024 | HostName_894 : volume: c:\ label:sys-HostName_... | HostName_894 : volume: c:\ label:sys-HostName_... | spxqmiry zpwgoqju | GRP_39 | HostName_894 : volume: c:\ label:sys-HostName_... | English |
| 4025 | apusm00 : volume: f:\ label:dat2-HostName_53 d... | apusm00 : volume: f:\ label:dat2-HostName_53 d... | spxqmiry zpwgoqju | GRP_12 | apusm00 : volume: f:\ label:dat2-HostName_53 d... | English |
| 4026 | network problems (multiple applications are ru... | how did you determine there are network proble... | jgmlbxns pxjsdwrk | GRP_0 | network problems (multiple applications are ru... | English |
| 4027 | connection to finance_app data base | \r\n\r\nreceived from: naisdxtk.mqzvewsb@gmail... | naisdxtk mqzvewsb | GRP_55 | connection to finance_app data base \r\n\r\nre... | English |
| 4028 | ä¼ çœŸæœºä¸æ¸…楚 | to å°è´ºï¼šä¼ çœŸæœºä¼ çœŸå‡ºæ¥æœ‰å¾ˆç²—çš„é... | xqyjztnm onfusvlz | GRP_30 | ä¼ çœŸæœºä¸æ¸…楚 to å°è´ºï¼šä¼ çœŸæœºä¼ çœŸ... | English |
| 4029 | accout locked | accout locked | afijkocw rjtxslpa | GRP_0 | accout locked accout locked | English |
| 4030 | outlook is prompting for password again and ag... | outlook is prompting for password again and ag... | jloygrwh acvztedi | GRP_0 | outlook is prompting for password again and ag... | English |
| 4031 | erp SID_21 and SID_1 not working | erp SID_21 and SID_1 not working | bjtguqne xthqrzpc | GRP_0 | erp SID_21 and SID_1 not working erp SID_21 a... | English |
| 4032 | need erp access to the stated roles | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | svdefgwl sgtmurfh | GRP_2 | need erp access to the stated roles system (SI... | English |
| 4033 | collaboration_platform issues | \r\n\r\nreceived from: lwizucan.zvnxlobq@gmail... | lwizucan zvnxlobq | GRP_16 | collaboration_platform issues \r\n\r\nreceived... | English |
| 4034 | computer unable to connection company network. | computer unable to connection company network.... | eokwrjcx qxzkboeg | GRP_31 | computer unable to connection company network.... | English |
| 4035 | der mitarbeiter schrenfgker heinrifgtch (pn 50... | der mitarbeiter schrenfgker heinrifgtch (pn 50... | mdkbjzrt qaxhznvy | GRP_25 | der mitarbeiter schrenfgker heinrifgtch (pn 50... | German |
| 4036 | account locked in ad | account locked in ad | izkjplwq flztpqxk | GRP_0 | account locked in ad account locked in ad | English |
| 4037 | erp SID_34 account locked | erp SID_34 account locked | owdiqpfc hzutrscx | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 4038 | account locked in ad | account locked in ad | djilqgmw bidchqsg | GRP_0 | account locked in ad account locked in ad | English |
| 4039 | unable to create stock recall form | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_0 | unable to create stock recall form \r\n\r\nrec... | English |
| 4040 | eeml8143294 / wlan lässt sich nicht per knopf... | eeml8143294 / wlan lässt sich nicht per knopf... | mvwiygou rpkscnlv | GRP_42 | eeml8143294 / wlan lässt sich nicht per knopf... | German |
| 4041 | atp not getting committed in SID_1 | \r\n\r\nreceived from: iwqfelcu.gsubfiml@gmail... | iwqfelcu gsubfiml | GRP_6 | atp not getting committed in SID_1 \r\n\r\nrec... | English |
| 4042 | vpn ä¸èƒ½è¿žæŽ¥ | vpn ä¸èƒ½è¿žæŽ¥ | fcvqezmn frzyjknu | GRP_31 | vpn ä¸èƒ½è¿žæŽ¥ vpn ä¸èƒ½è¿žæŽ¥ | English |
| 4043 | how to change password in outllok | \nname:srinfhyath\nlanguage:\nbrowser:microsof... | kflqpite gbeoqsnc | GRP_0 | how to change password in outllok \nname:srinf... | English |
| 4044 | time cards not automatically generating. | time cards not automatically generating. | spxqmiry zpwgoqju | GRP_36 | time cards not automatically generating. time ... | English |
| 4045 | vvdgtyachac | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | vvdgtyachac \n\nreceived from: aksthyuhath.she... | English |
| 4046 | ç™»å½•è¿›åŽ»åŽæ— 法新建客户信æ¯ï¼Œæ— æ... | ~connect_ui/setting/view?brand=kd&language=zh-... | pfiyvdea uwbdsfmr | GRP_31 | ç™»å½•è¿›åŽ»åŽæ— 法新建客户信æ¯ï¼Œæ— æ... | English |
| 4047 | erp SID_34 account locked | erp SID_34 account locked | tauogwvl xfvqakdw | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 4048 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 4049 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 4050 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 4051 | reset password | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_0 | reset password \n\nreceived from: rxoynvgi.ntg... | English |
| 4052 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 4053 | how to connect to mobile hotspot | how to connect to mobile hotspot | csotmdiw yfeqcbti | GRP_0 | how to connect to mobile hotspot how to conne... | English |
| 4054 | ie æµè§ˆå™¨é—®é¢˜,æœç´¢ç½‘页åŽä¸èƒ½æ‰“开。 | ie æµè§ˆå™¨é—®é¢˜,æœç´¢ç½‘页åŽä¸èƒ½æ‰“开。 | napijrez xhpqkojc | GRP_31 | ie æµè§ˆå™¨é—®é¢˜,æœç´¢ç½‘页åŽä¸èƒ½æ‰“å¼€... | English |
| 4055 | reset passwords for jerydwbn gdylnaue using pa... | the | jerydwbn gdylnaue | GRP_17 | reset passwords for jerydwbn gdylnaue using pa... | English |
| 4056 | unable to login to microsoft account and need ... | unable to login to microsoft account and need ... | qcxivzag vyucbagx | GRP_0 | unable to login to microsoft account and need ... | English |
| 4057 | inquiry on erp availability. | inquiry on erp availability. | lsnpgqea hzeausvl | GRP_0 | inquiry on erp availability. inquiry on erp av... | English |
| 4058 | lhqSID_1855: h:\ is is over 85% space consum... | volume: h:\ label:oraarch 844d5322 on server: ... | uvrbhlnt bjrmalzi | GRP_1 | lhqSID_1855: h:\ is is over 85% space consum... | English |
| 4059 | circuit outage:·2 mbps internet link to telec... | what type of outage: _____network __x___c... | jyoqwxhz clhxsoqy | GRP_8 | circuit outage:·2 mbps internet link to telec... | English |
| 4060 | unable to login to system | unable to login to system | amiodlfy gmcoruwp | GRP_0 | unable to login to system unable to login to s... | English |
| 4061 | job Job_1388 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1388 failed in job_scheduler at: 09/18... | English |
| 4062 | job bkbackup_tool_csqe_prod_inc failed in job_... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_csqe_prod_inc failed in job_... | English |
| 4063 | job Job_1422 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1422 failed in job_scheduler at: 09/18... | English |
| 4064 | erp password block | \n\nreceived from: rhwvpmlq.zuwhpqrc@gmail.com... | rhwvpmlq zuwhpqrc | GRP_0 | erp password block \n\nreceived from: rhwvpmlq... | English |
| 4065 | reset passwords for dmexgspl mruzqhac using pa... | the | dmexgspl mruzqhac | GRP_17 | reset passwords for dmexgspl mruzqhac using pa... | English |
| 4066 | job snp_heu_6_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_6_regen failed in job_scheduler at... | English |
| 4067 | skype : personal certificate issue | skype : personal certificate issue | wauhocsk vxuikqaf | GRP_0 | skype : personal certificate issue skype : pe... | English |
| 4068 | job Job_1348a failed in job_scheduler at: 09/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1348a failed in job_scheduler at: 09/1... | English |
| 4069 | job Job_1353 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1353 failed in job_scheduler at: 09/18... | English |
| 4070 | why we can't use the outlook groups ? | \r\n\r\nreceived from: bmudkpie.qolrvbip@gmail... | bmudkpie qolrvbip | GRP_0 | why we can't use the outlook groups ? \r\n\r\... | English |
| 4071 | abend batch job:Job_1391 | job name:Job_1391 | oldrctiu bxurpsyi | GRP_8 | abend batch job:Job_1391 job name:Job_1391 | English |
| 4072 | job Job_1391 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1391 failed in job_scheduler at: 09/18... | English |
| 4073 | job Job_1314 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 09/18... | English |
| 4074 | ooo until 30.9.2016 : engineering_tool | \r\n\r\nreceived from: wsczgfal.hjfklsdg@gmail... | wsczgfal hjfklsdg | GRP_0 | ooo until 30.9.2016 : engineering_tool \r\n\r\... | Polish |
| 4075 | erp SID_34 account locked out and password reset | erp SID_34 account locked out and password reset | incjpxsq gdxbvaqz | GRP_0 | erp SID_34 account locked out and password res... | English |
| 4076 | job Job_1348 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1348 failed in job_scheduler at: 09/18... | English |
| 4077 | power outage :south_amerirtca :site is hard do... | what type of outage: __x___network _____c... | oldrctiu bxurpsyi | GRP_8 | power outage :south_amerirtca :site is hard do... | English |
| 4078 | job Job_1368 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1368 failed in job_scheduler at: 09/18... | English |
| 4079 | job Job_1382 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1382 failed in job_scheduler at: 09/18... | English |
| 4080 | job pp_EU_tool_netch_keheu1 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_keheu1 failed in job_sche... | English |
| 4081 | skype login issue : personal certificate issue | \nsummary:my skype business cannot login, erro... | hbodpniz jvqpxohl | GRP_0 | skype login issue : personal certificate issue... | English |
| 4082 | apac company: fastethernet0/48 · uplink to c... | apac company: company-ap-chn-apac-shop-closet... | oldrctiu bxurpsyi | GRP_4 | apac company: fastethernet0/48 · uplink to c... | English |
| 4083 | job Job_1384 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1384 failed in job_scheduler at: 09/18... | English |
| 4084 | job co_val_update_crosscomp failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job co_val_update_crosscomp failed in job_sche... | English |
| 4085 | only erp running slow since last 3-4 hours in ... | only erp running slow since last 3-4 hours. in... | wqfzjycu omleknjd | GRP_14 | only erp running slow since last 3-4 hours in ... | English |
| 4086 | job Job_3343 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3343 failed in job_scheduler at: 09/18... | English |
| 4087 | security incidents - ( sw #in33895560 ) : mage... | source ip : 172.20.10.37 , 208.211.136.158\nsy... | ugyothfz ugrmkdhx | GRP_39 | security incidents - ( sw #in33895560 ) : mage... | English |
| 4088 | can not post dn#9169336870 under rma#6001502124 | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_18 | can not post dn#9169336870 under rma#600150212... | English |
| 4089 | security incidents - ( sw #in33895560 ) : mage... | source ip : 172.20.10.37 , 208.211.136.158\nsy... | ugyothfz ugrmkdhx | GRP_2 | security incidents - ( sw #in33895560 ) : mage... | English |
| 4090 | çƒåŽ‹ç‚‰4å·plc控制器通讯模å—网络地... | 今年å‘生了5次网络地å€ä¸¢å¤±ï¼Œéœ€è¦... | pwfirvgu ydwlhuzi | GRP_30 | çƒåŽ‹ç‚‰4å·plc控制器通讯模å—网络地... | English |
| 4091 | reset passwords for hgyvopct dhckfmbq using pa... | 请将密ç 设置为:sdguo1609 | hgyvopct dhckfmbq | GRP_17 | reset passwords for hgyvopct dhckfmbq using pa... | English |
| 4092 | job Job_2883 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2883 failed in job_scheduler at: 09/18... | English |
| 4093 | job bwdpmbkp failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwdpmbkp failed in job_scheduler at: 09/18... | English |
| 4094 | job Job_2883 failed in job_scheduler at: 09/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2883 failed in job_scheduler at: 09/18... | English |
| 4095 | job Job_1321 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1321 failed in job_scheduler at: 09/17... | English |
| 4096 | job Job_2883 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_13 | job Job_2883 failed in job_scheduler at: 09/17... | English |
| 4097 | windows account locked | windows account locked | awsqjfkm dejmuhlg | GRP_0 | windows account locked windows account locked | English |
| 4098 | 电脑æ„外进水,帮助处ç†ï¼è¯·äº¤å°è... | 电脑æ„外进水,帮助处ç†ï¼è¯·äº¤å°è... | pvfclkmn gebyipwr | GRP_30 | 电脑æ„外进水,帮助处ç†ï¼è¯·äº¤å°è... | English |
| 4099 | job Job_370 failed in job_scheduler at: 09/17/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_370 failed in job_scheduler at: 09/17/... | English |
| 4100 | erp logon | \n\nreceived from: rujpckto.lhutkpxm@gmail.com... | rujpckto lhutkpxm | GRP_0 | erp logon \n\nreceived from: rujpckto.lhutkpxm... | English |
| 4101 | alwaysupservice.exe is not running in many plm... | HostName_107; HostName_108; HostName_521; Host... | uvrbhlnt bjrmalzi | GRP_14 | alwaysupservice.exe is not running in many plm... | English |
| 4102 | job Job_567 failed in job_scheduler at: 09/17/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_567 failed in job_scheduler at: 09/17/... | English |
| 4103 | job Job_1391 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1391 failed in job_scheduler at: 09/17... | English |
| 4104 | job Job_1665 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1665 failed in job_scheduler at: 09/17... | English |
| 4105 | job Job_1336 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1336 failed in job_scheduler at: 09/17... | English |
| 4106 | job bwdpmbkp failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwdpmbkp failed in job_scheduler at: 09/17... | English |
| 4107 | job Job_3194 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 09/17... | English |
| 4108 | received call from , music was playing but no ... | received call music was playing but no one wa... | efbwiadp dicafxhv | GRP_0 | received call from , music was playing but no ... | English |
| 4109 | job Job_1429 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1429 failed in job_scheduler at: 09/17... | English |
| 4110 | job bkwin_ms_cluster_full failed in job_schedu... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_ms_cluster_full failed in job_schedu... | English |
| 4111 | job Job_1422 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1422 failed in job_scheduler at: 09/17... | English |
| 4112 | password reset : password_management_tool pass... | password reset : password_management_tool pass... | awsqjfkm dejmuhlg | GRP_0 | password reset : password_management_tool pass... | English |
| 4113 | job Job_1318 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1318 failed in job_scheduler at: 09/17... | English |
| 4114 | account of thomafghk is disabled | account of thomafghk is disabled | ustvaifg hmzfewks | GRP_0 | account of thomafghk is disabled account of th... | English |
| 4115 | mobile device activation | mobile device activation | hzagqxbf fckwrsdq | GRP_0 | mobile device activation mobile device activa... | English |
| 4116 | mobile device activation : company provided | mobile device activation : company provided | nsoikcyf jhybqael | GRP_0 | mobile device activation : company provided mo... | English |
| 4117 | fwd: die synchronisierung mit exchange actives... | \r\n\r\nreceived from: nsoikcyf.jhybqael@gmail... | nsoikcyf jhybqael | GRP_0 | fwd: die synchronisierung mit exchange actives... | German |
| 4118 | password reset alert from o365 | password reset alert from o365 | ocgkpayl tzadqijk | GRP_0 | password reset alert from o365 password reset ... | English |
| 4119 | job Job_2041 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2041 failed in job_scheduler at: 09/17... | English |
| 4120 | cannot submit engineering_tool to system | when trying submit engineering_tool to system ... | hbodpniz jvqpxohl | GRP_0 | cannot submit engineering_tool to system when ... | English |
| 4121 | not able to submit reports in engineering_tool | not able to submit reports in engineering_tool... | efbwiadp dicafxhv | GRP_0 | not able to submit reports in engineering_tool... | English |
| 4122 | HostName_894 : volume: c:\ label:sys-HostName_... | HostName_894 : volume: c:\ label:sys-HostName_... | spxqmiry zpwgoqju | GRP_39 | HostName_894 : volume: c:\ label:sys-HostName_... | English |
| 4123 | kein internetsignal | from: itjzudor ybtmorxp \nsent: saturday, sept... | itjzudor ybtmorxp | GRP_0 | kein internetsignal from: itjzudor ybtmorxp \n... | German |
| 4124 | job Job_1329 failed in job_scheduler at: 09/17... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1329 failed in job_scheduler at: 09/17... | English |
| 4125 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 4126 | job Job_303 failed in job_scheduler at: 09/17/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_303 failed in job_scheduler at: 09/17/... | English |
| 4127 | skype not working | \nname:ganedsght\nlanguage:\nbrowser:microsoft... | ruhvqcwz kdqzlijw | GRP_0 | skype not working \nname:ganedsght\nlanguage:\... | English |
| 4128 | all servrs in job_scheduler are unlinked | all serves in job_scheduler are unlinked.\r\n... | spxqmiry zpwgoqju | GRP_47 | all servrs in job_scheduler are unlinked all ... | English |
| 4129 | HostName_170- swap space on:HostName_170 is 75... | HostName_170- swap space on:HostName_170 is 75... | spxqmiry zpwgoqju | GRP_47 | HostName_170- swap space on:HostName_170 is 75... | English |
| 4130 | unable to login to engineering tool | unable to login to engineering tool | gxaudkip pgkuwtlv | GRP_0 | unable to login to engineering tool unable t... | English |
| 4131 | production_order_interface_app server down in ... | production_order_interface_app server down in ... | avurmegj pxgmjynu | GRP_14 | production_order_interface_app server down in ... | English |
| 4132 | error message during route card release | \n\nreceived from: phqwmniy.kjucgqom@gmail.com... | phqwmniy kjucgqom | GRP_14 | error message during route card release \n\nre... | English |
| 4133 | unable to login to engineering tool | unable to login to engineering tool | lygdcfwn sqmebjtf | GRP_0 | unable to login to engineering tool unable to... | English |
| 4134 | po print out. | \n\nreceived from: wimozrdc.iodvtuaz@gmail.com... | wimozrdc iodvtuaz | GRP_14 | po print out. \n\nreceived from: wimozrdc.iodv... | English |
| 4135 | job Job_549 failed in job_scheduler at: 09/16/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_549 failed in job_scheduler at: 09/16/... | English |
| 4136 | job SID_39hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_39hoti failed in job_scheduler at: 09/... | English |
| 4137 | help to change the windows password using pass... | help to change the windows password using pass... | lyfrphmz ahidnfmb | GRP_0 | help to change the windows password using pass... | English |
| 4138 | ticket update on inplant_861120 | ticket update on inplant_861120 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_861120 ticket update ... | English |
| 4139 | password reset on hr_tool and mii | password reset on hr_tool and mii | dycmlejx iycsvhzl | GRP_0 | password reset on hr_tool and mii password re... | English |
| 4140 | unable to get the crm add-in on excel | unable to get the crm add-in on excel | ymorvuwg pejkzvfl | GRP_0 | unable to get the crm add-in on excel unable ... | English |
| 4141 | password reset to login to collaboration_platf... | password reset to login to collaboration_platf... | vgnpzxbc rbphwimj | GRP_0 | password reset to login to collaboration_platf... | English |
| 4142 | user wants to download software shared with hi... | user wants to download software shared with hi... | kvrmnuix yicpojmf | GRP_0 | user wants to download software shared with hi... | English |
| 4143 | the correct delivery dates are not showing on ... | so# 35035632 is set up to ship 2nd day air whi... | lkecfram tweaokch | GRP_18 | the correct delivery dates are not showing on ... | English |
| 4144 | phone issue | \r\n\r\nreceived from: kxsceyzo.naokumlb@gmail... | kxsceyzo naokumlb | GRP_4 | phone issue \r\n\r\nreceived from: kxsceyzo.na... | English |
| 4145 | erp log in | \n\nreceived from: idkfgcnq.vjwhmzor@gmail.com... | idkfgcnq vjwhmzor | GRP_0 | erp log in \n\nreceived from: idkfgcnq.vjwhmzo... | English |
| 4146 | unable to log in to erp | unable to log in to erp | nlrwqeti qarixwbv | GRP_0 | unable to log in to erp unable to log in to erp | English |
| 4147 | erro programdntya docad - rj | user: olghiveii\n\nerro ao acessar programdnty... | lokiwfhg udkoqrcg | GRP_62 | erro programdntya docad - rj user: olghiveii\n... | Portuguese |
| 4148 | slight change to desktop | \r\n\r\nreceived from: crkdjbot.qiztrxne@gmail... | crkdjbot qiztrxne | GRP_0 | slight change to desktop \r\n\r\nreceived from... | English |
| 4149 | call from vitalyst : opportunities are not edi... | call from vitalyst : opportunities are not edi... | tmopbken ibzougsd | GRP_22 | call from vitalyst : opportunities are not edi... | English |
| 4150 | laptop _ screen problem. | \n\nreceived from: rohjghit.kumghtwar@company.... | tgseqfni ehlabdtf | GRP_19 | laptop _ screen problem. \n\nreceived from: ro... | English |
| 4151 | admin access | need the administrator access for user vijghy... | bozdftwx smylqejw | GRP_19 | admin access need the administrator access for... | English |
| 4152 | the interface ethernet13/5(port-channel to flu... | the interface ethernet13/5(port-channel to flu... | oldrctiu bxurpsyi | GRP_4 | the interface ethernet13/5(port-channel to flu... | English |
| 4153 | 9401555132 & 0512667163 vat not tally | from: raghyvhdra najuty \nsent: friday, septem... | ikerxqwz prkyuitl | GRP_10 | 9401555132 & 0512667163 vat not tally from: ra... | English |
| 4154 | can you please check the bobj account of stefd... | dear all,\r\n\r\ncan you please check the bobj... | wohzmlib fxwjhapo | GRP_9 | can you please check the bobj account of stefd... | English |
| 4155 | one note issue : file not getting synched. | one note issue : file not getting synched.\r\n... | orvwshat acpgvixj | GRP_16 | one note issue : file not getting synched. one... | English |
| 4156 | printer not printing | name:ljztkmds ltjkirwy\nlanguage:\nbrowser:mic... | ljztkmds ltjkirwy | GRP_0 | printer not printing name:ljztkmds ltjkirwy\nl... | English |
| 4157 | change mm packages from plant_248 bom's | hi team\r\n\r\nwe need the items related below... | zuyimtsf qjtimdsp | GRP_45 | change mm packages from plant_248 bom's hi tea... | English |
| 4158 | unable to get audio on skype meeting | unable to get audio on skype meeting | ijplstng juybetlo | GRP_0 | unable to get audio on skype meeting unable t... | English |
| 4159 | entering power save mode : external monitor | entering power save mode : external monitor | ixefmkyb bkyfisxz | GRP_0 | entering power save mode : external monitor en... | English |
| 4160 | stop hr jobs | hi tim,\r\n\r\nplease stop the attached hr job... | qcehailo wqynckxg | GRP_5 | stop hr jobs hi tim,\r\n\r\nplease stop the at... | English |
| 4161 | expense report error - manager needs authoriza... | \n\nreceived from: ifblxjmc.dyrgfwbm@gmail.com... | ifblxjmc dyrgfwbm | GRP_2 | expense report error - manager needs authoriza... | English |
| 4162 | unable to login to ethics | when trying to login to ethics, user gets the ... | uwiqchfp hnsukjma | GRP_23 | unable to login to ethics when trying to login... | English |
| 4163 | install aiqjxhuv dceghpwn viewer | install aiqjxhuv dceghpwn viewer .\r\n.\r\nsof... | zuyimtsf qjtimdsp | GRP_62 | install aiqjxhuv dceghpwn viewer install aiqj... | English |
| 4164 | urgent request to complete your requirement ... | hello,\r\n\r\nplease advise, undeliverable e-m... | crkdjbot qiztrxne | GRP_0 | urgent request to complete your requirement ... | English |
| 4165 | job Job_1967b failed in job_scheduler at: 09/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1967b failed in job_scheduler at: 09/1... | English |
| 4166 | not able to lopgin to collaboration_platform u... | not able to login to collaboration_platform us... | alfqhigv zofjibkr | GRP_0 | not able to lopgin to collaboration_platform u... | English |
| 4167 | ship-to # 81051078 created / not visible in erp | from: customermaster \nsent: friday, septembe... | nkthumgf mwgdenbs | GRP_15 | ship-to # 81051078 created / not visible in e... | English |
| 4168 | solicito a instalação de software adobe acrobat | solicito a instalação do software adobe acro... | vhjkdqop tkhafgrc | GRP_62 | solicito a instalação de software adobe acro... | English |
| 4169 | analysis for office - hana - access (1 user ou... | \r\n\r\nreceived from: uzpycdho.hdswinlo@gmail... | uzpycdho hdswinlo | GRP_0 | analysis for office - hana - access (1 user ou... | English |
| 4170 | vendor and customer balance in local currency ... | help desk,\r\n\r\nin fy2017, the end of month ... | zsqabokr xbtsaodr | GRP_10 | vendor and customer balance in local currency ... | English |
| 4171 | erp access issue : passward re-set for SID_4 | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | zbmhdaru zhaupwno | GRP_2 | erp access issue : passward re-set for SID_4 s... | English |
| 4172 | wireless is not working. | wireless is not working. | rbzymfvx lebqthwv | GRP_0 | wireless is not working. wireless is not working. | English |
| 4173 | erp SID_34 account locked. | erp SID_34 account locked. | htoqbljx dkbatgus | GRP_0 | erp SID_34 account locked. erp SID_34 account ... | English |
| 4174 | need access to shop_floor_app corrected | i don't have the access to update work centers... | chkmejsn lvidgknc | GRP_43 | need access to shop_floor_app corrected i don'... | English |
| 4175 | virus issue /google maps issue | virus issue /google maps issue | ieybdzvf spxekdic | GRP_0 | virus issue /google maps issue virus issue /g... | English |
| 4176 | unable to install engineering_tool | unable to install engineering_tool | ewvugfcy nxbdajgh | GRP_0 | unable to install engineering_tool unable to i... | English |
| 4177 | unable to login to skype | unable to login to skype | ptljghyk qhtvlrxe | GRP_0 | unable to login to skype unable to login to skype | English |
| 4178 | johghajknn needed information about passwords. | johghajknn needed information about passwords. | zgirlxwp kmeaylhi | GRP_0 | johghajknn needed information about passwords.... | English |
| 4179 | unable to launch engineering tool | name:stefyty hipghkinjyt\nlanguage:\nbrowser:m... | zikuvsat spxycizr | GRP_0 | unable to launch engineering tool name:stefyty... | English |
| 4180 | unlocked account | unlocked account | ujbaemlc ilzhrxjo | GRP_0 | unlocked account unlocked account | English |
| 4181 | explanation about password manager is required. | explanation about password manager is required. | xkegcqov drctxjqi | GRP_0 | explanation about password manager is required... | English |
| 4182 | unable to connect to wireless. | unable to connect to wireless. | cjexkmoz jsikovzd | GRP_0 | unable to connect to wireless. unable to conne... | English |
| 4183 | mjvfxnka zvjxuahe is not able to add campaign ... | when user adds the above campaign to an opport... | mjvfxnka zvjxuahe | GRP_40 | mjvfxnka zvjxuahe is not able to add campaign ... | English |
| 4184 | install pdfmailer \ahlqgjwx wbsfavhg | install pdfmailer \ahlqgjwx wbsfavhg | ahlqgjwx wbsfavhg | GRP_24 | install pdfmailer \ahlqgjwx wbsfavhg install p... | Finnish |
| 4185 | unable to connect to wifi | unable to connect to wifi | ptljghyk qhtvlrxe | GRP_0 | unable to connect to wifi unable to connect to... | English |
| 4186 | password change , no outlook | \r\n\r\nreceived from: xkegcqov.drctxjqi@gmail... | xkegcqov drctxjqi | GRP_0 | password change , no outlook \r\n\r\nreceived ... | English |
| 4187 | installl bex analysis add in | installl bex analysis add in | jfgkmauh wfrgkejq | GRP_0 | installl bex analysis add in installl bex anal... | English |
| 4188 | laptop battery needs to replaced aerp:service ... | my laptop battery needs to be replaced aerp. b... | jloygrwh acvztedi | GRP_19 | laptop battery needs to replaced aerp:service ... | English |
| 4189 | no 'originals' for dir71805607 - manufacturing... | there have been no 'original' files created fo... | irpvzhym kayqlbuh | GRP_46 | no 'originals' for dir71805607 - manufacturing... | English |
| 4190 | an der maschine 15 (agathon combi) funktionier... | hallo \r\n\r\nan der maschine 15 (agathon comb... | vfuytnwp fyzhntag | GRP_24 | an der maschine 15 (agathon combi) funktionier... | German |
| 4191 | unable to install engineering_tools | unable to install engineering_tools. \n\nt + | jzksvdtb czvlsmqx | GRP_25 | unable to install engineering_tools unable to ... | English |
| 4192 | inc1551048 - ticket update | inc1551048 - ticket update | olckhmvx pcqobjnd | GRP_0 | inc1551048 - ticket update inc1551048 - ticket... | English |
| 4193 | skype audio issue | other person unable hear my warehouse_tool on ... | hkfipags sdilxrfk | GRP_19 | skype audio issue other person unable hear my ... | English |
| 4194 | space requirement in grinding drive | \r\n\r\nreceived from: vkzwibco.pueyvhoi@gmail... | vkzwibco pueyvhoi | GRP_12 | space requirement in grinding drive \r\n\r\nre... | English |
| 4195 | network outage:india - india ():vpn circuit is... | what type of outage: __x___network _____c... | oldrctiu bxurpsyi | GRP_4 | network outage:india - india ():vpn circuit is... | English |
| 4196 | windows password reset | windows password reset | proygkjt mwetuhqf | GRP_0 | windows password reset windows password reset | English |
| 4197 | need telephony_software to be installed on ebh... | need telephony_software to be installed on ebh... | zmgsfner caltmgoe | GRP_33 | need telephony_software to be installed on ebh... | English |
| 4198 | call to check if hybegvwo dbgrtqhs account is ... | call to check if hybegvwo dbgrtqhs account is ... | olckhmvx pcqobjnd | GRP_0 | call to check if hybegvwo dbgrtqhs account is ... | English |
| 4199 | re: revised prices - local | \n\nreceived from: ryculmsd.wofgvkrb@gmail.com... | ryculmsd wofgvkrb | GRP_26 | re: revised prices - local \n\nreceived from: ... | English |
| 4200 | wunderlist add in | \r\n\r\nreceived from: bmudkpie.qolrvbip@gmail... | bmudkpie qolrvbip | GRP_0 | wunderlist add in \r\n\r\nreceived from: bmudk... | English |
| 4201 | ich sehe meine reisekostenabrechnungen in erp ... | ich sehe meine reisekostenabrechnungen in erp ... | pxvzohlu hwyijpgd | GRP_10 | ich sehe meine reisekostenabrechnungen in erp ... | English |
| 4202 | we are not getting communication in to attenda... | we are not getting communication in to attenda... | noscwdpm akiowsmp | GRP_19 | we are not getting communication in to attenda... | English |
| 4203 | drucker tauschen ( we39 und we75 ) \gogtyek | drucker tauschen ( we39 und we75 ) \gogtyek | wrcktgbd wzrgyunp | GRP_24 | drucker tauschen ( we39 und we75 ) \gogtyek dr... | German |
| 4204 | account of thomafghk is disabled | \n\nreceived from: ustvaifg.hmzfewks@gmail.com... | ustvaifg hmzfewks | GRP_2 | account of thomafghk is disabled \n\nreceived ... | English |
| 4205 | probleme mit outlook \ engracia.gonzales-fern... | probleme mit outlook \ engracia.gonzales-fern... | usalikfj lfmpxbcn | GRP_24 | probleme mit outlook \ engracia.gonzales-fern... | Interlingua |
| 4206 | kpobysnc tqvefyui mail box needs to be approve... | please approve the mailbox of kpobysnc tqvefyu... | ungoxpdc hmxwuyog | GRP_16 | kpobysnc tqvefyui mail box needs to be approve... | English |
| 4207 | application response time (other network resou... | our colleagues have opened a ticket about the ... | gwfozprc kldrsnze | GRP_0 | application response time (other network resou... | English |
| 4208 | job Job_512 failed in job_scheduler at: 09/16/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_512 failed in job_scheduler at: 09/16/... | English |
| 4209 | network access for vahjtusa wenghtyele for fü... | folder :; \\eagcldaten\teams\gpc\naccess read ... | rhinvtua aquyjfbs | GRP_34 | network access for vahjtusa wenghtyele for fü... | English |
| 4210 | job Job_593 failed in job_scheduler at: 09/16/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/16/... | English |
| 4211 | network outage:usa mi :brembo: site hard down ... | what type of outage: __x___network _____c... | mnlazfsr mtqrkhnx | GRP_8 | network outage:usa mi :brembo: site hard down ... | English |
| 4212 | probleme mit erpgui \vsdtxwry ngkcdjye | probleme mit erpgui \vsdtxwry ngkcdjye | vsdtxwry ngkcdjye | GRP_24 | probleme mit erpgui \vsdtxwry ngkcdjye problem... | Danish |
| 4213 | many users in our germany location (earlier ge... | we are experiancing slow response times in our... | ujxvrlzg pkaegicn | GRP_14 | many users in our germany location (earlier ge... | English |
| 4214 | erp zload - releasing orders in vSID_62 take m... | the erp response time, especially out of zload... | kmtpzyre mqlsfkre | GRP_0 | erp zload - releasing orders in vSID_62 take m... | English |
| 4215 | erp performance | \n\nreceived from: ctvaejbo.mjcerqwo@gmail.com... | ctvaejbo mjcerqwo | GRP_0 | erp performance \n\nreceived from: ctvaejbo.mj... | English |
| 4216 | erp is slow in multiple locations : poland , u... | erp is slow.\r\ninternet is running fine.\r\no... | xnlapdeq wupaeqlv | GRP_4 | erp is slow in multiple locations : poland , u... | English |
| 4217 | laptop not use audio | \r\n\r\nreceived from: yjwivxsh.fcetobrj@gmail... | yjwivxsh fcetobrj | GRP_0 | laptop not use audio \r\n\r\nreceived from: y... | English |
| 4218 | erp is slow for few users at poland office. | erp is slow for few users at poland office.\r\... | hadbkvwt touedfyr | GRP_0 | erp is slow for few users at poland office. er... | English |
| 4219 | network problems (multiple applications are ru... | how did you determine there are network proble... | zcokibmd xnrthsmj | GRP_59 | network problems (multiple applications are ru... | English |
| 4220 | job Job_2645 failed in job_scheduler at: 09/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 09/16... | English |
| 4221 | cannot syncronize outlook appointments to crm | \r\n\r\nreceived from: lzycofut.mzbovhpd@gmail... | lzycofut mzbovhpd | GRP_0 | cannot syncronize outlook appointments to crm ... | English |
| 4222 | foreign trade data missing in the inwarehouse_... | inwarehouse_tool 0159130578 was blocked in the... | ahmgtlyf ofgxcrys | GRP_13 | foreign trade data missing in the inwarehouse_... | English |
| 4223 | question | hello bobhyb,\nsorry, i don't know more than t... | geylvotd msadrzkj | GRP_13 | question hello bobhyb,\nsorry, i don't know mo... | English |
| 4224 | vpn access issue | hello team,\n\nyvhlenaz ptuqhrwk (on cc) canno... | yvhlenaz ptuqhrwk | GRP_0 | vpn access issue hello team,\n\nyvhlenaz ptuqh... | English |
| 4225 | password blocked | \n\nreceived from: wrelsfqa.qfwosjkh@gmail.com... | wrelsfqa qfwosjkh | GRP_0 | password blocked \n\nreceived from: wrelsfqa.q... | English |
| 4226 | user tuzkadxv rxloutpn cannot use the "run rep... | hello team,\r\n\r\nuser tuzkadxv rxloutpn is t... | tuzkadxv rxloutpn | GRP_40 | user tuzkadxv rxloutpn cannot use the "run rep... | English |
| 4227 | job Job_1332 failed in job_scheduler at: 09/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1332 failed in job_scheduler at: 09/16... | English |
| 4228 | job Job_3049 failed in job_scheduler at: 09/16... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 09/16... | English |
| 4229 | not able to access -inq industrial (-inq.indus... | \r\n\r\nreceived from: muqdlobv.qflsdahg@gmail... | muqdlobv qflsdahg | GRP_0 | not able to access -inq industrial (-inq.indus... | English |
| 4230 | carrier information lost when bulk indicator i... | ship method information is lost when bulk ship... | gzawrocy shbgwxep | GRP_18 | carrier information lost when bulk indicator i... | English |
| 4231 | telephony_software break down | when shutdown the computer yesterday, the wind... | qdczywsh ofzvapwn | GRP_0 | telephony_software break down when shutdown t... | English |
| 4232 | network outage: usa: site hard down since at 1... | what type of outage: __x___network _____c... | mnlazfsr mtqrkhnx | GRP_4 | network outage: usa: site hard down since at 1... | English |
| 4233 | gtehdnyushot kennconnect problem | \r\n\r\nreceived from: dxnskvbm.xbaswghy@gmail... | dxnskvbm xbaswghy | GRP_0 | gtehdnyushot kennconnect problem \r\n\r\nrece... | English |
| 4234 | milano,italy: duplex mismatch gi2/0/1 on 1811... | duplex mismatch: duplex mode on interface giga... | mnlazfsr mtqrkhnx | GRP_4 | milano,italy: duplex mismatch gi2/0/1 on 1811... | English |
| 4235 | urgent! mm 2122084 // dn 9169293441 //pt. indo... | \r\n\r\nreceived from: aqrhwjgo.cyelqkvs@gmail... | aqrhwjgo cyelqkvs | GRP_18 | urgent! mm 2122084 // dn 9169293441 //pt. indo... | English |
| 4236 | unable to connect vpn at home. | \r\n\r\nreceived from: qmkpsbgl.zfovlrah@gmail... | dcsaiweo qvstjlem | GRP_0 | unable to connect vpn at home. \r\n\r\nreceive... | English |
| 4237 | job pp_EU_tool_netch_ap2 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap2 failed in job_schedul... | English |
| 4238 | erp locked | \r\n\r\nreceived from: xosycftu.olhpmsdw@gmail... | xosycftu olhpmsdw | GRP_0 | erp locked \r\n\r\nreceived from: xosycftu.olh... | English |
| 4239 | not able to connect to the erp | not able to connect to the erp | vRxKDhIB sqTVbvkm | GRP_0 | not able to connect to the erp not able to co... | English |
| 4240 | job Job_3052 failed in job_scheduler at: 09/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3052 failed in job_scheduler at: 09/15... | English |
| 4241 | unable to submit reports in engineering tool. | unable to submit reports in engineering tool. ... | qxmujhwg rsgqidxw | GRP_25 | unable to submit reports in engineering tool. ... | English |
| 4242 | outlook has stopped working | \r\n\r\nreceived from: gzqijaoc.rfywvloa@gmail... | gzqijaoc rfywvloa | GRP_0 | outlook has stopped working \r\n\r\nreceived ... | English |
| 4243 | cant open photos from iphone | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | eylqgodm ybqkwiam | GRP_0 | cant open photos from iphone \r\n\r\nreceived... | English |
| 4244 | job SID_39hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_39hotf failed in job_scheduler at: 09/... | English |
| 4245 | dell 7350: skype audio not working | dell 7350: skype audio not working.\r\n-connec... | eqxakzyi cwfrjitq | GRP_0 | dell 7350: skype audio not working dell 7350: ... | English |
| 4246 | job bk_hana_SID_62_arc_dp failed in job_schedu... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_62_arc_dp failed in job_schedu... | English |
| 4247 | login issue | \r\nlogin issue\r\n-verified user details.(emp... | gzhjstxr mdnsfipg | GRP_0 | login issue \r\nlogin issue\r\n-verified user ... | English |
| 4248 | user unable to login to the pc. | user unable to login to the pc.\r\n-checked a... | qfcxbpht oiykfzlr | GRP_0 | user unable to login to the pc. user unable to... | English |
| 4249 | distributor_tool login issue | distributor_tool login issue | gjzqctph otwylgdj | GRP_0 | distributor_tool login issue distributor_tool ... | English |
| 4250 | what is the collaboration_platform link? | name:grtaoivq dwjvfkqe\nlanguage:\nbrowser:mic... | grtaoivq dwjvfkqe | GRP_0 | what is the collaboration_platform link? name:... | English |
| 4251 | password reset request | password reset request | kbdljsxf kcmqtjgf | GRP_0 | password reset request password reset request | English |
| 4252 | create express stock transiit for mm 7234728 o... | hi it, \r\ncan you please help check why, i do... | kaguhxwo uoyipxqg | GRP_18 | create express stock transiit for mm 7234728 o... | English |
| 4253 | user is trying to install the software on a cu... | user is trying to install the software on a cu... | dcqsolkx kmsijcuz | GRP_25 | user is trying to install the software on a cu... | English |
| 4254 | password reset | password reset | zolnubvq ehrqifxp | GRP_0 | password reset password reset | English |
| 4255 | jvshydix rzpmnylt : general query | jvshydix rzpmnylt : general query | efbwiadp dicafxhv | GRP_0 | jvshydix rzpmnylt : general query jvshydix rz... | English |
| 4256 | mm02: when grade changed on material, engineer... | when mm02 is used to change the grade on a rqf... | dtnhwjve tqdhvazx | GRP_20 | mm02: when grade changed on material, engineer... | English |
| 4257 | password reset alert from o365 | password reset alert from o365 | qmglkaru qiwhfkdv | GRP_0 | password reset alert from o365 password reset ... | English |
| 4258 | user wanted to speak to some one in usa and as... | user wanted to speak to some one in usa and as... | efbwiadp dicafxhv | GRP_0 | user wanted to speak to some one in usa and as... | English |
| 4259 | unable to log in to skype | unable to log in to skype | zolnubvq ehrqifxp | GRP_0 | unable to log in to skype unable to log in to ... | English |
| 4260 | sto for notion order //mm 3493130 | sto for notion order //mm 3493130 | kaguhxwo uoyipxqg | GRP_29 | sto for notion order //mm 3493130 sto for noti... | English |
| 4261 | ticket update on inplant_860558 | ticket update on inplant_860558 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_860558 ticket update ... | English |
| 4262 | cant connect to erp : vpn issue | cant connect to erp : vpn issue | ijplstng juybetlo | GRP_0 | cant connect to erp : vpn issue cant connect ... | English |
| 4263 | i am getting this error when trying to open a ... | erp excel add in issue. | gvdkupew waphsuen | GRP_9 | i am getting this error when trying to open a ... | English |
| 4264 | the terminate action for mdulwthb sldowapb ha... | the terminate action for mdulwthb sldowapb ha... | blktuiae jzakfmhw | GRP_2 | the terminate action for mdulwthb sldowapb ha... | English |
| 4265 | erp log in issue | erp log in issue | qtrmxlgv dfruzvam | GRP_0 | erp log in issue erp log in issue | English |
| 4266 | usa plant power outage saturday 9/17/16 6:30am... | \r\n\r\nreceived from: ekjobdiz.ktelzwvg@gmail... | ekjobdiz ktelzwvg | GRP_0 | usa plant power outage saturday 9/17/16 6:30am... | English |
| 4267 | called to unlock ad account for user qcxivzag ... | called to unlock ad account for user qcxivzag ... | bvwepigr ekmarvgd | GRP_0 | called to unlock ad account for user qcxivzag ... | English |
| 4268 | dell 7350: system very slow.mscrm slow. | dell 7350: system very slow.\n-connected to th... | jziwhldq qslwyozu | GRP_0 | dell 7350: system very slow.mscrm slow. dell 7... | English |
| 4269 | unable to submit expense report | unable to submit expense report | mwjcsiug fbwthoca | GRP_0 | unable to submit expense report unable to subm... | English |
| 4270 | change skirtylset percentages | change skirtylset percentages effective 9/19/2... | itylnjqw kqiurhbt | GRP_7 | change skirtylset percentages change skirtyls... | English |
| 4271 | printer setrup | id01 printer setup | aqourvgz mkehgcdu | GRP_19 | printer setrup id01 printer setup | English |
| 4272 | printer driver update | printer driver update | ybpeiolu cneoghxp | GRP_0 | printer driver update printer driver update | English |
| 4273 | blank call | blank call | pwkrlqbc zslqfmka | GRP_0 | blank call blank call | English |
| 4274 | outlook not getting connected. | outlook not getting connected. | gpdywmbt pmxfiqkl | GRP_0 | outlook not getting connected. outlook not get... | English |
| 4275 | audio not working : driver issue | audio not working : driver issue | zyheqclo mrznuplg | GRP_0 | audio not working : driver issue audio not wo... | English |
| 4276 | windows accout lockout | windows accout lockout | zujpycos pogmachd | GRP_0 | windows accout lockout windows accout lockout | English |
| 4277 | incorrect vendor in po extract | can you please do me a favor and check the po ... | tckyrinp vbzqslco | GRP_6 | incorrect vendor in po extract can you please ... | English |
| 4278 | reisekosten error | reisekosten error | gmneclxj czqthmrs | GRP_0 | reisekosten error reisekosten error | English |
| 4279 | network outage :south amerirtca site is hard d... | what type of outage: __x___network _____c... | rkupnshb gsmzfojw | GRP_8 | network outage :south amerirtca site is hard d... | English |
| 4280 | ethics issue. | \r\n\r\nreceived from: fmzdkyqv.dbrslnhe@gmail... | fmzdkyqv dbrslnhe | GRP_23 | ethics issue. \r\n\r\nreceived from: fmzdkyqv.... | English |
| 4281 | not able to apply job in company portal in : e... | not able to apply job in company portal in : e... | efbwiadp dicafxhv | GRP_0 | not able to apply job in company portal in : e... | English |
| 4282 | working from home, connection to vpn gets disc... | i continue to get disconnected from vpn and ha... | gtfdvnry nxsaqrfh | GRP_0 | working from home, connection to vpn gets disc... | English |
| 4283 | reset password user zigioachstyac- SID_1 | reset password user zigioachstyac- SID_1 | jaeuqbvt orlhenfj | GRP_0 | reset password user zigioachstyac- SID_1 reset... | English |
| 4284 | procenter login credential for new joiners | please create procenter login credential for b... | jloygrwh acvztedi | GRP_37 | procenter login credential for new joiners ple... | un |
| 4285 | how to add members to distribution groups | how to add members to distribution groups | muywpnof prtikusy | GRP_0 | how to add members to distribution groups how ... | English |
| 4286 | skype issues | \r\n\r\nreceived from: wauhocsk.vxuikqaf@gmail... | wauhocsk vxuikqaf | GRP_0 | skype issues \r\n\r\nreceived from: wauhocsk.v... | English |
| 4287 | call from vitalyst : error : no sections to di... | error : no sections to display. note that sect... | xfdkwusj gyklresa | GRP_22 | call from vitalyst : error : no sections to di... | English |
| 4288 | re: ticket_no1551649: change ansi and iso no. | \r\n\r\nreceived from: stdiondwd.rawdwu@compan... | kmnsvzuq euyvihzc | GRP_2 | re: ticket_no1551649: change ansi and iso no. ... | English |
| 4289 | ticket update on ticket_no0439844 | spam mails coming in to the inbox | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0439844 spam mails c... | English |
| 4290 | aw: ticket_no1551649: change ansi and iso no. | \n\nreceived from: cbupnjzo.daflthkw@gmail.com... | cbupnjzo daflthkw | GRP_2 | aw: ticket_no1551649: change ansi and iso no. ... | English |
| 4291 | change in ethics | \r\n\r\nreceived from: lhejbwkc.xbmyvnqf@gmail... | lhejbwkc xbmyvnqf | GRP_2 | change in ethics \r\n\r\nreceived from: lhejbw... | English |
| 4292 | outlook not launching | outlook not launching | vitpjxgm zxiqkrns | GRP_0 | outlook not launching outlook not launching | English |
| 4293 | unable to submit the time card | hi team,\r\n\r\ni am unable to submit the time... | wczegmok bgqoclvs | GRP_36 | unable to submit the time card hi team,\r\n\r\... | English |
| 4294 | outlook not updating | \r\n\r\nreceived from: ivdntecr.cdasfpjb@gmail... | ivdntecr cdasfpjb | GRP_0 | outlook not updating \r\n\r\nreceived from: iv... | English |
| 4295 | rrc email boxes | \n\nreceived from: iauqlrjk.nijdaukz@gmail.com... | iauqlrjk nijdaukz | GRP_0 | rrc email boxes \n\nreceived from: iauqlrjk.ni... | English |
| 4296 | vpn query | vpn query | vfrdxtqw jfbmsenz | GRP_34 | vpn query vpn query | English |
| 4297 | network outage : israel, israel ( sales facili... | what type of outage: __x___network _____c... | rkupnshb gsmzfojw | GRP_8 | network outage : israel, israel ( sales facili... | English |
| 4298 | unable to log in to windows | unable to log in to windows | ohnimgtv nmqyuolh | GRP_0 | unable to log in to windows unable to log in ... | English |
| 4299 | connect or share collaboration_platform from p... | hello it personnel,\r\n\r\ni have used collabo... | pkfvoucw yhmicuba | GRP_16 | connect or share collaboration_platform from p... | English |
| 4300 | account locked out. | account locked out. | ohnimgtv nmqyuolh | GRP_0 | account locked out. account locked out. | English |
| 4301 | wichtig: bitte netzwerke synchronisieren !! | \n\nreceived from: nhsogrwy.qkxhbnvp@gmail.com... | wacxhqvs nxdythgc | GRP_12 | wichtig: bitte netzwerke synchronisieren !! \n... | German |
| 4302 | reset the password for tfsehruw dzrgpkyn on er... | reset the password for tfsehruw dzrgpkyn on er... | tfsehruw dzrgpkyn | GRP_0 | reset the password for tfsehruw dzrgpkyn on er... | English |
| 4303 | call for ecwtrjnq jpecxuty | call for ecwtrjnq jpecxuty | olckhmvx pcqobjnd | GRP_0 | call for ecwtrjnq jpecxuty call for ecwtrjnq j... | English |
| 4304 | interface: gigabitethernet1/0/47 · mtb gf wir... | interface: gigabitethernet1/0/47 · mtb gf wir... | rkupnshb gsmzfojw | GRP_4 | interface: gigabitethernet1/0/47 · mtb gf wir... | English |
| 4305 | skype - poor quality | \n\nreceived from: azxhejvq.fyemlavd@gmail.com... | azxhejvq fyemlavd | GRP_26 | skype - poor quality \n\nreceived from: azxhej... | English |
| 4306 | cannot log onto telephony_software | cannot log onto telephony_software\n\nerror me... | lwbchnga axpqctfr | GRP_7 | cannot log onto telephony_software cannot log ... | English |
| 4307 | laptop needs to be formatheywted | from: sagfhosh karhtyiio \nsent: thursday, sep... | jloygrwh acvztedi | GRP_19 | laptop needs to be formatheywted from: sagfhos... | English |
| 4308 | cannot connect to outlook or connect to exchan... | repeat of same issue that i have had in the p... | ymorvuwg pejkzvfl | GRP_0 | cannot connect to outlook or connect to exchan... | English |
| 4309 | @5c\qerror@ 35019921rder# 35019921, material 7... | @5c\qerror@ 3501992sartlgeo lhqksbdx0 "create ... | schyepwd ykatfphc | GRP_13 | @5c\qerror@ 35019921rder# 35019921, material 7... | English |
| 4310 | can't log onto skype. changed password yesterd... | can't log onto skype. changed password yesterd... | xmiroedk vreqdcpw | GRP_0 | can't log onto skype. changed password yesterd... | English |
| 4311 | no folder access | \r\n\r\nreceived from: nhsogrwy.qkxhbnvp@gmail... | wacxhqvs nxdythgc | GRP_34 | no folder access \r\n\r\nreceived from: nhsogr... | English |
| 4312 | printer problem / issue information - reroute ... | please complete all required questions below. ... | yfmaqovp wdonhbez | GRP_5 | printer problem / issue information - reroute ... | English |
| 4313 | instalar docad eletronico | user: olghiveii\r\n\r\nsegue link\r\n\r\n\r\n\r\n | lokiwfhg udkoqrcg | GRP_62 | instalar docad eletronico user: olghiveii\r\n\... | English |
| 4314 | it - speker for skype conferences | it - germany:\r\n\r\nskype speakers are requir... | atlwdyej vtlhzbix | GRP_33 | it - speker for skype conferences it - germa... | English |
| 4315 | user safghghga needs to reset her password | hello! could you pls help me and create a new ... | mtgvfzwc cdabfghv | GRP_2 | user safghghga needs to reset her password hel... | English |
| 4316 | problem with crm leads | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_15 | problem with crm leads \n\nreceived from: vkzw... | English |
| 4317 | company iphone device activation | company iphone device activation | rwiykpuc ckrmjqlx | GRP_0 | company iphone device activation company iphon... | English |
| 4318 | vip2: unable to get on the network | vip2: unable to get on the network | vkjdgtxb pkinmjqs | GRP_0 | vip2: unable to get on the network vip2: unabl... | English |
| 4319 | printer rj0c on printer server HostName_1033 i... | printer adds to pc fine but when trying to pri... | bzxljkoy rvoiqthl | GRP_12 | printer rj0c on printer server HostName_1033 i... | English |
| 4320 | can not get erp to issue deliveries for 4 sto'... | stock is available in erp but apparently not a... | aeiljfxg hzwxtyjr | GRP_6 | can not get erp to issue deliveries for 4 sto'... | English |
| 4321 | the fitness center digital signage pc will not... | the fitness center digital signage pc will not... | cwuospin nbhoxqpe | GRP_3 | the fitness center digital signage pc will not... | English |
| 4322 | unable to logon to erp | unable to logon to erp | ijplstng juybetlo | GRP_0 | unable to logon to erp unable to logon to erp | English |
| 4323 | job SID_37hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hotf failed in job_scheduler at: 09/... | English |
| 4324 | reset password user zigioachstyac - SID_34 /SI... | reset password user zigioachstyac - SID_34/SID_37 | jaeuqbvt orlhenfj | GRP_0 | reset password user zigioachstyac - SID_34 /SI... | English |
| 4325 | wg: zeichnung 5685567645 | \n\nreceived from: dnwfhpyl.zqbldipk@gmail.com... | dnwfhpyl zqbldipk | GRP_11 | wg: zeichnung 5685567645 \n\nreceived from: dn... | German |
| 4326 | not able to access email | not able to access email.\r\n\r\nitclukpe aimc... | adlkywmc knzbuowr | GRP_0 | not able to access email not able to access em... | English |
| 4327 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | ehoxaltv ripteyxl | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 4328 | job SID_47arc2 failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_47arc2 failed in job_scheduler at: 09/... | English |
| 4329 | job SID_48arc1 failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_48arc1 failed in job_scheduler at: 09/... | English |
| 4330 | job SID_48arc2 failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_48arc2 failed in job_scheduler at: 09/... | English |
| 4331 | job SID_35arc2 failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_35arc2 failed in job_scheduler at: 09/... | English |
| 4332 | vpn doesnt check for antivirus or company doma... | refer screenshot | akisjtzm uvbmysgc | GRP_2 | vpn doesnt check for antivirus or company doma... | English |
| 4333 | job SID_37hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hotf failed in job_scheduler at: 09/... | English |
| 4334 | system disk c: of server HostName_698 is full ... | \r\n\r\nreceived from: fbyusmxz.kxvmcbly@gmail... | fbyusmxz kxvmcbly | GRP_12 | system disk c: of server HostName_698 is full ... | English |
| 4335 | reporting_tool: issues with daily sales and or... | \n\nreceived from: plfwoagd.chtpiazu@gmail.com... | plfwoagd chtpiazu | GRP_9 | reporting_tool: issues with daily sales and or... | English |
| 4336 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | dbhwzfxy amhowrfk | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 4337 | mr tmqfjard qzhgdoua, ordinary no. 100937, req... | fyi\n\nvon: axesnghb cyzuomxa \ngesendet: donn... | tmqfjard qzhgdoua | GRP_59 | mr tmqfjard qzhgdoua, ordinary no. 100937, req... | German |
| 4338 | application response time (other network resou... | while trying to ship product to usa, i am not ... | jyrzqhgt xwasiehc | GRP_18 | application response time (other network resou... | English |
| 4339 | request for mobile email access | \r\n\r\nreceived from: luxdnsvk.qmnyzcfs@gmail... | luxdnsvk qmnyzcfs | GRP_0 | request for mobile email access \r\n\r\nreceiv... | English |
| 4340 | job Job_2645 failed in job_scheduler at: 09/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 09/15... | English |
| 4341 | The | \r\n\r\nreceived from: eqmuniov.ehxkcbgj@gmail... | eqmuniov ehxkcbgj | GRP_0 | The \r\n\r\nreceived from: eqmuniov.ehxkcbgj@g... | English |
| 4342 | computer gets hot | \r\n\r\nreceived from: ucphibmr.dfvkbtsj@gmail... | ucphibmr dfvkbtsj | GRP_28 | computer gets hot \r\n\r\nreceived from: ucphi... | English |
| 4343 | kabel vga tauschen \jionmpsf wnkpzcmv | kabel vga tauschen \jionmpsf wnkpzcmv | jionmpsf wnkpzcmv | GRP_24 | kabel vga tauschen \jionmpsf wnkpzcmv kabel vg... | German |
| 4344 | monitor defekt | hallo ,\r\n\r\nder monitor von ahmet gök im m... | vaigycet jtgmpdcr | GRP_24 | monitor defekt hallo ,\r\n\r\nder monitor von ... | German |
| 4345 | install pulverleitstand \tmqfjard qzhgdoua | install pulverleitstand \tmqfjard qzhgdoua | tmqfjard qzhgdoua | GRP_24 | install pulverleitstand \tmqfjard qzhgdoua ins... | Norwegian Nynorsk |
| 4346 | falsche formatierung in pdf \bfqnvezs vwkasnxe | falsche formatierung in pdf \bfqnvezs vwkasnxe | bfqnvezs vwkasnxe | GRP_24 | falsche formatierung in pdf \bfqnvezs vwkasnxe... | German |
| 4347 | install pulverleitstand \vaigycet jtgmpdcr | install pulverleitstand \vaigycet jtgmpdcr | vaigycet jtgmpdcr | GRP_24 | install pulverleitstand \vaigycet jtgmpdcr ins... | Latin |
| 4348 | job Job_1338 failed in job_scheduler at: 09/15... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 09/15... | English |
| 4349 | crm complaint no.7611183893 - it ticket required | \r\n\r\nreceived from: wiypaqtu.lmgqbpvi@gmail... | wiypaqtu lmgqbpvi | GRP_15 | crm complaint no.7611183893 - it ticket requir... | English |
| 4350 | login failure - erp user nieghjyukea | \r\n\r\nreceived from: bwvrncih.ibuyfrcq@gmail... | bwvrncih ibuyfrcq | GRP_0 | login failure - erp user nieghjyukea \r\n\r\... | English |
| 4351 | erp-engineering tool | \n\nreceived from: bqapjkcl.ljeakcqf@gmail.com... | bqapjkcl ljeakcqf | GRP_0 | erp-engineering tool \n\nreceived from: bqapjk... | English |
| 4352 | reenable erp SID_34 account for vvaghjnthl - s... | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_2 | reenable erp SID_34 account for vvaghjnthl - s... | English |
| 4353 | logon balancing error | \r\n\r\nreceived from: wrelsfqa.qfwosjkh@gmail... | wrelsfqa qfwosjkh | GRP_0 | logon balancing error \r\n\r\nreceived from: w... | English |
| 4354 | username: mabelteghj erp logon | \r\n\r\nreceived from: gkerqucv.bqumyrea@gmail... | gkerqucv bqumyrea | GRP_0 | username: mabelteghj erp logon \r\n\r\nreceive... | English |
| 4355 | erp system | \n\nreceived from: iksqbuxf.muzxgwvk@gmail.com... | iksqbuxf muzxgwvk | GRP_0 | erp system \n\nreceived from: iksqbuxf.muzxgwv... | English |
| 4356 | erp | \r\n\r\nreceived from: vtzhelgs.ivewqogm@gmail... | vtzhelgs ivewqogm | GRP_0 | erp \r\n\r\nreceived from: vtzhelgs.ivewqogm@g... | English |
| 4357 | re; erp | \r\n\r\nreceived from: btyvqhjw.xbyolhsw@gmail... | zvenmiap kocjpnle | GRP_0 | re; erp \r\n\r\nreceived from: btyvqhjw.xbyolh... | English |
| 4358 | an terminal 12 bei iso-u können im EU_tool ke... | an terminal 12 bei iso-u können im EU_tool ke... | tiefszyh sfujdlgv | GRP_42 | an terminal 12 bei iso-u können im EU_tool ke... | German |
| 4359 | bobj error | issue while refreshing the global spend analyt... | ginjmaxk zumkvfeb | GRP_9 | bobj error issue while refreshing the global... | English |
| 4360 | job bkwin_tax_interface_qa_daily failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_tax_interface_qa_daily failed in job... | English |
| 4361 | account locked in ad | account locked in ad | gvsabjhq cgwsbiep | GRP_0 | account locked in ad account locked in ad | English |
| 4362 | delete the charm 8111117934, since it is no l... | request you to delete the above charm since it... | boirqctx bkijgqry | GRP_38 | delete the charm 8111117934, since it is no l... | English |
| 4363 | job pp_EU_tool_netch_ap2 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap2 failed in job_schedul... | English |
| 4364 | job bkwin_HostName_770_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkwin_HostName_770_inc failed in job_sched... | English |
| 4365 | unable to load engineering_tool on my new 2-1 ... | see above cell# | horzelqj ujyzldmh | GRP_0 | unable to load engineering_tool on my new 2-1 ... | English |
| 4366 | vpn and vpn will not allow access to erp | \n\nreceived from: pfzxecbo.ptygkvzl@gmail.com... | pfzxecbo ptygkvzl | GRP_0 | vpn and vpn will not allow access to erp \n\nr... | English |
| 4367 | engineering_tool phone app | \r\n\r\nreceived from: vjuxfokc.cwhxnoug@gmail... | vjuxfokc cwhxnoug | GRP_51 | engineering_tool phone app \r\n\r\nreceived fr... | English |
| 4368 | can you please remove quyhn mcgudftigre from u... | from: cwuospin nbhoxqpe \nsent: wednesday, sep... | cwuospin nbhoxqpe | GRP_26 | can you please remove quyhn mcgudftigre from u... | English |
| 4369 | since last security update i have been unable ... | error message asks me if i trust the printer, ... | trkwehzg pqjrhsul | GRP_0 | since last security update i have been unable ... | English |
| 4370 | application response time (other network resou... | please provide details in the template below (... | pbfscenq qvaylkne | GRP_4 | application response time (other network resou... | English |
| 4371 | outlook/crm error | \n\nreceived from: qjiutmel.fgvtxeoy@gmail.com... | qjiutmel fgvtxeoy | GRP_0 | outlook/crm error \n\nreceived from: qjiutmel.... | English |
| 4372 | all contacts loaded for imts -existing account... | prospect account contacts came over ok. the c... | rcbdyslq zuspjbtw | GRP_40 | all contacts loaded for imts -existing account... | English |
| 4373 | job SID_37hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hotf failed in job_scheduler at: 09/... | English |
| 4374 | login issue | login issue\r\n-verified user details.(employe... | ojgxundh aegxpmvd | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 4375 | office 2013 for qohfjpna exphkims shows activa... | we needed to reimage the pc of qohfjpna exphki... | kbnfxpsy gehxzayq | GRP_26 | office 2013 for qohfjpna exphkims shows activa... | English |
| 4376 | remove | \n\nreceived from: kaguhxwo.uoyipxqg@gmail.com... | kaguhxwo uoyipxqg | GRP_0 | remove \n\nreceived from: kaguhxwo.uoyipxqg@gm... | English |
| 4377 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | avpeklim eroqjzab | GRP_0 | error login on to the SID_34 system. error log... | English |
| 4378 | need to change password and get it synced on s... | need to change password and get it synced on s... | tmopbken ibzougsd | GRP_0 | need to change password and get it synced on s... | English |
| 4379 | outlook not allowing to open emails in the inbox. | outlook not allowing to open emails in the inb... | uvrwikmy yusexirn | GRP_0 | outlook not allowing to open emails in the inb... | English |
| 4380 | external monitors not detecting with dell 2in ... | external monitors not detecting with dell 2in ... | vktxjamz whbdetvp | GRP_0 | external monitors not detecting with dell 2in ... | English |
| 4381 | erp SID_34 account locked | erp SID_34 account locked | toeibhlp gukqjwnr | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 4382 | printer problem / issue information | please complete all required questions below. ... | kpogxqvn sfzjbhet | GRP_3 | printer problem / issue information please com... | English |
| 4383 | erp SID_39 password reset | erp SID_39 password reset | iehdjwvt rndtlyhv | GRP_0 | erp SID_39 password reset erp SID_39 password ... | English |
| 4384 | printer driver error | \r\n\r\nreceived from: sdbcpvtx.hzpctsla@gmail... | sdbcpvtx hzpctsla | GRP_0 | printer driver error \r\n\r\nreceived from: sd... | English |
| 4385 | pc set up for new employee -mghlisha.baranwfhr... | setup laptop for new hire:mghlisha.baranwfhrty... | fdmaluyo tvecikxn | GRP_19 | pc set up for new employee -mghlisha.baranwfhr... | English |
| 4386 | wifi issue | wifi is not getting connect | aqourvgz mkehgcdu | GRP_19 | wifi issue wifi is not getting connect | English |
| 4387 | login issue | login issue\r\n-verified user details.(employe... | zujpycos pogmachd | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 4388 | spam email | from: vmqcyzda kgvrfwcj \nsent: wednesday, sep... | vmqcyzda kgvrfwcj | GRP_0 | spam email from: vmqcyzda kgvrfwcj \nsent: wed... | English |
| 4389 | pc set up for new employee | : pc set up for new employee :krisyuhnyrtkurty... | xabkyoug wdkyiqfx | GRP_19 | pc set up for new employee : pc set up for n... | English |
| 4390 | pdf printer | i want software to print documents to pdf | vwaliogd dviwuzhm | GRP_19 | pdf printer i want software to print document... | English |
| 4391 | change the old pc | configure the new laptop and remove the old pc | jloygrwh acvztedi | GRP_19 | change the old pc configure the new laptop and... | English |
| 4392 | frequent account lockout | my account is getting locked frequently. worke... | akisjtzm uvbmysgc | GRP_2 | frequent account lockout my account is getting... | English |
| 4393 | mii uacyltoe hxgaycze from lacw8515941 : dura... | mii uacyltoe hxgaycze from lacw8515941 : dura... | rkupnshb gsmzfojw | GRP_14 | mii uacyltoe hxgaycze from lacw8515941 : dura... | English |
| 4394 | approved expense report date range error | ess portal\nexpense report 3111110041 approved... | qvtlcbyg lbnjhysc | GRP_10 | approved expense report date range error ess p... | English |
| 4395 | i am locked out of skype | The | viyglzfo ajtfzpkb | GRP_0 | i am locked out of skype The | English |
| 4396 | unable to host a skype meeting from a conferen... | unable to host a skype meeting from a conferen... | rcxmghtb ubveickr | GRP_0 | unable to host a skype meeting from a conferen... | English |
| 4397 | vip2: printer driver update | vip2: printer driver update | fabijhsd ocsnugeh | GRP_0 | vip2: printer driver update vip2: printer driv... | English |
| 4398 | erp user blocked, please unlock immediately & ... | \n\nreceived from: lixwgnto.krutnylz@gmail.com... | lixwgnto krutnylz | GRP_0 | erp user blocked, please unlock immediately & ... | German |
| 4399 | password reset from password_management_tool | password reset from password_management_tool | afplnyxb eiomnuba | GRP_0 | password reset from password_management_tool p... | English |
| 4400 | password reset | password reset | hetoyabq rcmliyot | GRP_0 | password reset password reset | English |
| 4401 | problem with printing | \r\n\r\nreceived from: iqcylpok.ascpqvni@gmail... | iqcylpok ascpqvni | GRP_0 | problem with printing \r\n\r\nreceived from: i... | English |
| 4402 | pricing error on order number 35022202. | we are unable to change the price on the order... | ejfgzqyk wpbujczy | GRP_13 | pricing error on order number 35022202. we are... | English |
| 4403 | erp SID_39 password reset | erp SID_39 password reset | rqtmpjdb ohitelsg | GRP_0 | erp SID_39 password reset erp SID_39 password ... | English |
| 4404 | reset the password for ahydmrbu fjymgtvo on ot... | hello,\r\ncould you please reset my password t... | ahydmrbu fjymgtvo | GRP_7 | reset the password for ahydmrbu fjymgtvo on ot... | English |
| 4405 | account locked in ad | name:afplnyxb eiomnuba\nlanguage:\nbrowser:mic... | afplnyxb eiomnuba | GRP_0 | account locked in ad name:afplnyxb eiomnuba\nl... | English |
| 4406 | :unable to log on to outlook this morning | unable to log on to outlook this morning\r\n\r... | eziswfym cehwzojy | GRP_0 | :unable to log on to outlook this morning unab... | English |
| 4407 | unable to get skype calls | name:bixsapwu lcamiopz \nlanguage:\nbrowser:mi... | bixsapwu lcamiopz | GRP_0 | unable to get skype calls name:bixsapwu lcamio... | English |
| 4408 | power outage: vogelfontein ,sa vpn circuit is ... | what type of outage: _____network ___x__c... | rkupnshb gsmzfojw | GRP_8 | power outage: vogelfontein ,sa vpn circuit is ... | English |
| 4409 | update user to interaction desktop | update user to interaction desktop\r\nypdhesrq... | ypdhesrq eotjzyxm | GRP_7 | update user to interaction desktop update user... | English |
| 4410 | infotype 0017 for 2016-09-01 does not exist fo... | infotype 0017 for 2016-09-01 does not exist fo... | wjkzgyxh pktcqbxu | GRP_10 | infotype 0017 for 2016-09-01 does not exist fo... | English |
| 4411 | unable to install the gd&t font | name: ovxwqybe gevzkrlp\nemail: ovxwqybe.gevzk... | ovxwqybe gevzkrlp | GRP_3 | unable to install the gd&t font name: ovxwqybe... | English |
| 4412 | re: ticket_no1533125 -- comments added | \n\nreceived from: pfzxecbo.ptygkvzl@gmail.com... | pfzxecbo ptygkvzl | GRP_9 | re: ticket_no1533125 -- comments added \n\nrec... | English |
| 4413 | SID_78user locked out | SID_78user locked out | vhfucgar kwrstxqu | GRP_0 | SID_78user locked out SID_78user locked out | English |
| 4414 | mii update | mii update | dpuifqeo eglwsfkn | GRP_0 | mii update mii update | English |
| 4415 | unable to login to vpn | unable to login to vpn as the page stopped at ... | lckagtry xcrmzgli | GRP_0 | unable to login to vpn unable to login to vpn ... | English |
| 4416 | error - failed to reset cached password. | locked and unlocked the pc with the new passwo... | aylrbosw gaeycbwd | GRP_0 | error - failed to reset cached password. locke... | English |
| 4417 | vmsliazh ltksxmyv edksm005 please change sched... | the files at 0:30 h seems to have missing reco... | iewnguxv bufwxeiy | GRP_49 | vmsliazh ltksxmyv edksm005 please change sched... | English |
| 4418 | speakers not working, | issue: speakers are not working.\r\ntroublesho... | gzjtweph mnslwfqv | GRP_19 | speakers not working, issue: speakers are not... | English |
| 4419 | outlook not responding after crm sync. | outlook not responding after crm sync. | hduzwpio wrcgunso | GRP_0 | outlook not responding after crm sync. outlook... | English |
| 4420 | reset prtgghj4k password | please reset my prtgghj4k password. | horeduca ogrhivnm | GRP_0 | reset prtgghj4k password please reset my prtgg... | English |
| 4421 | can not print to tc 28 or tc19 on HostName_769 | since the mandatory it reboot on monday trkweh... | qhisflec okxaytiv | GRP_0 | can not print to tc 28 or tc19 on HostName_769... | English |
| 4422 | skype audio functionality is not working as pe... | skype audio functionality is not working as pe... | ekvtdcyq grncjlho | GRP_26 | skype audio functionality is not working as pe... | English |
| 4423 | locked out of SID_37. please reset password | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | wxievyng lfecyzik | GRP_2 | locked out of SID_37. please reset password sy... | English |
| 4424 | outlook password prompt | microsoft connectivity analyzer software confi... | srzxoiuj yjvabrzl | GRP_0 | outlook password prompt microsoft connectivity... | English |
| 4425 | erp issue for invoicing, insufficient stock mm... | customer service at usa, issues sales orders f... | houcdelq wnypackq | GRP_13 | erp issue for invoicing, insufficient stock mm... | English |
| 4426 | can't open attached inwarehouse_tools with ope... | can't open attached inwarehouse_tools with ope... | rnajgdmb fioznltc | GRP_0 | can't open attached inwarehouse_tools with ope... | English |
| 4427 | transfer tool trial reports from old laptop to... | \r\n\r\nreceived from: jkpwisnf.lgpdyncm@gmail... | jkpwisnf lgpdyncm | GRP_0 | transfer tool trial reports from old laptop to... | English |
| 4428 | mobile phone | no e-mail receipt for user jkuaslxe hrodszpl a... | atlwdyej vtlhzbix | GRP_63 | mobile phone no e-mail receipt for user jkuasl... | English |
| 4429 | mii not working | mii is taking more than 5 min to load. when it... | omufjcxr ahypftjx | GRP_0 | mii not working mii is taking more than 5 min ... | English |
| 4430 | wl43 scanner not working. | wl43 scanner not working. printer is working f... | bjtguqne xthqrzpc | GRP_33 | wl43 scanner not working. wl43 scanner not wor... | English |
| 4431 | file server not functioning | the lights at the back of one of the file serv... | jrigdbox bgyluoqn | GRP_12 | file server not functioning the lights at the ... | English |
| 4432 | shop_floor_app password misplaced. | name:deghjick culghjn\nlanguage:\nbrowser:micr... | cizplrvw ymxgteir | GRP_43 | shop_floor_app password misplaced. name:deghji... | English |
| 4433 | account unlock | account unlock | ykrteqjw lvxqjydf | GRP_0 | account unlock account unlock | English |
| 4434 | the erp - mii HostName_343 : jstart.exe serv... | the erp - mii HostName_343 : jstart.exe servi... | rkupnshb gsmzfojw | GRP_14 | the erp - mii HostName_343 : jstart.exe serv... | English |
| 4435 | mii technical error across usa location. | :in usa we are receiving a technical error on ... | aqgphjbc utjrsedy | GRP_41 | mii technical error across usa location. :in u... | English |
| 4436 | bearbeitung der aktuellen situation nicht mög... | \r\n\r\nreceived from: znqlmjvt.uhyokzlt@gmail... | znqlmjvt uhyokzlt | GRP_16 | bearbeitung der aktuellen situation nicht mög... | German |
| 4437 | mii uacyltoe hxgaycze from lacw8515941 : dura... | mii uacyltoe hxgaycze from lacw8515941 : dura... | rkupnshb gsmzfojw | GRP_8 | mii uacyltoe hxgaycze from lacw8515941 : dura... | English |
| 4438 | erp mii is not functioning. | erp mii is not functioning in raonoke rapids. ... | nrmjhuox ktuyqewp | GRP_41 | erp mii is not functioning. erp mii is not fun... | English |
| 4439 | bnsh0901 account unlock in erp SID_34 | bnsh0901 account unlock in erp SID_34 | olckhmvx pcqobjnd | GRP_0 | bnsh0901 account unlock in erp SID_34 bnsh0901... | English |
| 4440 | windows account lockout | windows account lockout | zlkhvseb bpzvrhsj | GRP_0 | windows account lockout windows account lockout | English |
| 4441 | business_client not responding | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_0 | business_client not responding \r\n\r\nreceive... | English |
| 4442 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 4443 | printer problem / issue information i am tryin... | please complete all required questions below. ... | jusenflm sufbehom | GRP_0 | printer problem / issue information i am tryin... | English |
| 4444 | vpn issue | \r\n\r\nreceived from: cobsfvjz.apkqmrdu@gmail... | cobsfvjz apkqmrdu | GRP_0 | vpn issue \r\n\r\nreceived from: cobsfvjz.apkq... | English |
| 4445 | ng_ff90 account unlock in erp SID_34 | ng_ff90 account unlock in erp SID_34 | olckhmvx pcqobjnd | GRP_0 | ng_ff90 account unlock in erp SID_34 ng_ff90 a... | English |
| 4446 | barcodescanner an eemw8144133 defekt - bitte a... | barcodescanner an eemw8144133 defekt - bitte a... | ioebfyud olfmydhn | GRP_42 | barcodescanner an eemw8144133 defekt - bitte a... | German |
| 4447 | unable to print. need a driver update. | unable to print. need a driver update. | nbcvpeui rbphxitm | GRP_0 | unable to print. need a driver update. unable ... | English |
| 4448 | unable to print. driver not updating. | unable to print. driver not updating. | eruzljih epclbgmi | GRP_0 | unable to print. driver not updating. unable t... | English |
| 4449 | job Job_593 failed in job_scheduler at: 09/14/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/14/... | English |
| 4450 | install vlc | \r\n\r\nreceived from: kxmidsga.zokivdfa@gmail... | kxmidsga zokivdfa | GRP_0 | install vlc \r\n\r\nreceived from: kxmidsga.zo... | English |
| 4451 | job bkbackup_tool_sql_prod_inc failed in job_s... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_sql_prod_inc failed in job_s... | English |
| 4452 | service kit 8150 für we01 liefern \hcuixqgj m... | service kit 8150 für we01 liefern \hcuixqgj m... | hcuixqgj mavxgqbs | GRP_24 | service kit 8150 für we01 liefern \hcuixqgj m... | English |
| 4453 | probleme mit office365 \dtlmbcrx mwuateyx | probleme mit office365 \dtlmbcrx mwuateyx | dtlmbcrx mwuateyx | GRP_24 | probleme mit office365 \dtlmbcrx mwuateyx prob... | English |
| 4454 | probleme mit chargenverwaltung \tmqfjard qzhgdoua | probleme mit chargenverwaltung \tmqfjard qzhgdoua | tmqfjard qzhgdoua | GRP_24 | probleme mit chargenverwaltung \tmqfjard qzhgd... | German |
| 4455 | probleme mit chargenverwaltung \howfanzi siavgtby | probleme mit chargenverwaltung \howfanzi siavgtby | howfanzi siavgtby | GRP_24 | probleme mit chargenverwaltung \howfanzi siavg... | German |
| 4456 | setup new ws \uadkqcsj xtmjlari | setup new ws \uadkqcsj xtmjlari | uadkqcsj xtmjlari | GRP_24 | setup new ws \uadkqcsj xtmjlari setup new ws \... | un |
| 4457 | need assistance to transfer elengineering tool... | need assistance to transfer elengineering tool... | zfvyejcx euanqiht | GRP_28 | need assistance to transfer elengineering tool... | English |
| 4458 | job Job_499 failed in job_scheduler at: 09/14/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_499 failed in job_scheduler at: 09/14/... | English |
| 4459 | excel issue | \r\n\r\nreceived from: anuxbyzg.bvsqcjkw@gmail... | anuxbyzg bvsqcjkw | GRP_16 | excel issue \r\n\r\nreceived from: anuxbyzg.bv... | English |
| 4460 | freischaltung des ordners "ce ap daten" im lau... | bitte für oben genannten ordner schreib- und ... | qfetblky iwflmhuc | GRP_34 | freischaltung des ordners "ce ap daten" im lau... | German |
| 4461 | efdl8111218 - outlook issue | \r\n\r\nreceived from: wcnfvajb.kxylsamv@gmail... | wcnfvajb kxylsamv | GRP_0 | efdl8111218 - outlook issue \r\n\r\nreceived f... | English |
| 4462 | job Job_481 failed in job_scheduler at: 09/14/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_481 failed in job_scheduler at: 09/14/... | English |
| 4463 | restore deleted opportunities | hello shikghtyuha,\n\nper my email it seems th... | rqfmcjak gcxvtbrz | GRP_40 | restore deleted opportunities hello shikghtyuh... | English |
| 4464 | please reactivate the id - tempuser in SID_34 ... | pls reset the password for tempuser for erp SI... | lckagtry xcrmzgli | GRP_2 | please reactivate the id - tempuser in SID_34 ... | English |
| 4465 | job Job_501 failed in job_scheduler at: 09/14/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_501 failed in job_scheduler at: 09/14/... | English |
| 4466 | frequent wifi diconnection in the new bay at b... | team,\r\n\r\nplease check we are having freque... | awsqjfkm dejmuhlg | GRP_4 | frequent wifi diconnection in the new bay at b... | English |
| 4467 | job Job_483 failed in job_scheduler at: 09/14/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_483 failed in job_scheduler at: 09/14/... | English |
| 4468 | pc eemw8144218 und drucker im abstechprogramdn... | pc eemw8144218 und drucker im abstechprogramdn... | ukvlnrwb fiyeczmh | GRP_42 | pc eemw8144218 und drucker im abstechprogramdn... | German |
| 4469 | please reset my SID_34 erp password. | \r\n\r\nreceived from: ipqgrnxk.acxedqjm@gmail... | ipqgrnxk acxedqjm | GRP_0 | please reset my SID_34 erp password. \r\n\r\... | English |
| 4470 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 4471 | erpï½11 locked | \n\nreceived from: zuxcfonv.nyhpkrbe@gmail.com... | zuxcfonv nyhpkrbe | GRP_0 | erpï½11 locked \n\nreceived from: zuxcfonv.n... | English |
| 4472 | zollerfgh machine image restoration | \r\n\r\nreceived from: vkzwibco.pueyvhoi@gmail... | vkzwibco pueyvhoi | GRP_19 | zollerfgh machine image restoration \r\n\r\nre... | English |
| 4473 | drucker em93 (bei frau zeilmann) defekt: das p... | drucker em93 (bei frau zeilmann) defekt: das p... | ltxzfcgm sxvigclz | GRP_42 | drucker em93 (bei frau zeilmann) defekt: das p... | German |
| 4474 | hardware damage | \r\n\r\nreceived from: skmdgnuh.utgclesd@gmail... | skmdgnuh utgclesd | GRP_19 | hardware damage \r\n\r\nreceived from: skmdgnu... | English |
| 4475 | erp logon password | \n\nreceived from: ryculmsd.wofgvkrb@gmail.com... | ryculmsd wofgvkrb | GRP_0 | erp logon password \n\nreceived from: ryculmsd... | English |
| 4476 | prdord226024765 226024766 226024794 ... | the business transaction cannot be carried out. | rqpfshjd qiulphdr | GRP_45 | prdord226024765 226024766 226024794 ... | English |
| 4477 | enterprise scan client (open text) for erp nee... | computer eagw000312t\r\nconnected scanner is f... | rhinvtua aquyjfbs | GRP_0 | enterprise scan client (open text) for erp nee... | English |
| 4478 | job Job_1148 failed in job_scheduler at: 09/14... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 09/14... | English |
| 4479 | vpn ä¸èƒ½è¿žæŽ¥ï¼Œæç¤ºæ— 法找打防病毒... | vpn ä¸èƒ½è¿žæŽ¥ï¼Œæç¤ºæ— 法找打防病毒... | nhrwdaep orvxhyiw | GRP_31 | vpn ä¸èƒ½è¿žæŽ¥ï¼Œæç¤ºæ— 法找打防病毒... | Latin |
| 4480 | monthly quality working group (qwg) - global r... | hello help team, \r\n\r\npls see ralf's email ... | scjxobhd ldypjkmf | GRP_16 | monthly quality working group (qwg) - global r... | English |
| 4481 | need support | \r\n\r\nreceived from: ehfvwltg.eakjbtoi@gmail... | ehfvwltg eakjbtoi | GRP_29 | need support \r\n\r\nreceived from: ehfvwltg.e... | English |
| 4482 | bw server error message | hello team,\n\none of company user, uxndyfrs v... | uxndyfrs vahxnfgl | GRP_9 | bw server error message hello team,\n\none of ... | English |
| 4483 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | psbulrdt jxkvzmnf | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 4484 | i am unable to update profile details. | i am unable to update profile details/ its giv... | duwvesim cixqbmfr | GRP_25 | i am unable to update profile details. i am un... | English |
| 4485 | virus in my laptop | \r\n\r\nreceived from: gqwdslpc.clhgpqnb@gmail... | omLHxJVE PYudFZBW | GRP_50 | virus in my laptop \r\n\r\nreceived from: gqwd... | English |
| 4486 | account is getting locked from HostName_895 | account is getting locked from HostName_895 | vwdghyai pjehycoz | GRP_2 | account is getting locked from HostName_895 ac... | English |
| 4487 | vpn 连接åŽè‡ªåЍæ–开。 | vpn 连接åŽè‡ªåЍæ–开,æç¤ºè°ƒåˆ¶è§£è°ƒ... | tmufgokq qtzavows | GRP_31 | vpn 连接åŽè‡ªåЍæ–开。 vpn 连接åŽè‡ªå... | English |
| 4488 | i am having problems logging into the na vpn. | i am having problems logging into the na vpn. ... | htsnaodb adjtmlzn | GRP_0 | i am having problems logging into the na vpn. ... | English |
| 4489 | companyguest wifi login pw & user name | \r\n\r\nreceived from: yhmzxcia.heszapvl@gmail... | yhmzxcia heszapvl | GRP_4 | companyguest wifi login pw & user name \r\n\r\... | English |
| 4490 | delivery 9169288744 displaying no intercompany... | unable to process order through k.i.s shipping... | xnqzhtwu hivumtfz | GRP_18 | delivery 9169288744 displaying no intercompany... | English |
| 4491 | cannot log into vpn | name:cagrty\nlanguage:\nbrowser:microsoft inte... | iehdjwvt rndtlyhv | GRP_0 | cannot log into vpn name:cagrty\nlanguage:\nbr... | English |
| 4492 | erp account unlocked | erp account unlocked | oylukbas hzrbaksx | GRP_0 | erp account unlocked erp account unlocked | English |
| 4493 | job SID_48hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_48hotf failed in job_scheduler at: 09/... | English |
| 4494 | job SID_37hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hoti failed in job_scheduler at: 09/... | English |
| 4495 | job SID_37hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hoti failed in job_scheduler at: 09/... | English |
| 4496 | timecards are not generating automatically | timecards are not generating automatically | usimqbpw yufaedbo | GRP_36 | timecards are not generating automatically tim... | English |
| 4497 | circuit outage: germany, germany-(company) pri... | what type of outage: _____network __x___c... | dkmcfreg anwmfvlg | GRP_8 | circuit outage: germany, germany-(company) pri... | English |
| 4498 | network outage at israel, israel ( sales facil... | what type of outage: __x___network _____c... | uvrbhlnt bjrmalzi | GRP_8 | network outage at israel, israel ( sales facil... | English |
| 4499 | circuit outage: paris - () company primary mpl... | what type of outage: _____network ___x__c... | dkmcfreg anwmfvlg | GRP_8 | circuit outage: paris - () company primary mpl... | English |
| 4500 | network outage: Israel, israel - (company) net... | what type of outage: ___x__network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: Israel, israel - (company) net... | English |
| 4501 | 制粉三楼控制室电脑故障 | 制粉三楼控制室电脑ä¸èƒ½å¼€å¯ï¼Œç”µæ... | agyvbnwz mxsonkdc | GRP_48 | 制粉三楼控制室电脑故障 制粉三楼... | English |
| 4502 | é“¸é€ è½¦é—´ç”µè„‘æ•…éšœ | é“¸é€ è½¦é—´è®°å½•ç”Ÿäº§æ•°æ®çš„电脑ä¸èƒ½å... | ncwfeytj tumlheoi | GRP_48 | é“¸é€ è½¦é—´ç”µè„‘æ•…éšœ é“¸é€ è½¦é—´è®°å½•ç”Ÿ... | English |
| 4503 | 用å‹å®šæœŸå¤‡ä»½ä¸æˆåŠŸ | æœåŠ¡å™¨ç«¯ç”¨å‹ç³»ç»Ÿæœ€è¿‘åŠä¸ªæœˆæ—¥å¤‡ä... | igdnsjhz awnftgev | GRP_48 | 用å‹å®šæœŸå¤‡ä»½ä¸æˆåŠŸ æœåŠ¡å™¨ç«¯ç”¨å‹... | English |
| 4504 | circuit outage: germany, steel plant - (compan... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | circuit outage: germany, steel plant - (compan... | English |
| 4505 | request to reset microsoft online services pa... | \r\n\r\nkind | rcfwnpbi kvhedyrc | GRP_0 | request to reset microsoft online services pa... | English |
| 4506 | inqury-does email work on phone without inter... | inqury-does email work on phone without inter... | zneyrlhg bfiwanze | GRP_0 | inqury-does email work on phone without inter... | English |
| 4507 | wallpaper is beshryu, need to change to window... | wallpaper is beshryu, need to change to window... | dabkvsqt grtwfdxb | GRP_0 | wallpaper is beshryu, need to change to window... | English |
| 4508 | unable to communicate to savin c2525 printer | unable to communicate to savin c2525 printer | umdyvbxo qwzstijr | GRP_0 | unable to communicate to savin c2525 printer u... | English |
| 4509 | HostName_1010(erp search_server server): erpst... | HostName_1010(erp search_server server): erpst... | dkmcfreg anwmfvlg | GRP_14 | HostName_1010(erp search_server server): erpst... | English |
| 4510 | ms excel right click not working. | ms excel right click not working.\r\n-connecte... | lwgytuxq qspdztiw | GRP_0 | ms excel right click not working. ms excel rig... | English |
| 4511 | uacyltoe hxgayczeing is available but i can't ... | uacyltoe hxgayczeing is available but i can't ... | htnvbwxs gwfrzuex | GRP_0 | uacyltoe hxgayczeing is available but i can't ... | English |
| 4512 | update on inplant_858893 | update on inplant_858893 | rbozivdq gmlhrtvp | GRP_0 | update on inplant_858893 update on inplant_858893 | English |
| 4513 | mobile device activation | mobile device activation | bftsxkre tqvelzks | GRP_0 | mobile device activation mobile device activa... | English |
| 4514 | pos report does not pull the search results. | pos report does not pull the search results.\n... | rqtmpjdb ohitelsg | GRP_21 | pos report does not pull the search results. p... | English |
| 4515 | unable to print from tc53_ps printer | unable to print from tc53_ps printer | nwqktzlx vnlqkgpb | GRP_0 | unable to print from tc53_ps printer unable to... | English |
| 4516 | unable to connect to printer | unable to connect to printer | pbxmauen mgekhcyf | GRP_0 | unable to connect to printer unable to connec... | English |
| 4517 | unable to print, keeps asking to install drive... | unable to print, keeps asking to install drive... | csmhykge mpxbjudw | GRP_0 | unable to print, keeps asking to install drive... | English |
| 4518 | unable to print. | i am not able to print in usa. | fsqozrxn ejctvlxu | GRP_0 | unable to print. i am not able to print in u... | English |
| 4519 | npr issues | i need access to the npr template. i can load ... | qdmrlzby ouvyfkwc | GRP_21 | npr issues i need access to the npr template. ... | English |
| 4520 | creating a group in collaboration_platform - g... | i am trying to create a group under people in ... | cowqyjzm fzsxgapt | GRP_16 | creating a group in collaboration_platform - g... | English |
| 4521 | approve primary email if crm user "kpobysnc tq... | approve primary email of the crm qlhmawgi sgwi... | ugephfta hrbqkvij | GRP_16 | approve primary email if crm user "kpobysnc tq... | English |
| 4522 | computer won't connect to printer - keeps inst... | hello, it team! this afternoon, my computer h... | gknztesj jysobgwa | GRP_0 | computer won't connect to printer - keeps inst... | English |
| 4523 | setup client on e7350 from a e5440 laptop | setup client on e7350 from a e5440 laptop | horzelqj ujyzldmh | GRP_3 | setup client on e7350 from a e5440 laptop setu... | English |
| 4524 | unable to open a powerpoint file | name:lpriokwa bgwneavl\nlanguage:\nbrowser:mic... | lpriokwa bgwneavl | GRP_0 | unable to open a powerpoint file name:lpriokwa... | English |
| 4525 | cannot sync my internal collaboration_platform... | i updated my password using password_managemen... | zhwktnia dfhormwk | GRP_0 | cannot sync my internal collaboration_platform... | English |
| 4526 | generirtc issue about msoffice version | generirtc issue about msoffice version | rwhavckz drvxyihj | GRP_0 | generirtc issue about msoffice version generir... | English |
| 4527 | vip 2 - german payroll collaboration_platform ... | \n\nreceived from: sbgvrncj.idfhtoqv@gmail.com... | sbgvrncj idfhtoqv | GRP_16 | vip 2 - german payroll collaboration_platform ... | English |
| 4528 | erp password reset | ic\n welcome, our next available agent will be... | utpmyswa ilysqzgt | GRP_0 | erp password reset ic\n welcome, our next avai... | English |
| 4529 | erp SID_34 account unlock for laffekr | erp SID_34 account unlock for laffekr | mfeyouli ndobtzpw | GRP_0 | erp SID_34 account unlock for laffekr erp SID_... | English |
| 4530 | blank call | blank call | fumkcsji sarmtlhy | GRP_0 | blank call blank call | English |
| 4531 | ticket update on inplant_859811 | ticket update on inplant_859811 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_859811 ticket update ... | English |
| 4532 | ticket update on inplant_859826 | ticket update on inplant_859826 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_859826 ticket update ... | English |
| 4533 | background reports in erp are not running | hello,\r\n\r\nmy nightly erp reports are no lo... | omufjcxr ahypftjx | GRP_13 | background reports in erp are not running hell... | English |
| 4534 | i am locked out of crm and need to get in to g... | name:vfjsubao yihelxgp\nlanguage:\nbrowser:net... | vfjsubao yihelxgp | GRP_0 | i am locked out of crm and need to get in to g... | English |
| 4535 | please activate my new iphone, it is a company... | from: nwfodmhc exurcwkm \nsent: tuesday, septe... | fmzdkyqv dbrslnhe | GRP_0 | please activate my new iphone, it is a company... | English |
| 4536 | unable to log in to windows | unable to log in to windows | fvdtiebg lfrdtizj | GRP_0 | unable to log in to windows unable to log in ... | English |
| 4537 | lhqsm455 :'h' drive is over 85% space consumed... | volume: h:\ label:dat4-lhqsm455 3eea8d28 on se... | jloygrwh acvztedi | GRP_1 | lhqsm455 :'h' drive is over 85% space consumed... | English |
| 4538 | audio doesnt work anymore on my laptop | neither my earbuds nor plantronics are working... | mkdptnhv rawxhtgz | GRP_0 | audio doesnt work anymore on my laptop neither... | English |
| 4539 | printer installation | name:fbhyeksq caexmols\nlanguage:\nbrowser:mic... | fbhyeksq caexmols | GRP_0 | printer installation name:fbhyeksq caexmols\nl... | English |
| 4540 | outlook does not start | outlook does not start | ojmagzdu qepicvlz | GRP_0 | outlook does not start outlook does not start | English |
| 4541 | erp SID_34 account locked | unlocked. and confirmed with user. | cwmiksxf iamtgrvd | GRP_0 | erp SID_34 account locked unlocked. and confir... | English |
| 4542 | locked out of password_management_tool | \n\nreceived from: vfjsubao.yihelxgp@gmail.com... | vfjsubao yihelxgp | GRP_0 | locked out of password_management_tool \n\nrec... | English |
| 4543 | unable to connect to tx02 and tx03 | unable to connect to tx02 and tx03 | hldkncve ptrikgvb | GRP_0 | unable to connect to tx02 and tx03 unable to c... | English |
| 4544 | outlook does not start. | outlook does not start. | wczrtsja crwioekx | GRP_0 | outlook does not start. outlook does not start. | English |
| 4545 | ticket udpate on inplant_856928 | \r\n\r\nfrom: fumkcsji sarmtlhyanardhanan \r\n... | fumkcsji sarmtlhy | GRP_0 | ticket udpate on inplant_856928 \r\n\r\nfrom: ... | English |
| 4546 | add rqiw8514281 to rqigfgage qlhmawgi sgwipoxn | name:seghyurghei\nlanguage:\nbrowser:microsoft... | mfeyouli ndobtzpw | GRP_34 | add rqiw8514281 to rqigfgage qlhmawgi sgwipoxn... | English |
| 4547 | time cards missing from service -now & change ... | from: sagfhosh karhtyiio \nsent: tuesday, sept... | jloygrwh acvztedi | GRP_36 | time cards missing from service -now & change ... | English |
| 4548 | pdf files are not getting saved (freezes) from... | pdf files are not getting saved (freezes) from... | cqwtksbu tgxockrn | GRP_0 | pdf files are not getting saved (freezes) from... | English |
| 4549 | call disconnected due to vpn disconnection | call disconnected due to vpn disconnection | rbozivdq gmlhrtvp | GRP_0 | call disconnected due to vpn disconnection cal... | English |
| 4550 | call disconnected due to vpn disconnection | call disconnected due to vpn disconnection | rbozivdq gmlhrtvp | GRP_0 | call disconnected due to vpn disconnection cal... | English |
| 4551 | unable to print from cl_75 | unable to print from cl_75 | etvendormhd xpslzunb | GRP_0 | unable to print from cl_75 unable to print fro... | English |
| 4552 | german call // caller disconnected | german call // caller disconnected | rbozivdq gmlhrtvp | GRP_0 | german call // caller disconnected german call... | English |
| 4553 | microsoft word stopped working - unable to ope... | microsoft word stopped working - unable to ope... | epgjmacy hktjzngw | GRP_0 | microsoft word stopped working - unable to ope... | English |
| 4554 | user wanted to contact hr | user wanted to contact hr | rbozivdq gmlhrtvp | GRP_0 | user wanted to contact hr user wanted to conta... | English |
| 4555 | password expired | password expired | diwlhstv hfktxpib | GRP_0 | password expired password expired | English |
| 4556 | job Job_585 failed in job_scheduler at: 09/13/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_585 failed in job_scheduler at: 09/13/... | English |
| 4557 | frequently getting error in outlook application. | frequently getting error in outlook applicatio... | xgcnzwsh rwyctfzk | GRP_19 | frequently getting error in outlook applicatio... | English |
| 4558 | call got disconnected as vpn went off for a while | call got disconnected as vpn went off for a while | rbozivdq gmlhrtvp | GRP_0 | call got disconnected as vpn went off for a wh... | English |
| 4559 | auto output for inwarehouse_tools | auto output for inwarehouse_tools. siemens cm... | DEsowkrH sciejzNE | GRP_13 | auto output for inwarehouse_tools auto output ... | English |
| 4560 | printer problem / issue information - recurrin... | please complete all required questions below. ... | rxqtvanc kthqwxvb | GRP_12 | printer problem / issue information - recurrin... | English |
| 4561 | zcor0003; variants plant_271 and rodstock not ... | zcor0003; variants plant_271 and rodstock not ... | rpinaqvc hyomubns | GRP_44 | zcor0003; variants plant_271 and rodstock not ... | English |
| 4562 | unable to create a new expense | unable to create a new expense as its showing ... | rbozivdq gmlhrtvp | GRP_0 | unable to create a new expense unable to creat... | English |
| 4563 | sandir02 (usa,pa):the interface fc9/45 (10.1.1... | sandir02 (usa,pa):the interface fc9/45 (10.1.1... | oldrctiu bxurpsyi | GRP_8 | sandir02 (usa,pa):the interface fc9/45 (10.1.1... | English |
| 4564 | inwarehouse_tools were not included to payment... | inwarehouse_tools were not included to payment... | ihfkwzjd erbxoyqk | GRP_10 | inwarehouse_tools were not included to payment... | English |
| 4565 | account unlocked | account unlocked | nhckjuyq esoadhlv | GRP_0 | account unlocked account unlocked | English |
| 4566 | ticket update on inplant_859389 | ticket update on inplant_859389 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_859389 ticket update ... | English |
| 4567 | unable to connect to vpn | unable to connect to vpn | ctbjdrnf lideywqv | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 4568 | call from private number // got disconnected | call from private number // got disconnected | rbozivdq gmlhrtvp | GRP_0 | call from private number // got disconnected c... | English |
| 4569 | i am not able to connect to my regular printer... | x5380 | koiapqbg teyldpkw | GRP_0 | i am not able to connect to my regular printer... | English |
| 4570 | company-na-usa-usa-switch-tc02-1-2960-access-s... | company-na-usa-usa-switch-tc02-1-2960-access-s... | oldrctiu bxurpsyi | GRP_8 | company-na-usa-usa-switch-tc02-1-2960-access-s... | English |
| 4571 | maschinen pc von r241 im bereich kentip lässt... | maschinen pc von r241 im bereich kentip lässt... | ljxzyriq zqxkrcev | GRP_33 | maschinen pc von r241 im bereich kentip lässt... | German |
| 4572 | erp probleme | wenn ich am rechner evh8114148 im erp eine zei... | jnktafrs ytxiowbh | GRP_0 | erp probleme wenn ich am rechner evh8114148 im... | German |
| 4573 | impossible to remove "country of origin" data ... | we've made a uacyltoe hxgaycze with xawlkiey d... | hadbkvwt touedfyr | GRP_13 | impossible to remove "country of origin" data ... | English |
| 4574 | urgent!!!!! personnel number not accepted by ... | personnel number not accepted by travel expens... | bgaxwntz biofkvrs | GRP_52 | urgent!!!!! personnel number not accepted by ... | English |
| 4575 | HostName_1043:average (4 samples) disk free on... | HostName_1043:average (4 samples) disk free on... | rkupnshb gsmzfojw | GRP_12 | HostName_1043:average (4 samples) disk free on... | English |
| 4576 | zurücksetzen auf 12.09.2016 | \n\nreceived from: cflrqoew.qbgjwaye@gmail.com... | cflrqoew qbgjwaye | GRP_24 | zurücksetzen auf 12.09.2016 \n\nreceived from... | German |
| 4577 | probleme mit portal \ujtmipzv cwdzunxs | probleme mit portal \ujtmipzv cwdzunxs | qidgvtwa qvbutayx | GRP_24 | probleme mit portal \ujtmipzv cwdzunxs problem... | Danish |
| 4578 | zeiterfassung funktioniert nicht \we_qs \quali... | zeiterfassung funktioniert nicht \we_qs \quali... | xwirzvda okhyipgr | GRP_24 | zeiterfassung funktioniert nicht \we_qs \quali... | English |
| 4579 | scanner metroligic für rechner we_wu160 defek... | canner metroligic für rechner we_wu160 defekt... | jionmpsf wnkpzcmv | GRP_24 | scanner metroligic für rechner we_wu160 defek... | English |
| 4580 | install company barcode für ewew8323504 \vzqo... | install company barcode für ewew8323504 \vzqo... | vzqomdgt jwoqbuml | GRP_24 | install company barcode für ewew8323504 \vzqo... | Uzbek |
| 4581 | job Job_593 failed in job_scheduler at: 09/13/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 09/13/... | English |
| 4582 | repeat print in tips printer | repeat print in tips printer | aikejxpb xdavwocg | GRP_31 | repeat print in tips printer repeat print in t... | English |
| 4583 | HostName_1193 - f:\ label:dat1-HostName_1193 3... | HostName_1193 - f:\ label:dat1-HostName_1193 3... | spxqmiry zpwgoqju | GRP_12 | HostName_1193 - f:\ label:dat1-HostName_1193 3... | English |
| 4584 | qlhmawgi sgwipoxn we_wu160 unlock | qlhmawgi sgwipoxn we_wu160 unlock | olckhmvx pcqobjnd | GRP_0 | qlhmawgi sgwipoxn we_wu160 unlock qlhmawgi sgw... | English |
| 4585 | purchasing freetext requisitions cannot be cre... | we are having serious issues with creating sho... | ckmnouwi nxmtkubc | GRP_29 | purchasing freetext requisitions cannot be cre... | English |
| 4586 | vip2- outlook not working, asking for password | vip2- outlook not working, asking for password... | zanivrec capbfhur | GRP_0 | vip2- outlook not working, asking for password... | English |
| 4587 | we need a dn for 5018069717 material 2837572 ... | we need a dn for 5018069717 material 2837572 ... | wckrxovs aunsgzmd | GRP_6 | we need a dn for 5018069717 material 2837572 ... | English |
| 4588 | can not access in SID_1 | can not access in SID_1 | qnvkwalx dfjtxigl | GRP_0 | can not access in SID_1 can not access in SID_1 | English |
| 4589 | fehler bei bestellung in -purchasing- katalog | \n\nreceived from: pltkqrfd.bfohnjmz@gmail.com... | pltkqrfd bfohnjmz | GRP_29 | fehler bei bestellung in -purchasing- katalog ... | German |
| 4590 | need cute pdf installed. | need cute pdf installed. | vgptfdqw yjqeridp | GRP_19 | need cute pdf installed. need cute pdf installed. | English |
| 4591 | vpn not working | from: yuxloigj tzfwjxhe \r\nsent: tuesday, sep... | cyzonilx jyhutqpd | GRP_0 | vpn not working from: yuxloigj tzfwjxhe \r\nse... | English |
| 4592 | user tfazwrdv upwonzvd’s pc name has been ch... | \r\n\r\nreceived from: sthyuraj.sektyhar@compa... | tfazwrdv upwonzvd | GRP_7 | user tfazwrdv upwonzvd’s pc name has been ch... | English |
| 4593 | ethics | \r\n\r\nreceived from: gasbfqvp.fmvqgjih@gmail... | gasbfqvp fmvqgjih | GRP_23 | ethics \r\n\r\nreceived from: gasbfqvp.fmvqgji... | German |
| 4594 | i can't do purchase requisition at purchasing ... | i can't do purchase requisition at purchasing ... | maiklcjz ltwrfysm | GRP_29 | i can't do purchase requisition at purchasing ... | English |
| 4595 | job Job_1148 failed in job_scheduler at: 09/13... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 09/13... | English |
| 4596 | computer can't started | computer can't started | zyblacuk mvjqwgzn | GRP_31 | computer can't started computer can't started | English |
| 4597 | need to install nvyjtmca xjhpznds applications | need to install nvyjtmca xjhpznds applications... | spxqmiry zpwgoqju | GRP_19 | need to install nvyjtmca xjhpznds applications... | English |
| 4598 | no new fax-in on ricoh fax folder at company m... | we cannot see new fax-in to "public (\\amssm0... | srpkmdcg skdubtnr | GRP_12 | no new fax-in on ricoh fax folder at company m... | English |
| 4599 | outloot è€æ˜¯æç¤ºè¾“入密ç ,更改密ç... | outloot è€æ˜¯æç¤ºè¾“入密ç ,更改密ç... | cnxbswhv qmtngeyh | GRP_30 | outloot è€æ˜¯æç¤ºè¾“入密ç ,更改密ç... | English |
| 4600 | job bkwin_search_server_qa_daily failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_search_server_qa_daily failed in job... | English |
| 4601 | extract file for the request 2626619 | extract the file for the request 2626619 using... | vthuzanc fqdgotvx | GRP_9 | extract file for the request 2626619 extract ... | English |
| 4602 | please help qskwgjym bsqdaxhf delete paramdnty... | please help qskwgjym bsqdaxhf delete paramdnty... | hlrmufzx qcdzierm | GRP_10 | please help qskwgjym bsqdaxhf delete paramdnty... | English |
| 4603 | job SID_37stat failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_37stat failed in job_scheduler at: 09/... | English |
| 4604 | gr error | \r\n\r\nreceived from: gkwcxzum.answkqpe@gmail... | gkwcxzum answkqpe | GRP_29 | gr error \r\n\r\nreceived from: gkwcxzum.answk... | English |
| 4605 | switch down - company-ap-ind-kirty-coating-29... | switch down - company-ap-ind-kirty-coating-29... | spxqmiry zpwgoqju | GRP_8 | switch down - company-ap-ind-kirty-coating-29... | English |
| 4606 | job bkwin_tax_interface_dev_daily failed in jo... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_tax_interface_dev_daily failed in jo... | English |
| 4607 | could you resolve item category error during z... | \r\n\r\nreceived from: fbvpcytz.nokypgvx@gmail... | fbvpcytz nokypgvx | GRP_13 | could you resolve item category error during z... | English |
| 4608 | job bk_hana_SID_62_erp_dly_dp failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bk_hana_SID_62_erp_dly_dp failed in job_sc... | English |
| 4609 | job SID_46filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_46filesys failed in job_scheduler at: ... | English |
| 4610 | job SID_38filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_38filesys failed in job_scheduler at: ... | English |
| 4611 | lnssm005: shop_floor_app application is down o... | the shop_floor_app is reporting a : unreachabl... | mnlazfsr mtqrkhnx | GRP_1 | lnssm005: shop_floor_app application is down o... | English |
| 4612 | is SID_34 down? i keep receiving a balancing ... | is SID_34 down? i keep receiving a balancing ... | pfzxecbo ptygkvzl | GRP_0 | is SID_34 down? i keep receiving a balancing ... | English |
| 4613 | windows password reset | windows password reset | nzaghmdr sgdlajvw | GRP_0 | windows password reset windows password reset | English |
| 4614 | vpn | \r\n\r\nreceived from: udetjzmn.ayueswcm@gmail... | udetjzmn ayueswcm | GRP_0 | vpn \r\n\r\nreceived from: udetjzmn.ayueswcm@g... | English |
| 4615 | skype and outlook not launching. | skype and outlook not launching.\n-connected t... | zxlhkpfi zylaghei | GRP_0 | skype and outlook not launching. skype and out... | English |
| 4616 | HostName_1193 - status f:\ is now 86% utilized. | HostName_1193 - status f:\ label:dat1-HostNam... | uvrbhlnt bjrmalzi | GRP_12 | HostName_1193 - status f:\ is now 86% utiliz... | English |
| 4617 | HostName_894 - status c:\ is now 88% utilized. | HostName_894 - status c:\ label:sys-HostName_... | uvrbhlnt bjrmalzi | GRP_8 | HostName_894 - status c:\ is now 88% utilize... | English |
| 4618 | static on call | static on call | efbwiadp dicafxhv | GRP_0 | static on call static on call | English |
| 4619 | changes made for ticket inc1545346 have caused... | changes made for ticket inc1545346 have caused... | khvzugxm yqfrcjwl | GRP_18 | changes made for ticket inc1545346 have caused... | English |
| 4620 | invalid incompletion error on so#24903890 | so#35014901 has "configuration" incompletion f... | gtfdvnry nxsaqrfh | GRP_13 | invalid incompletion error on so#24903890 so#3... | English |
| 4621 | not properly acess - excel, word,skype,outlook... | if i try to use excel, word, skype,outlook hav... | jaeuqbvt orlhenfj | GRP_0 | not properly acess - excel, word,skype,outlook... | English |
| 4622 | downloading archiving_tool software for erp SI... | from: lkwspqce knxaipyj [mailto:lkwspqce.knxai... | lkwspqce knxaipyj | GRP_0 | downloading archiving_tool software for erp SI... | English |
| 4623 | hana report will not refresh - analysis button... | see attached workbook required to be refreshed... | pfzxecbo ptygkvzl | GRP_9 | hana report will not refresh - analysis button... | English |
| 4624 | please reset my erp pasword, battel to log in-... | \n\nreceived from: gvderpbx.udrzjxkm@gmail.com... | gvderpbx udrzjxkm | GRP_0 | please reset my erp pasword, battel to log in-... | English |
| 4625 | rma receiving issue with items under 1 lb. rm... | name:debhyue fhyuiinch\nlanguage:\nbrowser:mic... | DEsowkrH sciejzNE | GRP_18 | rma receiving issue with items under 1 lb. rm... | English |
| 4626 | please help brianna get working again on busi... | please help brianna get working again on busi... | eqrknylx nqpsjhwc | GRP_7 | please help brianna get working again on busi... | English |
| 4627 | tnghnha ajuiegrson is in need of having access... | tnghnha ajuiegrson is in need of having access... | yjcrdmin jmizcfso | GRP_3 | tnghnha ajuiegrson is in need of having access... | English |
| 4628 | enterprise search - no results | the following objects/search connectors in ent... | svlcqmnb qlwerhxt | GRP_14 | enterprise search - no results the following o... | English |
| 4629 | accrual values are not matching in the compens... | there is a bug in the performance sproc that c... | aofextgk tugywidl | GRP_25 | accrual values are not matching in the compens... | English |
| 4630 | password reset | password reset | cbmryjid nkcmvwgi | GRP_0 | password reset password reset | English |
| 4631 | not able to create delivery for sto 5019168696... | not able to create delivery for sto 5019168696... | jaeuqbvt orlhenfj | GRP_29 | not able to create delivery for sto 5019168696... | English |
| 4632 | skype sound not working. | skype sound not working.\r\n-connected to the ... | gcaktshf kpgfrotd | GRP_0 | skype sound not working. skype sound not worki... | English |
| 4633 | job Job_1343 failed in job_scheduler at: 09/12... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1343 failed in job_scheduler at: 09/12... | English |
| 4634 | unable to connect to vpn | unable to connect to vpn | xeucniqa dwpsevof | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 4635 | tax not calculated | from: raghyvhdra najuty \r\nsent: monday, sept... | ikerxqwz prkyuitl | GRP_13 | tax not calculated from: raghyvhdra najuty \r... | English |
| 4636 | need to configure emails on the company iphone... | need to configure emails on the company iphone... | insbceoa czgpyrtb | GRP_0 | need to configure emails on the company iphone... | English |
| 4637 | erp queries | erp queries | esuizcrh nytvhmbq | GRP_0 | erp queries erp queries | English |
| 4638 | unlocked erp SID_34 | unlocked erp SID_34 | slrgconp onukdesq | GRP_0 | unlocked erp SID_34 unlocked erp SID_34 | English |
| 4639 | need full control access to \\HostName_768\tea... | need full control access to \\HostName_768\tea... | ncuwyeib plnzhxvc | GRP_34 | need full control access to \\HostName_768\tea... | English |
| 4640 | unable to end out an email | emailed some steps, awaiting uacyltoe hxgaycze... | peuckbvr tjihmgsv | GRP_0 | unable to end out an email emailed some steps,... | English |
| 4641 | i am having issues delivering parts to stock i... | i am having issues delivering parts to stock i... | ulmctsvi lbvrdika | GRP_45 | i am having issues delivering parts to stock i... | English |
| 4642 | could not hear user from other side. | could not hear user from other side.\r\nphone ... | efbwiadp dicafxhv | GRP_0 | could not hear user from other side. could not... | English |
| 4643 | users are unable to connect to the network dri... | users are unable to connect to the network dri... | bdeplqyj fewovrcq | GRP_12 | users are unable to connect to the network dri... | English |
| 4644 | mobile device activation | from: puxsvfwr cwkjruni \r\nsent: monday, sept... | puxsvfwr cwkjruni | GRP_0 | mobile device activation from: puxsvfwr cwkjru... | English |
| 4645 | job Job_2063c failed in job_scheduler at: 09/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063c failed in job_scheduler at: 09/1... | English |
| 4646 | unable to connect to vpn | unable to connect to vpn | yzbqwpat fdjrctbu | GRP_19 | unable to connect to vpn unable to connect to vpn | English |
| 4647 | mobile device activation | mobile device activation | feiozqbd uwljchaf | GRP_0 | mobile device activation mobile device activa... | English |
| 4648 | unable to connect wireless on the laptop | unable to connect wireless on the laptop | nouivdea boiypjvx | GRP_0 | unable to connect wireless on the laptop unabl... | English |
| 4649 | urgent : with reference to ticket : inc1549876 | uyjlodhq ymedkatw (lghuiezj3) has mapped the u... | cxqldoub vkgpatsu | GRP_39 | urgent : with reference to ticket : inc1549876... | English |
| 4650 | vpn access pc name : aidl8912285 user id : th... | vpn access pc name : aidl8912285 | yzbqwpat fdjrctbu | GRP_0 | vpn access pc name : aidl8912285 user id : th... | English |
| 4651 | out of office for at least next 3 months. need... | out of office for at least next 3 months. need... | yawbtfjc krypjxnd | GRP_0 | out of office for at least next 3 months. need... | English |
| 4652 | outlook not loading | outlook not loading | dqplrwoy cutpwjie | GRP_0 | outlook not loading outlook not loading | English |
| 4653 | no response from other side : german call | no response from other side : german call | efbwiadp dicafxhv | GRP_0 | no response from other side : german call no ... | English |
| 4654 | removing another mail box from outlook | removing another mail box from outlook | rwhavckz drvxyihj | GRP_0 | removing another mail box from outlook removin... | English |
| 4655 | unable to login to skype | unable to login to skype | wpgxtnks opizcfle | GRP_0 | unable to login to skype unable to login to skype | English |
| 4656 | erp help | \r\n\r\nreceived from: anpocezt.qturbxsg@gmail... | anpocezt qturbxsg | GRP_9 | erp help \r\n\r\nreceived from: anpocezt.qturb... | English |
| 4657 | need to contact keyhtyvin toriaytun | need to contact keyhtyvin toriaytun | ltqhgdbf qtgprmsh | GRP_0 | need to contact keyhtyvin toriaytun need to co... | English |
| 4658 | unable to launch outlook | unable to launch outlook | bdgklrnj phwmkldy | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 4659 | erp customer ref not on delivery | hoi,\r\n\r\nview attached 2 examples where the... | ugtzkvps crnmtjsv | GRP_13 | erp customer ref not on delivery hoi,\r\n\r\nv... | English |
| 4660 | please set field services collaboration_platfo... | please set field services collaboration_platfo... | glnfyoqe fexlisau | GRP_16 | please set field services collaboration_platfo... | English |
| 4661 | password manager error , failed to log-inn. no... | my phone : | kzbrimwx dconpwbu | GRP_0 | password manager error , failed to log-inn. no... | English |
| 4662 | the printout of shipament lable is not working | name:frafhyuo ajuyanni\nlanguage:\nbrowser:mic... | dmqjhrso gzbunwie | GRP_0 | the printout of shipament lable is not working... | English |
| 4663 | no response from other side. | no response from other side. | efbwiadp dicafxhv | GRP_0 | no response from other side. no response from ... | English |
| 4664 | follow up call : inplant_859346 | follow up call : inplant_859346 | efbwiadp dicafxhv | GRP_0 | follow up call : inplant_859346 follow up call... | English |
| 4665 | wifi in r&d conference room | \r\n\r\nreceived from: gdkiehbr.kdithjsr@gmail... | gdkiehbr kdithjsr | GRP_4 | wifi in r&d conference room \r\n\r\nreceived f... | English |
| 4666 | dual monitor issue | dual monitor issue | myzprshf ojvgdcwb | GRP_0 | dual monitor issue dual monitor issue | English |
| 4667 | need interaction password reset | need interaction password reset\n\nphone: | nqdyowsm yqerwtna | GRP_7 | need interaction password reset need interacti... | English |
| 4668 | password_management_tool password manager : pa... | password_management_tool password manager : pa... | xjyuobma pzgqixlj | GRP_0 | password_management_tool password manager : pa... | English |
| 4669 | bei drucker em98 papiertransport defekt | beim transport des druckerpapiers treten in re... | tczxaubk aupnwqoi | GRP_42 | bei drucker em98 papiertransport defekt beim t... | German |
| 4670 | unable to log in to the mii system | unable to log in to the mii system \r\n\r\nuse... | gcdptqae angojbil | GRP_0 | unable to log in to the mii system unable to ... | English |
| 4671 | i.t. issue | \n\nreceived from: zwirhcol.narzlmfw@gmail.com... | zwirhcol narzlmfw | GRP_3 | i.t. issue \n\nreceived from: zwirhcol.narzlmf... | English |
| 4672 | reset passwords for robhyertyj f duca using pa... | the | acteiqdu bferalus | GRP_17 | reset passwords for robhyertyj f duca using pa... | English |
| 4673 | outlook not launching | outlook not launching | zylaexnv pvkzbduh | GRP_0 | outlook not launching outlook not launching | English |
| 4674 | missing data in bex productmanagement - urgent... | \r\n\r\nreceived from: uwofavej.hxyatnjc@gmail... | uwofavej hxyatnjc | GRP_9 | missing data in bex productmanagement - urgent... | English |
| 4675 | windows password reset | windows password reset | pschzfog hbzvkqjd | GRP_0 | windows password reset windows password reset | English |
| 4676 | outlook issue. | \r\n\r\nreceived from: iqmhjlwr.jqmxaybi@gmail... | iqmhjlwr jqmxaybi | GRP_0 | outlook issue. \r\n\r\nreceived from: iqmhjlwr... | English |
| 4677 | active directory locked. | active directory locked. | kifmqeph srlzgbhw | GRP_0 | active directory locked. active directory locked. | English |
| 4678 | mobile device activated. | mobile device activated. | ayktfvjr soghziec | GRP_0 | mobile device activated. mobile device activated. | English |
| 4679 | in correct tax rate in inwarehouse_tools | \r\n\r\nreceived from: ikerxqwz.prkyuitl@gmail... | ikerxqwz prkyuitl | GRP_10 | in correct tax rate in inwarehouse_tools ... | English |
| 4680 | contractor locked out: please unlock vvlahstyu... | a student is working on a project with vinhyt... | entuakhp xrnhtdmk | GRP_53 | contractor locked out: please unlock vvlahstyu... | English |
| 4681 | need to log into skype for business | cannot access skype for business with my login... | jslqdgka clfrodny | GRP_0 | need to log into skype for business cannot acc... | English |
| 4682 | erp crm - instatnt timeout | user: fywphaxc.jacdqbks@gmail.com;\r\nissue: u... | fywphaxc jacdqbks | GRP_15 | erp crm - instatnt timeout user: fywphaxc.jacd... | English |
| 4683 | access to vpn | added user to the f5 employee group. ryafbthn ... | yalntgcz vaqjknsw | GRP_34 | access to vpn added user to the f5 employee gr... | English |
| 4684 | passwörter wothyehre | \r\n\r\nreceived from: dgwrmsja.jzlpwuit@gmail... | dgwrmsja jzlpwuit | GRP_0 | passwörter wothyehre \r\n\r\nreceived from: d... | English |
| 4685 | computer doesn't work | computer starts, but keybankrd and mouse don't... | fegahzqx bkeqfvpl | GRP_62 | computer doesn't work computer starts, but key... | English |
| 4686 | bobj explorer info spaces load issue (email se... | hi team basis, team dac,\r\n\r\nplease investi... | sholvcmf bjtpomrl | GRP_14 | bobj explorer info spaces load issue (email se... | English |
| 4687 | erp SID_34 account unlock | erp SID_34 account unlock | unhweist ednkuigf | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 4688 | account locked | account locked | zpsoifea wvhilrpz | GRP_0 | account locked account locked | English |
| 4689 | erp issue with batches | \r\n\r\nreceived from: bswlorek.yhdrlgbs@gmail... | bswlorek yhdrlgbs | GRP_18 | erp issue with batches \r\n\r\nreceived from: ... | English |
| 4690 | when entering the proven solution ps-16-939 un... | would you please delete the solution so that i... | qfwnbutk jtenbvkq | GRP_25 | when entering the proven solution ps-16-939 un... | English |
| 4691 | erp SID_34 account unlock | erp SID_34 account unlock | kxoezpwm wthpabcq | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 4692 | bitte konten erzeugen | \r\n\r\nreceived from: ughzilfm.cfibdamq@gmail... | scedxqur pocxqtrl | GRP_34 | bitte konten erzeugen \r\n\r\nreceived from: ... | German |
| 4693 | hzptilsw wusdajqv : log on balancing error for... | hzptilsw wusdajqv : log on balancing error for... | ipwjorsc uboapexr | GRP_0 | hzptilsw wusdajqv : log on balancing error for... | English |
| 4694 | lhbsm005: disk free on f:\ is now 3 % which is... | lhbsm005: disk free on f:\ is now 3 % which is... | rkupnshb gsmzfojw | GRP_12 | lhbsm005: disk free on f:\ is now 3 % which is... | English |
| 4695 | bitte die schreib / leseberechtigung für ord... | guten morgen,\r\n\r\nbitte die schreib / leseb... | htvepyua izgulrcf | GRP_24 | bitte die schreib / leseberechtigung für ord... | German |
| 4696 | revert the change done for chg0032720 | revert the change done for chg1143831 please f... | entuakhp xrnhtdmk | GRP_41 | revert the change done for chg0032720 revert t... | English |
| 4697 | search and explorer analytics issue | search and explorer analytics issue is blank i... | fbuacglh nvreldkt | GRP_49 | search and explorer analytics issue search and... | English |
| 4698 | tess application doesn't run | good morning, when i double click on the tess ... | izohnpaq jtolembh | GRP_66 | tess application doesn't run good morning, whe... | English |
| 4699 | bobj | \r\n\r\nreceived from: ctzykflo.evzbhgru@gmail... | ctzykflo evzbhgru | GRP_9 | bobj \r\n\r\nreceived from: ctzykflo.evzbhgru... | English |
| 4700 | windows account locked | good day.\r\n\r\nplease unlock users windows a... | oslzvpgk nhwsxgpb | GRP_0 | windows account locked good day.\r\n\r\nplease... | English |
| 4701 | local availability and pricing information mis... | local availability and pricing information mis... | hbmwlprq ilfvyodx | GRP_20 | local availability and pricing information mis... | English |
| 4702 | unable to turn on the computer. | unable to turn on the computer. | voprdmae ivrgdmao | GRP_0 | unable to turn on the computer. unable to turn... | English |
| 4703 | po display by vendor - not proper | po display by vendor is showing only pending p... | mnrgpfqh mblavfti | GRP_29 | po display by vendor - not proper po display b... | English |
| 4704 | private address fields are enabled on employee... | disable private address fields, new & edit but... | tavsikpl dcrkwuny | GRP_15 | private address fields are enabled on employee... | English |
| 4705 | HostName_1178 is not responding since at 1:30 ... | HostName_1178 is not responding since at 1:30 ... | mnlazfsr mtqrkhnx | GRP_12 | HostName_1178 is not responding since at 1:30 ... | English |
| 4706 | please add new user to company ru and nm - ngh... | please add new user to company ru and nm - ngh... | esguiazn pqdjtzin | GRP_7 | please add new user to company ru and nm - ngh... | English |
| 4707 | aqzcisjy raflghneib : account disabled. | aqzcisjy raflghneib : account disabled. | aorthyme rnsuipbk | GRP_0 | aqzcisjy raflghneib : account disabled. aqzcis... | English |
| 4708 | password reset collaboration_platform problem | \r\n\r\nreceived from: sbgvrncj.idfhtoqv@gmail... | sbgvrncj idfhtoqv | GRP_0 | password reset collaboration_platform problem ... | English |
| 4709 | unable to take prints & scan with new laptop | \r\n\r\nreceived from: dwujlnhs.ecxvrpyl@gmail... | dwujlnhs ecxvrpyl | GRP_0 | unable to take prints & scan with new laptop \... | English |
| 4710 | help reset erp SID_37 bw production account pa... | erp SID_37 bw production account password cha... | smktofel etsoirbw | GRP_0 | help reset erp SID_37 bw production account pa... | English |
| 4711 | error druing password change. | \r\n\r\nreceived from: fjnmxoya.iljgptas@gmail... | fjnmxoya iljgptas | GRP_0 | error druing password change. \r\n\r\nreceived... | English |
| 4712 | ooo - till 4 oct 2016 it problem - engineering... | \r\n\r\nreceived from: mikhghytr.sperhake@comp... | qvncizuf ueiybanz | GRP_0 | ooo - till 4 oct 2016 it problem - engineering... | German |
| 4713 | job Job_481 failed in job_scheduler at: 09/12/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_481 failed in job_scheduler at: 09/12/... | English |
| 4714 | der rechner von unseren schichtführern h.gabr... | hallo \r\n\r\nder rechner von unseren schichtf... | jionmpsf wnkpzcmv | GRP_24 | der rechner von unseren schichtführern h.gabr... | German |
| 4715 | rechner für messvorrichtung steli funktionier... | rechner für messvorrichtung steli funktionier... | jionmpsf wnkpzcmv | GRP_24 | rechner für messvorrichtung steli funktionier... | German |
| 4716 | probleme mit accespoint \konferenzraum f&e \ni... | probleme mit accespoint \konferenzraum f&e \ni... | niptbwdq csenjruz | GRP_24 | probleme mit accespoint \konferenzraum f&e \ni... | Zhuang |
| 4717 | probleme mit öffnen m:\wsb_exe \we_wu102 \pfj... | probleme mit öffnen m:\wsb_exe \we_wu102 \pfj... | pfjwinbg ljtzbdqg | GRP_24 | probleme mit öffnen m:\wsb_exe \we_wu102 \pfj... | Danish |
| 4718 | account locked. | account locked. | qrstgxwn fhpyxgjz | GRP_0 | account locked. account locked. | English |
| 4719 | datenlogger opus20 thip q475024 kann keine ver... | datenlogger opus20 thip q475024, wird zur übe... | qkedpfyj qechgaty | GRP_33 | datenlogger opus20 thip q475024 kann keine ver... | German |
| 4720 | remote vpn issue | i cannot connect to remote vpn using either of... | dpurliet ujlmdfac | GRP_0 | remote vpn issue i cannot connect to remote vp... | English |
| 4721 | requirement of internet access for machine pc ... | \n\nreceived from: dfiyvmec.wxioadpt@gmail.com... | dfiyvmec wxioadpt | GRP_19 | requirement of internet access for machine pc ... | English |
| 4722 | can not create inventory list | forwarded request to the rqfhiong zkwfqagb dl,... | zsqabokr xbtsaodr | GRP_18 | can not create inventory list forwarded reques... | English |
| 4723 | 转å‘: 以色列修磨/rma6001502596 | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_10 | 转å‘: 以色列修磨/rma6001502596 \n\nrece... | English |
| 4724 | account for aqzcisjy raflghneib, vvdghtteij, i... | account for aqzcisjy raflghneib, vvdghtteij, i... | sxabotdw xlozwcyk | GRP_0 | account for aqzcisjy raflghneib, vvdghtteij, i... | English |
| 4725 | password expires in 4 days | dear all, my password runs out in 4 days, i am... | jxphgfmb gjbtuwek | GRP_0 | password expires in 4 days dear all, my passwo... | English |
| 4726 | unable to set skype meeting in outlook | unable to set skype meeting in outlook | hzagqxbf fckwrsdq | GRP_0 | unable to set skype meeting in outlook unable... | English |
| 4727 | job Job_1332 failed in job_scheduler at: 09/12... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1332 failed in job_scheduler at: 09/12... | English |
| 4728 | job Job_1338 failed in job_scheduler at: 09/12... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 09/12... | English |
| 4729 | there isn't any price under customer pruchase ... | the customer group 3 of customer 81504358 has ... | phfduvwl yqnaucep | GRP_13 | there isn't any price under customer pruchase ... | English |
| 4730 | security incidents - ( #in33847938) : possibl... | source ip :195.22.28.222\r\nsource port: 80\r\... | gzhapcld fdigznbk | GRP_31 | security incidents - ( #in33847938) : possibl... | English |
| 4731 | apac apac - china company-ap-chn-china-3750g-a... | job name: | mnlazfsr mtqrkhnx | GRP_8 | apac apac - china company-ap-chn-china-3750g-a... | English |
| 4732 | unable to open .jpg , .png files | \r\n\r\nreceived from: pxbqkfgm.qexvrmcn@gmail... | pxbqkfgm qexvrmcn | GRP_0 | unable to open .jpg , .png files \r\n\r\nrecei... | English |
| 4733 | how to recall send message in outlook | how to recall send message in outlook | iwqhcmok ovxygicj | GRP_0 | how to recall send message in outlook how to r... | English |
| 4734 | reset the password for mobaidfx gviwlsrm on er... | passwort zurücksetzen - | mobaidfx gviwlsrm | GRP_0 | reset the password for mobaidfx gviwlsrm on er... | English |
| 4735 | handscanner am rückmeldeterminal 6 defekt | handscanner am rückmeldeterminal 6 defekt (ge... | mhvbnqri sacvgzxf | GRP_33 | handscanner am rückmeldeterminal 6 defekt han... | English |
| 4736 | netweaver | folgender fehler: microsoft .net framdntyework... | ogfjbrlw nwakldmx | GRP_0 | netweaver folgender fehler: microsoft .net fr... | English |
| 4737 | company engineering_tool access | \n\nreceived from: mcphgvnb.bdegqtyj@gmail.com... | mcphgvnb bdegqtyj | GRP_0 | company engineering_tool access \n\nreceived f... | English |
| 4738 | unable to connect to engineering tool | unable to connect to engineering tool | qrstgxwn fhpyxgjz | GRP_0 | unable to connect to engineering tool unable ... | English |
| 4739 | can not log into vpn | \nname:gwptzvxm rhozsfty\nlanguage:\nbrowser:m... | gwptzvxm rhozsfty | GRP_0 | can not log into vpn \nname:gwptzvxm rhozsfty\... | English |
| 4740 | sorahdyggs (ijyuvind sohytganvi ) his system i... | \r\nname:pradtheyp\r\nlanguage:\r\nbrowser:mic... | pvuyszkd mqxdtubl | GRP_0 | sorahdyggs (ijyuvind sohytganvi ) his system i... | English |
| 4741 | t/o can not be generated | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_18 | t/o can not be generated \r\n\r\nreceived from... | English |
| 4742 | job Job_1141 failed in job_scheduler at: 09/11... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1141 failed in job_scheduler at: 09/11... | English |
| 4743 | windows account locked | windows account locked | xckbimhl ymejrugf | GRP_0 | windows account locked windows account locked | English |
| 4744 | retrieving data from old to new laptop | \r\n\r\nreceived from: jkpwisnf.lgpdyncm@gmail... | jkpwisnf lgpdyncm | GRP_0 | retrieving data from old to new laptop \r\n\r\... | English |
| 4745 | windows account locked | windows account locked | chobktqj qdamxfuc | GRP_0 | windows account locked windows account locked | English |
| 4746 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 4747 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 4748 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 4749 | battery at warning status | battery showing warning status | spxqmiry zpwgoqju | GRP_19 | battery at warning status battery showing warn... | English |
| 4750 | unable to login to erp SID_34 | unable to login to erp SID_34 | vwdghyai pjehycoz | GRP_0 | unable to login to erp SID_34 unable to login... | English |
| 4751 | unable to connect to vpn | unable to connect to vpn vpn | aqdjcuhn lagfitkz | GRP_0 | unable to connect to vpn unable to connect to ... | English |
| 4752 | unlock erp logon | \r\n\r\nreceived from: jofvunqs.uwigjmzv@gmail... | jofvunqs uwigjmzv | GRP_0 | unlock erp logon \r\n\r\nreceived from: jofvun... | English |
| 4753 | security_tool password manager service down in... | lhqsm657: security_tool application is down. \... | jyoqwxhz clhxsoqy | GRP_2 | security_tool password manager service down in... | English |
| 4754 | HostName_986:(plm conversion- production) alw... | HostName_986:(plm conversion- production): a... | jyoqwxhz clhxsoqy | GRP_14 | HostName_986:(plm conversion- production) alw... | English |
| 4755 | HostName_53 : 85% space consumed. space availa... | HostName_53: volume: f:\ label:dat2-HostName_5... | jyoqwxhz clhxsoqy | GRP_12 | HostName_53 : 85% space consumed. space availa... | English |
| 4756 | lhbsm005 : 85% disk space consumed. space avai... | lhbsm005: volume: f:\ label:dat2-lhbsm005 7446... | jyoqwxhz clhxsoqy | GRP_12 | lhbsm005 : 85% disk space consumed. space avai... | English |
| 4757 | job snp_heu_6_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_6_regen failed in job_scheduler at... | English |
| 4758 | job snp_heu_5_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_5_regen failed in job_scheduler at... | English |
| 4759 | job SID_37hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hoti failed in job_scheduler at: 09/... | English |
| 4760 | job Job_1427 failed in job_scheduler at: 09/11... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1427 failed in job_scheduler at: 09/11... | English |
| 4761 | job SID_37hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hoti failed in job_scheduler at: 09/... | English |
| 4762 | job bk_hana_SID_62_os_wly_dp failed in job_sch... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bk_hana_SID_62_os_wly_dp failed in job_sch... | English |
| 4763 | job bk_hana_SID_22_os_wly failed in job_schedu... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bk_hana_SID_22_os_wly failed in job_schedu... | English |
| 4764 | vip 1 - how can i change my password remotely?... | \r\n\r\nreceived from: yxvqdtmk.kbicqjrp@gmail... | yxvqdtmk kbicqjrp | GRP_0 | vip 1 - how can i change my password remotely?... | English |
| 4765 | not able to access to t or p drives | name:cighytol yjurztgd\nlanguage:\nbrowser:mic... | cighytol yjurztgd | GRP_0 | not able to access to t or p drives name:cighy... | English |
| 4766 | unable to connect to outlook | unable to connect to outlook | kailyenh zfyvkopr | GRP_0 | unable to connect to outlook unable to connec... | English |
| 4767 | ms office 2016 installation | ms office 2016 installation\n\ncontact no:- | mcphgvnb bdegqtyj | GRP_0 | ms office 2016 installation ms office 2016 ins... | English |
| 4768 | power supplied failed on library 2. | from: timnhyt rehtyulds \nsent: sunday, septem... | rkupnshb gsmzfojw | GRP_8 | power supplied failed on library 2. from: tim... | English |
| 4769 | HostName_1010 : the service is down after the ... | HostName_1010 : the service is down after the ... | rkupnshb gsmzfojw | GRP_14 | HostName_1010 : the service is down after the ... | English |
| 4770 | job Job_579 failed in job_scheduler at: 09/11/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_579 failed in job_scheduler at: 09/11/... | English |
| 4771 | job co_val_update_crosscomp failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job co_val_update_crosscomp failed in job_sche... | English |
| 4772 | job snp_heu_1_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_1_regen failed in job_scheduler at... | English |
| 4773 | job snp_heu_2_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_2_regen failed in job_scheduler at... | English |
| 4774 | network outage: malaysia site hard down sinc... | what type of outage: __x___network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage: malaysia site hard down sinc... | English |
| 4775 | HostName_894 : c:\ label:sys-HostName_894 2838... | HostName_894 : c:\ label:sys-HostName_894 2838... | spxqmiry zpwgoqju | GRP_39 | HostName_894 : c:\ label:sys-HostName_894 2838... | English |
| 4776 | restoring ppt | restoring ppt | navfgybz fuavxjzk | GRP_0 | restoring ppt restoring ppt | English |
| 4777 | erp login-password issue. | \r\n\r\nreceived from: ojgfmvep.zbatowgi@gmail... | ojgfmvep zbatowgi | GRP_0 | erp login-password issue. \r\n\r\nreceived fro... | English |
| 4778 | job Job_1148 failed in job_scheduler at: 09/11... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1148 failed in job_scheduler at: 09/11... | English |
| 4779 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | English |
| 4780 | engineering_tool installation, ms office 2016 ... | engineering_tool installation, ms office 2016 ... | mcphgvnb bdegqtyj | GRP_0 | engineering_tool installation, ms office 2016 ... | English |
| 4781 | job SID_39cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_39cold failed in job_scheduler at: 09/... | English |
| 4782 | job SID_36cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_36cold failed in job_scheduler at: 09/... | English |
| 4783 | job SID_7cold failed in job_scheduler at: 09/7... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_7cold failed in job_scheduler at: 09/7... | English |
| 4784 | job Job_749 failed in job_scheduler at: 09/78.... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_749 failed in job_scheduler at: 09/78.... | English |
| 4785 | vpn issue | hi liuytre,\r\n\r\nsorry to hear of the issues... | qcfmxgid jvxanwre | GRP_0 | vpn issue hi liuytre,\r\n\r\nsorry to hear of ... | English |
| 4786 | ethics issue | hi liuytre,\r\n\r\nsorry to hear of the issues... | qcfmxgid jvxanwre | GRP_0 | ethics issue hi liuytre,\r\n\r\nsorry to hear ... | English |
| 4787 | erp SID_34 account locked | erp SID_34 account locked | myaornqv fkjmpxbh | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 4788 | unable to connect to vpn | unable to connect to vpn | sydgvpao aocjqrmz | GRP_0 | unable to connect to vpn unable to connect to... | English |
| 4789 | power outage:jundiai - (company):company-sifco... | what type of outage: ___x__network _____c... | oldrctiu bxurpsyi | GRP_8 | power outage:jundiai - (company):company-sifco... | English |
| 4790 | the dynamics crm url checks is reporting a : d... | observing below alert in monitoring_tool since... | oldrctiu bxurpsyi | GRP_40 | the dynamics crm url checks is reporting a : d... | English |
| 4791 | ap vpn is not getting connected | \n\nreceived from: dargthy.sohfyuimaiah@compan... | sholvcmf bjtpomrl | GRP_0 | ap vpn is not getting connected \n\nreceived f... | English |
| 4792 | circuit outage:usa:secondary vpn circuit is do... | what type of outage: _____network _x____c... | oldrctiu bxurpsyi | GRP_8 | circuit outage:usa:secondary vpn circuit is do... | English |
| 4793 | job Job_1427 failed in job_scheduler at: 09/10... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1427 failed in job_scheduler at: 09/10... | English |
| 4794 | job Job_1348 failed in job_scheduler at: 09/10... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1348 failed in job_scheduler at: 09/10... | English |
| 4795 | unable to print production orders : error : pr... | unable to print production orders since last 1... | yjkalmbr jsdyzivq | GRP_14 | unable to print production orders : error : pr... | English |
| 4796 | account locked out | account locked out | chobktqj qdamxfuc | GRP_0 | account locked out account locked out | English |
| 4797 | account lcoked out. | 389\r\nsummary:password change is locked. need... | jacgtfxo vlbeuxif | GRP_0 | account lcoked out. 389\r\nsummary:password ch... | English |
| 4798 | job Job_577 failed in job_scheduler at: 09/10/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_577 failed in job_scheduler at: 09/10/... | English |
| 4799 | job Job_549 failed in job_scheduler at: 09/09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_549 failed in job_scheduler at: 09/09/... | English |
| 4800 | clientless vpn is not working | \n\nreceived from: qklrdoba.qxivmbts@gmail.com... | qklrdoba qxivmbts | GRP_0 | clientless vpn is not working \n\nreceived fro... | English |
| 4801 | network outage: apac , site hard down since 7:... | what type of outage: __x___network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage: apac , site hard down since 7:... | English |
| 4802 | job SID_46filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_46filesys failed in job_scheduler at: ... | English |
| 4803 | job bk_hana_SID_62_erp_dly_dp failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_62_erp_dly_dp failed in job_sc... | English |
| 4804 | job Job_1348b failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1348b failed in job_scheduler at: 09/0... | English |
| 4805 | skype login issue. | skype login issue.\r\n-connected to the user s... | ltsqkane ycgwexdf | GRP_0 | skype login issue. skype login issue.\r\n-conn... | English |
| 4806 | no audio while on skype meeting | no audio while on skype meeting | epwyvjsz najukwho | GRP_0 | no audio while on skype meeting no audio whil... | English |
| 4807 | confidential - project x update - outlook issu... | \r\n\r\nreceived from: kehtxprg.uekapfzt@gmail... | kehtxprg uekapfzt | GRP_0 | confidential - project x update - outlook issu... | English |
| 4808 | job Job_577 failed in job_scheduler at: 09/09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_577 failed in job_scheduler at: 09/09/... | English |
| 4809 | the odbc connection to glovia-old no longer wo... | access can no longer connect to dsn=glovia-ol... | mfvkxghn mzjasxqd | GRP_3 | the odbc connection to glovia-old no longer wo... | English |
| 4810 | emails not updating in outlook | emails not updating in outlook | gvmqopuz vbpsxdhf | GRP_0 | emails not updating in outlook emails not upda... | English |
| 4811 | job Job_553 failed in job_scheduler at: 09/09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_553 failed in job_scheduler at: 09/09/... | English |
| 4812 | update office to 64 bit | name:kvrmnuix yicpojmf\nlanguage:\nbrowser:mic... | kvrmnuix yicpojmf | GRP_0 | update office to 64 bit name:kvrmnuix yicpojmf... | English |
| 4813 | skype error | skype error | zfdkqgmt zvqxcodk | GRP_0 | skype error skype error | Latin |
| 4814 | unable to submit a discount form | unable to submit a discount form | trmhfxoz bxofhryg | GRP_0 | unable to submit a discount form unable to sub... | English |
| 4815 | blank call // gso | blank call // gso | rbozivdq gmlhrtvp | GRP_0 | blank call // gso blank call // gso | English |
| 4816 | please install project 2013 back on the client... | please install project 2013 back on the client... | asxmeruj drqufvgj | GRP_3 | please install project 2013 back on the client... | English |
| 4817 | in engineering tool, when i try to create a ne... | in engineering tool, when i try to create a ne... | pyamiwvx terscahn | GRP_25 | in engineering tool, when i try to create a ne... | English |
| 4818 | job Job_3194 failed in job_scheduler at: 09/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 09/09... | English |
| 4819 | supply_chian_mgmt_tool password reset. | supply_chian_mgmt_tool password reset. | dslamtcb ezbmonjr | GRP_0 | supply_chian_mgmt_tool password reset. supply_... | English |
| 4820 | lauacyltoe hxgaycze java to be installed | lauacyltoe hxgaycze java to be installed | qscdktvl rihendxu | GRP_0 | lauacyltoe hxgaycze java to be installed lauac... | English |
| 4821 | chg0034110 | \n\nreceived from: afkstcev.utbnkyop@gmail.com... | afkstcev utbnkyop | GRP_0 | chg0034110 \n\nreceived from: afkstcev.utbnkyo... | English |
| 4822 | ticket update inplant_858871 | ticket update inplant_858871 | fumkcsji sarmtlhy | GRP_0 | ticket update inplant_858871 ticket update inp... | English |
| 4823 | user needs access to the engineering_tool. | user needs access to the engineering_tool. | sjhrytwn yakzbslm | GRP_0 | user needs access to the engineering_tool. use... | English |
| 4824 | unable to add contacts to markhtyeting list to... | unable to add contacts to markhtyeting list to... | vktxjamz whbdetvp | GRP_22 | unable to add contacts to markhtyeting list to... | English |
| 4825 | incident #in33541962 - phishing form submit -... | source ip: 10.38.93.30\nsource hostname: dane-... | ugyothfz ugrmkdhx | GRP_2 | incident #in33541962 - phishing form submit -... | English |
| 4826 | job Job_1427 failed in job_scheduler at: 09/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1427 failed in job_scheduler at: 09/09... | English |
| 4827 | reparo adobe pdf | os recibo gerados em pdf estão saindo com car... | frjpkuwq rtznexbq | GRP_0 | reparo adobe pdf os recibo gerados em pdf estÃ... | Portuguese |
| 4828 | design_tool service: file naming convention ha... | the geengineering_tooloductdata web service ca... | fyuqhlcx fjiuhxae | GRP_25 | design_tool service: file naming convention ha... | English |
| 4829 | ticket update on inplant_858893 | ticket update on inplant_858893 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_858893 ticket update ... | English |
| 4830 | dell 7350 tablet cracked after it was accident... | dell 7350 tablet cracked after it was accident... | qcxivzag vyucbagx | GRP_3 | dell 7350 tablet cracked after it was accident... | English |
| 4831 | approval workflow problems | \r\ni am approfghaching you, as we have proble... | jwqyxbzs adpvilqu | GRP_13 | approval workflow problems \r\ni am approfghac... | English |
| 4832 | sound not working | sound not working | obanjrhg rnafleys | GRP_0 | sound not working sound not working | English |
| 4833 | erp will not open | \n\nreceived from: nkthumgf.mwgdenbs@gmail.com... | nkthumgf mwgdenbs | GRP_0 | erp will not open \n\nreceived from: nkthumgf.... | English |
| 4834 | update on inplant_857663 | update on inplant_857663 | rbozivdq gmlhrtvp | GRP_0 | update on inplant_857663 update on inplant_857663 | English |
| 4835 | i'm trying to print to our network printer sa... | i'm trying to print to our network printer sa... | dzrbwhco frmhpwda | GRP_0 | i'm trying to print to our network printer sa... | English |
| 4836 | i was kicked out of vpn but i am reconnected now. | vpn stopped working but i was able to reconnec... | lxvpesjo azmqlfoi | GRP_0 | i was kicked out of vpn but i am reconnected n... | English |
| 4837 | job Job_1348a failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1348a failed in job_scheduler at: 09/0... | English |
| 4838 | error when logging in to hana | please see attached error that i receive when ... | eqrknylx nqpsjhwc | GRP_9 | error when logging in to hana please see attac... | English |
| 4839 | unable to login to SID_1 | unable to login to SID_1 | ksmjylwg syihalqv | GRP_0 | unable to login to SID_1 unable to login to SID_1 | English |
| 4840 | i am locked out of global view prtgghj4k. i ne... | i am locked out of global view prtgghj4k. i ne... | zfebmujk mtdzqjue | GRP_0 | i am locked out of global view prtgghj4k. i ne... | English |
| 4841 | windows password reset for tinmuym alrthyu | windows password reset for tinmuym alrthyu | olckhmvx pcqobjnd | GRP_0 | windows password reset for tinmuym alrthyu win... | English |
| 4842 | ltcl8513156 - hgmx5q1 - e6420 | rarty has this old laptop that he needs to log... | csmhykge mpxbjudw | GRP_3 | ltcl8513156 - hgmx5q1 - e6420 rarty has this o... | English |
| 4843 | skype audio is not working | skype audio is not working | ijplstng juybetlo | GRP_0 | skype audio is not working skype audio is not... | English |
| 4844 | vpn vpn is not working, need urgent help | \r\n\r\nreceived from: bmudkpie.qolrvbip@gmail... | bmudkpie qolrvbip | GRP_0 | vpn vpn is not working, need urgent help \r\n\... | English |
| 4845 | hr_engineering_tools - unable to run reports f... | unable to run reports from etime | goaxzsql qpjnbgsa | GRP_0 | hr_engineering_tools - unable to run reports f... | English |
| 4846 | unable to launch business_client - .net framdn... | initiated the download of .net 4.5.2 | pxcvrjfq wkdaevfn | GRP_19 | unable to launch business_client - .net framdn... | English |
| 4847 | account unlock - erp SID_34 | unlocked the account. todd was able to get in ... | lwbchnga axpqctfr | GRP_0 | account unlock - erp SID_34 unlocked the accou... | English |
| 4848 | unable to launch skype | unable to launch skype | gcaktshf kpgfrotd | GRP_0 | unable to launch skype unable to launch skype | English |
| 4849 | unable to launch outlook | unable to launch outlook | gcaktshf kpgfrotd | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 4850 | unable to log into skype | \r\n\r\nreceived from: muywpnof.prtikusy@gmail... | muywpnof prtikusy | GRP_0 | unable to log into skype \r\n\r\nreceived from... | English |
| 4851 | account number incorrect : urgent , | trurthyuft,\r\n\r\nper our converstion and sha... | jgxclrzp jzeantui | GRP_40 | account number incorrect : urgent , trurthyuft... | English |
| 4852 | erp engineering tool locked out | erp engineering tool locked out | ptjahcfz kwaqblxp | GRP_0 | erp engineering tool locked out erp engineeri... | English |
| 4853 | bahdqrcs xvgzdtqj's onbankrding experience | \r\n\r\nreceived from: xzupryaf.vlbikhsm@gmail... | xzupryaf vlbikhsm | GRP_0 | bahdqrcs xvgzdtqj's onbankrding experience \r\... | English |
| 4854 | password reset erp SID_34 | password reset erp SID_34 | tcekvfrb colkzbrm | GRP_0 | password reset erp SID_34 password reset erp S... | English |
| 4855 | interface: fc3/34 · HostName_1147 on sandplan... | interface: fc3/34 · HostName_1147 on sandplan... | jloygrwh acvztedi | GRP_8 | interface: fc3/34 · HostName_1147 on sandplan... | English |
| 4856 | erp SID_34 password reset. | erp SID_34 password reset. | tcekvfrb colkzbrm | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 4857 | vpn queries | vpn queries | oldrctiu bxurpsyi | GRP_0 | vpn queries vpn queries | English |
| 4858 | vpn | \n\nreceived from: marhty.financial@company.co... | oujvmgeq spobcflw | GRP_0 | vpn \n\nreceived from: marhty.financial@compan... | English |
| 4859 | please take snapshot of vms manually under Hos... | please take snapshot of vms manually under Hos... | tkbuhcnq kdheauqo | GRP_12 | please take snapshot of vms manually under Hos... | English |
| 4860 | skype content not showing up in meeting | skype content not showing up in meeting | sdgqujpr dtilnycz | GRP_0 | skype content not showing up in meeting skype... | English |
| 4861 | error: trust relationship between this worksta... | email:oewshlmd.azjfshry@gmail.com\ncustomer nu... | oewshlmd azjfshry | GRP_0 | error: trust relationship between this worksta... | English |
| 4862 | skype - meetinmg button | \n\nreceived from: blktuiae.jzakfmhw@gmail.com... | blktuiae jzakfmhw | GRP_0 | skype - meetinmg button \n\nreceived from: blk... | English |
| 4863 | outlook not loading. | outlook not loading. | vpksyfco chosuygq | GRP_0 | outlook not loading. outlook not loading. | English |
| 4864 | finance_app time out error. | finance_app time out error. | ltnivuhw zbudwnfr | GRP_55 | finance_app time out error. finance_app time o... | English |
| 4865 | erp SID_34 password reset | erp SID_34 password reset | noxazrmy zrudycla | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 4866 | account extension for fqiurzas eidtfbqk - vvlf... | account extension for fqiurzas eidtfbqk - vvlf... | kmbfhyxi cuwgmiop | GRP_2 | account extension for fqiurzas eidtfbqk - vvlf... | English |
| 4867 | job bkwin_ms_cluster_inc failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_ms_cluster_inc failed in job_schedul... | English |
| 4868 | audio stop working after company update | audio device stoped working after company upda... | gsotqxfi lidunfjg | GRP_62 | audio stop working after company update audio ... | English |
| 4869 | unable to login to vcenter HostName_589 throug... | unable to login to vcenter HostName_589 throug... | tkbuhcnq kdheauqo | GRP_12 | unable to login to vcenter HostName_589 throug... | English |
| 4870 | unable to create delivery - shipments iak | please provide the following:\r\n\r\nwhat orde... | rxoynvgi ntgdsehl | GRP_6 | unable to create delivery - shipments iak plea... | English |
| 4871 | uyjlodhq ymedkatw (lghuiezj3) has mapped the u... | uyjlodhq ymedkatw (lghuiezj3) has mapped the u... | bxeagsmt zrwdgsco | GRP_0 | uyjlodhq ymedkatw (lghuiezj3) has mapped the u... | English |
| 4872 | usb ports not detecting devices | usb ports not detecting devices | hotwlygp afukzhnm | GRP_19 | usb ports not detecting devices usb ports not ... | English |
| 4873 | ewel8323721 - konto einlegen. | ewel8323721 - konto einlegen \r\n\r\nassigning... | ughzilfm cfibdamq | GRP_33 | ewel8323721 - konto einlegen. ewel8323721 - ko... | English |
| 4874 | travel expense manager (erp transaction pr05) ... | \r\n\r\nreceived from: bmudkpie.qolrvbip@gmail... | bmudkpie qolrvbip | GRP_10 | travel expense manager (erp transaction pr05) ... | English |
| 4875 | query from ; avmeocnk.mvycfwka@gmail.com | query from ; avmeocnk.mvycfwka@gmail.com | efbwiadp dicafxhv | GRP_0 | query from ; avmeocnk.mvycfwka@gmail.com query... | English |
| 4876 | e-mail has been sent to the company quarantin... | e-mail has been sent to the company quarantin... | banwdfcu uhlyqwrt | GRP_26 | e-mail has been sent to the company quarantin... | English |
| 4877 | kabel vga defekt\ zedlet | kabel vga defekt\ zedlet | jionmpsf wnkpzcmv | GRP_24 | kabel vga defekt\ zedlet kabel vga defekt\ ze... | English |
| 4878 | install kis \ewew8323506 \guvgytniak | install kis \ewew8323506 \guvgytniak | zlqfptjx xnklbfua | GRP_24 | install kis \ewew8323506 \guvgytniak install k... | Hungarian |
| 4879 | install kis \ewew8323504 \zlqfptjx xnklbfua | install kis \ewew8323504 \zlqfptjx xnklbfua | zlqfptjx xnklbfua | GRP_24 | install kis \ewew8323504 \zlqfptjx xnklbfua in... | Hungarian |
| 4880 | install zebra \we_wu102 \pfjwinbg ljtzbdqg | install zebra \we_wu102 \pfjwinbg ljtzbdqg | pfjwinbg ljtzbdqg | GRP_24 | install zebra \we_wu102 \pfjwinbg ljtzbdqg ins... | English |
| 4881 | install company barcode für ewew8323504 \vzqo... | install company barcode für ewew8323504 \vzqo... | vzqomdgt jwoqbuml | GRP_24 | install company barcode für ewew8323504 \vzqo... | Uzbek |
| 4882 | install company barcode für ewew8323506 \vzqo... | install company barcode für ewew8323506 \vzqo... | vzqomdgt jwoqbuml | GRP_24 | install company barcode für ewew8323506 \vzqo... | Uzbek |
| 4883 | job Job_1348 failed in job_scheduler at: 09/09... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1348 failed in job_scheduler at: 09/09... | English |
| 4884 | ç”å¤: shipments iak | \r\n\r\nreceived from: wqzarvhx.hfsojckw@gmail... | wqzarvhx hfsojckw | GRP_18 | ç”å¤: shipments iak \r\n\r\nreceived from: w... | English |
| 4885 | job bk_bia_bobje failed in job_scheduler at: 0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bk_bia_bobje failed in job_scheduler at: 0... | English |
| 4886 | security incidents - ( #in33826812 ) : possibl... | source ip :83.54.03.93209 \nsystem name :rgtw8... | gzhapcld fdigznbk | GRP_3 | security incidents - ( #in33826812 ) : possibl... | English |
| 4887 | efdl8111235 - need add. software installed on ... | efdl8111235 - need add. software installed on ... | fcqxdusv zvkbhayo | GRP_28 | efdl8111235 - need add. software installed on ... | English |
| 4888 | arbeitsplatz: pc+telefon in germany im büro k... | auf grund das ich ab jetzt einen tag in der wo... | wyotidgu nydzrtuw | GRP_33 | arbeitsplatz: pc+telefon in germany im büro k... | German |
| 4889 | access to below applications | \r\n\r\nreceived from: kxmidsga.zokivdfa@gmail... | kxmidsga zokivdfa | GRP_0 | access to below applications \r\n\r\nreceived ... | English |
| 4890 | need to add lxkecjgr fwknxupq to shared mailbox | need to add lxkecjgr fwknxupq to shared mailbox | lckagtry xcrmzgli | GRP_0 | need to add lxkecjgr fwknxupq to shared mailbo... | English |
| 4891 | erp transaktion pr05 funktioniert nicht | \n\nreceived from: ida.financial@company.com\n... | xfznctqa xstndbwa | GRP_10 | erp transaktion pr05 funktioniert nicht \n\nre... | German |
| 4892 | erp SID_34 account password is locked | \n\nreceived from: fwkxbley.stndeick@gmail.com... | fwkxbley stndeick | GRP_0 | erp SID_34 account password is locked \n\nrece... | English |
| 4893 | security incidents - ( #in33826812 ) : possibl... | source ip :83.54.03.93209 \nsystem name :rgtw8... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33826812 ) : possibl... | English |
| 4894 | wifi guest account | \n\nreceived from: scjxobhd.ldypjkmf@gmail.com... | scjxobhd ldypjkmf | GRP_0 | wifi guest account \n\nreceived from: scjxobhd... | English |
| 4895 | unlock exchange active sync for ios for vmthcr... | \r\n\r\nreceived from: xvwchsdg.pladjmxt@gmail... | xvwchsdg pladjmxt | GRP_0 | unlock exchange active sync for ios for vmthcr... | English |
| 4896 | printer problem / issue information | bei mp60 funktioniert das fax nicht mehr. | gasbfqvp fmvqgjih | GRP_33 | printer problem / issue information bei mp60 f... | English |
| 4897 | ordner mbs | \r\n\r\nreceived from: pnroqajb.psbyfhkg@gmail... | pnroqajb psbyfhkg | GRP_0 | ordner mbs \r\n\r\nreceived from: pnroqajb.psb... | German |
| 4898 | outlook search not working. | well i have an issue with search tool of my ou... | ftgvlneh aitsgqwo | GRP_26 | outlook search not working. well i have an iss... | English |
| 4899 | please help enable the o365 video service | die angehängten video die ich per e-mail übe... | ymoeqrsx rbctdsyi | GRP_16 | please help enable the o365 video service die ... | English |
| 4900 | ie browser issue | ie browser issue | jborwynt gidxbfrq | GRP_0 | ie browser issue ie browser issue | English |
| 4901 | engineering_tool :company issue | engineering_tool :company issue : forbidden error | cugjzqlf djwbyact | GRP_0 | engineering_tool :company issue engineering_t... | English |
| 4902 | attendance_tool login issue | \nsummary:problem with attendance_tool | jchlkard tcaiyjfg | GRP_0 | attendance_tool login issue \nsummary:problem ... | English |
| 4903 | login problem with attendance_tool portal | \n\nreceived from: jchlkard.tcaiyjfg@gmail.com... | jchlkard tcaiyjfg | GRP_0 | login problem with attendance_tool portal \n\n... | English |
| 4904 | network outage: united kingdom(company): unite... | what type of outage: _____network __x___c... | mnlazfsr mtqrkhnx | GRP_8 | network outage: united kingdom(company): unite... | English |
| 4905 | job bkwin_search_server_dev_daily failed in jo... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_search_server_dev_daily failed in jo... | English |
| 4906 | copy window 7 at monitor | \r\n\r\nreceived from: ujbaemlc.ilzhrxjo@gmail... | ujbaemlc ilzhrxjo | GRP_0 | copy window 7 at monitor \r\n\r\nreceived from... | English |
| 4907 | job SID_38hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_38hotf failed in job_scheduler at: 09/... | English |
| 4908 | outlook 打开å¯åЍæç¤ºé”™è¯¯ã€‚ | outlook 打开å¯åЍæç¤ºé”™è¯¯ã€‚ | mpjoszqg wurpohmf | GRP_31 | outlook 打开å¯åЍæç¤ºé”™è¯¯ã€‚ outlook æ‰... | English |
| 4909 | job Job_2555 failed in job_scheduler at: 09/08... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2555 failed in job_scheduler at: 09/08... | English |
| 4910 | india , company-ap-ind--pu5-lean-2960s-stack-s... | india , company-ap-ind-kirty-pu5-lean-2960s-st... | mnlazfsr mtqrkhnx | GRP_8 | india , company-ap-ind--pu5-lean-2960s-stack-s... | English |
| 4911 | 转å‘: finished: start of s&op process | \r\n\r\nreceived from: lkrfndev.kztlojin@gmail... | lkrfndev kztlojin | GRP_0 | 转å‘: finished: start of s&op process \r\n\r... | English |
| 4912 | i have a erp issue. reversed dn 9168001220 for... | name:maghyuigie ghjkzalez\nlanguage:\nbrowser:... | houcdelq wnypackq | GRP_6 | i have a erp issue. reversed dn 9168001220 for... | English |
| 4913 | skype audio not working | skype audio not working.\r\n-connected to the ... | eqxakzyi cwfrjitq | GRP_0 | skype audio not working skype audio not workin... | English |
| 4914 | job Job_562 failed in job_scheduler at: 09/08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_562 failed in job_scheduler at: 09/08/... | English |
| 4915 | job SID_39hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_39hotf failed in job_scheduler at: 09/... | English |
| 4916 | netzwerkkabel des erp druckers verlängern, | netzwerkkabel des erp druckers em 19 verlänge... | tfrbwoua aegpkruc | GRP_42 | netzwerkkabel des erp druckers verlängern, ne... | German |
| 4917 | need to add the pc lvlw8517820 to domain | need to add the pc lvlw8517820 to domain | pmqansex nvihmbwc | GRP_0 | need to add the pc lvlw8517820 to domain need... | English |
| 4918 | erp netweaver business client will not open dr... | name:xyjkndus ltcevgap\nlanguage:\nbrowser:mic... | xyjkndus ltcevgap | GRP_11 | erp netweaver business client will not open dr... | English |
| 4919 | what is the easiest way to change all of my pa... | name:slrgconp onukdesq\nlanguage:\nbrowser:mic... | slrgconp onukdesq | GRP_0 | what is the easiest way to change all of my pa... | English |
| 4920 | ticket update for ticket_no0438583 | ticket update for ticket_no0438583 | fumkcsji sarmtlhy | GRP_0 | ticket update for ticket_no0438583 ticket upda... | English |
| 4921 | unable to log in to engineering tool | unable to log in to engineering tool | kpuqlzwh lbpiyquf | GRP_0 | unable to log in to engineering tool unable to... | English |
| 4922 | user name for fabxjimdghtyo depfugcy | user name for fabxjimdghtyo depfugcy | lkwspqce knxaipyj | GRP_0 | user name for fabxjimdghtyo depfugcy user nam... | English |
| 4923 | vip 2: printer hr14 not printing pdf document. | printer hr14 not printing pdf document.\n-con... | usqrpicf dfmxaliz | GRP_3 | vip 2: printer hr14 not printing pdf document... | English |
| 4924 | password reset | name:mfeyouli ndobtzpw\nlanguage:\nbrowser:mic... | mfeyouli ndobtzpw | GRP_0 | password reset name:mfeyouli ndobtzpw\nlanguag... | English |
| 4925 | vendor needs to save files to his local pc. | hi,\r\n\r\nplease reference inc1548324. i hav... | drmusvny yvsmtgid | GRP_12 | vendor needs to save files to his local pc. hi... | English |
| 4926 | erp runtime error.....this is what i'm eventua... | \r\n\r\nreceived from: jbfmsxik.mfzjncva@gmail... | jbfmsxik mfzjncva | GRP_0 | erp runtime error.....this is what i'm eventua... | English |
| 4927 | ticket update for inplant_858584 | ticket update for inplant_858584 | fumkcsji sarmtlhy | GRP_0 | ticket update for inplant_858584 ticket update... | English |
| 4928 | unable to connect to vpn | unable to connect to vpn | pnacqfso ojwkmzcb | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 4929 | snagit | \n\nreceived from: lucgnhda.carthy@company.com... | qmglkaru qiwhfkdv | GRP_0 | snagit \n\nreceived from: lucgnhda.carthy@comp... | English |
| 4930 | unable to open outlook | name:oikhfqyl gcknzthb\nlanguage:\nbrowser:mic... | oikhfqyl gcknzthb | GRP_0 | unable to open outlook name:oikhfqyl gcknzthb\... | English |
| 4931 | user harrfgyibs locked out of erp mii system. | user harrfgyibs locked out of erp mii system.\... | epivntxc fdrxmuga | GRP_0 | user harrfgyibs locked out of erp mii system. ... | English |
| 4932 | job Job_1388 failed in job_scheduler at: 09/08... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1388 failed in job_scheduler at: 09/08... | English |
| 4933 | telecom_vendor_3 dongle | help to configure the dongle on new laptop. | yzbqwpat fdjrctbu | GRP_19 | telecom_vendor_3 dongle help to configure the... | English |
| 4934 | id04 printer | printer setup | rxoluzhy pnutohms | GRP_19 | id04 printer printer setup | English |
| 4935 | id 08 printer issue | id08 printer not working | yszdlwph kwvtrjxm | GRP_19 | id 08 printer issue id08 printer not working | English |
| 4936 | user wants this messgage recall aerp.-urgent | user wants this messgage recall aerp.-urgent\n | fgsmwvcp uoxkzwes | GRP_26 | user wants this messgage recall aerp.-urgent u... | English |
| 4937 | erp response time is very long - even for simp... | erp response time is very long - even for simp... | kmtpzyre mqlsfkre | GRP_0 | erp response time is very long - even for simp... | English |
| 4938 | circuit outage: apac company secondary vpn cir... | what type of outage: _____network __x___c... | jloygrwh acvztedi | GRP_8 | circuit outage: apac company secondary vpn cir... | English |
| 4939 | ticket update on ticket_no0434290 | ticket update on ticket_no0434290 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0434290 ticket updat... | English |
| 4940 | outlook constantly freezes up. | contact me @ xt 154712 if needed. no error me... | gakceqyb edrjthvo | GRP_0 | outlook constantly freezes up. contact me @ xt... | English |
| 4941 | unable to update password on password_manageme... | unable to update password on password_manageme... | zfdkqgmt zvqxcodk | GRP_0 | unable to update password on password_manageme... | English |
| 4942 | mapping network drive | mapping network drive | jvxtfhkg heptuizn | GRP_0 | mapping network drive mapping network drive | English |
| 4943 | cad pc for main training room | \r\n\r\nreceived from: gdkiehbr.kdithjsr@gmail... | gdkiehbr kdithjsr | GRP_3 | cad pc for main training room \r\n\r\nreceived... | English |
| 4944 | sent from snipping tool | \r\n\r\nreceived from: tfesaxip.cvorpnth@gmail... | tfesaxip cvorpnth | GRP_45 | sent from snipping tool \r\n\r\nreceived from:... | English |
| 4945 | drive2 is not responding to mount requests for... | drive2 is not responding to mount requests for... | rkupnshb gsmzfojw | GRP_8 | drive2 is not responding to mount requests for... | English |
| 4946 | cannot log into skype | \r\n\r\nreceived from: lijrvdgh.wfhmdsoa@gmail... | lijrvdgh wfhmdsoa | GRP_0 | cannot log into skype \r\n\r\nreceived from: l... | English |
| 4947 | vm lhqsm68267 taking excessive length of time ... | the backup_tool backup for lhqsm68267 is takin... | txinpadm dluxikjn | GRP_12 | vm lhqsm68267 taking excessive length of time ... | English |
| 4948 | ticket update on inc1549550 | ticket update on inc1549550 | fumkcsji sarmtlhy | GRP_0 | ticket update on inc1549550 ticket update on ... | English |
| 4949 | password reset for erp SID_34 account | password reset for erp SID_34 account | ovxwqybe gevzkrlp | GRP_0 | password reset for erp SID_34 account password... | English |
| 4950 | quantum oracle database connection is not working | HostName_1317 and HostName_1316 databases list... | pvlxjizg xzvlwqjc | GRP_1 | quantum oracle database connection is not work... | English |
| 4951 | german call | german call | rbozivdq gmlhrtvp | GRP_0 | german call german call | English |
| 4952 | password reset | password reset | alfqhigv zofjibkr | GRP_0 | password reset password reset | English |
| 4953 | can't create a delivery note for a sto # 50191... | we can't create a delivery note for a sto # 50... | repyzajo lxfwopyq | GRP_6 | can't create a delivery note for a sto # 50191... | English |
| 4954 | vpn access | \r\n\r\nreceived from: khspqlnj.npgxuzeq@gmail... | ajdcnwtb bvijwxko | GRP_0 | vpn access \r\n\r\nreceived from: khspqlnj.npg... | English |
| 4955 | node germany pbx trunk card located at germany... | node germany pbx trunk card located at germany... | rkupnshb gsmzfojw | GRP_37 | node germany pbx trunk card located at germany... | English |
| 4956 | password reset | password reset | ajlbguzn fxrwivyg | GRP_0 | password reset password reset | English |
| 4957 | need access to znqcljxt azvoespk's collaborati... | contact : | csotmdiw yfeqcbti | GRP_16 | need access to znqcljxt azvoespk's collaborati... | English |
| 4958 | npc 311104334 - "plant not selected" | i was notified by kuznvase jrxtbuqz that this ... | ferxqvsm esmwxqlf | GRP_11 | npc 311104334 - "plant not selected" i was not... | English |
| 4959 | my SID_39 crm has problem-please help to fix i... | \r\n\r\nreceived from: zmkitbsh.bxsyaipz@gmail... | zmkitbsh bxsyaipz | GRP_15 | my SID_39 crm has problem-please help to fix i... | English |
| 4960 | problem with crm | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_0 | problem with crm \n\nreceived from: vkzwafuh.t... | English |
| 4961 | error when trying to access SID_1 quality syst... | error when trying to access SID_1 quality syst... | zirsbqca ohxsweji | GRP_0 | error when trying to access SID_1 quality syst... | English |
| 4962 | u drive access | hello, for the next one month i will be in bed... | pyamiwvx terscahn | GRP_12 | u drive access hello, for the next one month i... | English |
| 4963 | lizenz | let's talk- video kann nicht geöffnet werden | lfaqrivo bmitazrx | GRP_0 | lizenz let's talk- video kann nicht geöffnet... | German |
| 4964 | usa nc server HostName_1326 is not responding,... | usa nc server HostName_1326 is not responding,... | qedxiryu mdupjolb | GRP_12 | usa nc server HostName_1326 is not responding,... | English |
| 4965 | employee owned mobility agreement | \r\n\r\nreceived from: rmzlvqjf.eaqyxljb@gmail... | rmzlvqjf eaqyxljb | GRP_0 | employee owned mobility agreement \r\n\r\nrece... | English |
| 4966 | sync hr org details to purchasing | sync hr org details to purchasing for dhmfuvgw... | mpihysnw wrctgoan | GRP_29 | sync hr org details to purchasing sync hr org ... | English |
| 4967 | account locked out | account locked out | ikgrtwhz tmqdiwge | GRP_0 | account locked out account locked out | English |
| 4968 | duplicate machines displaying in machine list | when a work center is changed on a machine in ... | entuakhp xrnhtdmk | GRP_41 | duplicate machines displaying in machine list ... | English |
| 4969 | skype audio not working | \r\n\r\nreceived from: vkezwolt.fgnqzeai@gmail... | vkezwolt fgnqzeai | GRP_0 | skype audio not working \r\n\r\nreceived from:... | English |
| 4970 | drucker ng15 funktioniert nicht mehr (hardware... | please complete all required questions below. ... | ogasxnpw cfvqrhap | GRP_33 | drucker ng15 funktioniert nicht mehr (hardware... | English |
| 4971 | problem in engineering tool | \r\n\r\nreceived from: zaeduhlt.jdgsamtv@gmail... | zaeduhlt jdgsamtv | GRP_25 | problem in engineering tool \r\n\r\nreceived f... | German |
| 4972 | blank call | blank call from germany - interaction id - 206... | fdmaluyo tvecikxn | GRP_0 | blank call blank call from germany - interacti... | English |
| 4973 | 2md extenral monitor will not stay one, it fla... | 2md extenral monitor will not stay one, it fla... | wvtsiucg bfpemgol | GRP_3 | 2md extenral monitor will not stay one, it fla... | English |
| 4974 | travel expenses in erp | \n\nreceived from: uyrpdvoq.mbzevtcx@gmail.com... | uyrpdvoq mbzevtcx | GRP_10 | travel expenses in erp \n\nreceived from: uyrp... | English |
| 4975 | telephony_software interaction desktop fails t... | this seems to have started after windows updat... | urvitans laqdwvgo | GRP_65 | telephony_software interaction desktop fails t... | English |
| 4976 | please check the ale in detail, we have ongoin... | please have a close look on the ale interface ... | pesylifc wnyierbu | GRP_20 | please check the ale in detail, we have ongoin... | English |
| 4977 | drucker hp laserjet 3525 (mp 72) defekt | hp drucker cp3525 defekt, wurde bereits ausget... | xfznctqa xstndbwa | GRP_33 | drucker hp laserjet 3525 (mp 72) defekt hp dru... | German |
| 4978 | reset passwords for davidthd robankm using pas... | the | zelunfcq yimdwjrp | GRP_17 | reset passwords for davidthd robankm using pas... | English |
| 4979 | rechner für messvorrichtung steli funktionier... | rechner für messvorrichtung steli funktionier... | jionmpsf wnkpzcmv | GRP_24 | rechner für messvorrichtung steli funktionier... | German |
| 4980 | barcode scanner defekt \paternoster \bur am orde | barcode scanner defekt \paternoster \bur am orde | xwirzvda okhyipgr | GRP_24 | barcode scanner defekt \paternoster \bur am or... | English |
| 4981 | usb verlängerungskabel liefern .\hxwtidja ixa... | usb verlängerungskabel liefern .\hxwtidja ixa... | hxwtidja ixahzmvf | GRP_24 | usb verlängerungskabel liefern .\hxwtidja ixa... | German |
| 4982 | rechner nach update startet nicht \ewew8323649... | rechner nach update startet nicht \ewew8323649... | cudgevmx waqslrbd | GRP_24 | rechner nach update startet nicht \ewew8323649... | German |
| 4983 | iehs metrics input - unable to scroll (urgent ... | \r\n\r\nreceived from: fniqhjtg.qrfuetpw@gmail... | fniqhjtg qrfuetpw | GRP_34 | iehs metrics input - unable to scroll (urgent ... | English |
| 4984 | reset passwords for cubdsrml znewqgop using pa... | the | cubdsrml znewqgop | GRP_17 | reset passwords for cubdsrml znewqgop using pa... | English |
| 4985 | kein rechnungseingang beim kunden per e-mail | kunde 81125605 / cc5202 erhält unsere rechnun... | hgufmidr mfobkyun | GRP_13 | kein rechnungseingang beim kunden per e-mail ... | German |
| 4986 | we've been informed that company malaysia offi... | do the needful on below e-mail request.\r\n\r\n | tqfnalpj qyoscnge | GRP_4 | we've been informed that company malaysia offi... | English |
| 4987 | open tickets - günter steinhäußer | \r\n\r\nreceived from: rtnzvplq.erhmuncq@gmail... | rtnzvplq erhmuncq | GRP_26 | open tickets - günter steinhäußer \r\n\r\n... | English |
| 4988 | fixed assets additions list | additions are not matching to trial balance an... | miecoszw mhvbnodw | GRP_10 | fixed assets additions list additions are not ... | English |
| 4989 | my powerpoint application crashed everytime af... | my powerpoint application crashed everytime af... | jcmxerol nbfyczqr | GRP_19 | my powerpoint application crashed everytime af... | English |
| 4990 | netweaver business client 5.0 | \r\n\r\nreceived from: jfsmwpny.klxsdqiw@gmail... | jfsmwpny klxsdqiw | GRP_0 | netweaver business client 5.0 \r\n\r\nreceived... | English |
| 4991 | reset passwords for davidthd robankm using pas... | the | zelunfcq yimdwjrp | GRP_17 | reset passwords for davidthd robankm using pas... | English |
| 4992 | probleme mit laser | der pc (ganz alter pc) am halbautomaten schalt... | sgnubadl gpkovbah | GRP_24 | probleme mit laser der pc (ganz alter pc) am h... | German |
| 4993 | need help in adding users in au-accounts.recei... | need help in adding users in au-accounts.recei... | urwqxgdp twepkmis | GRP_0 | need help in adding users in au-accounts.recei... | English |
| 4994 | unable to create delivery | please provide the following:\r\n\r\nwhat orde... | zcokibmd xnrthsmj | GRP_29 | unable to create delivery please provide the f... | English |
| 4995 | fc für departments\skv-alicona | hallo marfhtyio.\nmit dem freischalten von srg... | ypladjeu wzfryxav | GRP_12 | fc für departments\skv-alicona hallo marfhtyi... | German |
| 4996 | issue with the difference amount in the po app... | issue with the difference amount in the po app... | mnrgpfqh mblavfti | GRP_20 | issue with the difference amount in the po app... | English |
| 4997 | fc auf departments\_scan\we47 | guten morgen,\r\n\r\nbitte die schreib / leseb... | htvepyua izgulrcf | GRP_12 | fc auf departments\_scan\we47 guten morgen,\r\... | German |
| 4998 | unable to sign in to skype | confirmed email address was typed into the use... | euyhszrn ktmhjnzp | GRP_0 | unable to sign in to skype confirmed email add... | English |
| 4999 | msd crm still no synchronize with erp | still no synchronize with erp after repair to ... | wqfzjycu omleknjd | GRP_40 | msd crm still no synchronize with erp still no... | English |
| 5000 | question on how to login to impact awards | to login to impact awards: | dwflzqyn uinpgbym | GRP_0 | question on how to login to impact awards to l... | English |
| 5001 | account unlock - lichtyuiwu7 | markhty leibdrty called to have the account un... | fdmaluyo tvecikxn | GRP_34 | account unlock - lichtyuiwu7 markhty leibdrty ... | English |
| 5002 | no erp and netweaver enterence_please help aerp. | \r\n\r\nreceived from: chbvyjqr.dqbwijvy@gmail... | chbvyjqr dqbwijvy | GRP_0 | no erp and netweaver enterence_please help aer... | English |
| 5003 | ferbfhyunam is not able to connect with teleph... | error message: unable to log on for the follo... | xgpqsihu xcswovzi | GRP_33 | ferbfhyunam is not able to connect with teleph... | English |
| 5004 | erp net weaver doesnt work, error message: mic... | erp net weaver doesnt work, error message: mic... | xjazwpmd sjirdnam | GRP_0 | erp net weaver doesnt work, error message: mic... | English |
| 5005 | account locked in ad | account locked in ad | xbgwfmvj oemxazyl | GRP_0 | account locked in ad account locked in ad | English |
| 5006 | business_client - log on error - | business_client logon is not working and throw... | acwoflmg lvwmshcr | GRP_19 | business_client - log on error - business_cli... | English |
| 5007 | power outage: south amerirtca: site hard down ... | what type of outage: __x___network _____c... | mnlazfsr mtqrkhnx | GRP_8 | power outage: south amerirtca: site hard down ... | English |
| 5008 | skype is not working | skype is not working | zrcfyiea gynbmopr | GRP_0 | skype is not working skype is not working | English |
| 5009 | we need for all participants an access for the... | from: ylqvitsk bfnackrw \r\nsent: wednesday, s... | ylqvitsk bfnackrw | GRP_0 | we need for all participants an access for the... | English |
| 5010 | action required: please connect to the new vpn... | from: vivbhuek kanjdye \nsent: thursday, septe... | zfliqpxm dgfvaqlh | GRP_0 | action required: please connect to the new vpn... | English |
| 5011 | cplant_2404 depreciation issue | \n\nreceived from: bujiesrg.zopcrshl@gmail.com... | bujiesrg zopcrshl | GRP_10 | cplant_2404 depreciation issue \n\nreceived f... | English |
| 5012 | hsh | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | hsh \n\nreceived from: aksthyuhath.shettythruy... | English |
| 5013 | 转å‘: 订å•å·ï¼š5212346451å¯ä»¥ç¾å—了 | \r\n\r\nreceived from: apacjun.zhang@company.c... | qzbxfncr kysuqema | GRP_29 | 转å‘: 订å•å·ï¼š5212346451å¯ä»¥ç¾å—了 ... | English |
| 5014 | can not login in erp SID_1 for uacyltoe hxgayc... | attached the screen shot for the error informa... | qnvkwalx dfjtxigl | GRP_0 | can not login in erp SID_1 for uacyltoe hxgayc... | English |
| 5015 | circuit outage: primary circuit company-eu-de... | what type of outage: _____network ___x__c... | jyoqwxhz clhxsoqy | GRP_8 | circuit outage: primary circuit company-eu-de... | English |
| 5016 | node down - on lhqsm68267 | node down - on lhqsm68267 | jyoqwxhz clhxsoqy | GRP_8 | node down - on lhqsm68267 node down - on ... | English |
| 5017 | erp access | \n\nreceived from: idkfgcnq.vjwhmzor@gmail.com... | idkfgcnq vjwhmzor | GRP_0 | erp access \n\nreceived from: idkfgcnq.vjwhmz... | English |
| 5018 | it request | \r\n\r\nreceived from: otmpauyr.ijztksal@gmail... | otmpauyr ijztksal | GRP_0 | it request \r\n\r\nreceived from: otmpauyr.ijz... | English |
| 5019 | telephony_software phone issue | \r\n\r\nreceived from: tjlgzkbp.iervwjzg@gmail... | tjlgzkbp iervwjzg | GRP_7 | telephony_software phone issue \r\n\r\nreceive... | English |
| 5020 | job Job_2063d failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063d failed in job_scheduler at: 09/0... | English |
| 5021 | uninstall google chrome | uninstall google chrome | vfsjoquc razepdqb | GRP_0 | uninstall google chrome uninstall google chrome | English |
| 5022 | job SID_38filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_38filesys failed in job_scheduler at: ... | English |
| 5023 | 70124272 customer erp # no longer available i... | i have 4 closed won opportunities for this cus... | awpcmsey ctdiuqwe | GRP_40 | 70124272 customer erp # no longer available i... | English |
| 5024 | blank call gso // loud noise | blank call gso // loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call gso // loud noise blank call gso //... | English |
| 5025 | unable to connect to network drives on vpn | unable to connect to network drives on vpn | lijrvdgh wfhmdsoa | GRP_0 | unable to connect to network drives on vpn una... | English |
| 5026 | account locked out | account locked out | qfcxbpht oiykfzlr | GRP_0 | account locked out account locked out | English |
| 5027 | account locked on vpn page | account locked on vpn page | vxzahrlc frtkpehy | GRP_0 | account locked on vpn page account locked on v... | English |
| 5028 | company email password not working | company email password not working | rbozivdq gmlhrtvp | GRP_0 | company email password not working company ema... | English |
| 5029 | account locked out | account locked out | koiapqbg teyldpkw | GRP_0 | account locked out account locked out | English |
| 5030 | vip 2 // SID_60 hana login | name:stdezpqw bkmeuhfz\nlanguage:\nbrowser:mic... | stdezpqw bkmeuhfz | GRP_0 | vip 2 // SID_60 hana login name:stdezpqw bkmeu... | English |
| 5031 | ie issue | ie issue | zfburidj jmilguev | GRP_0 | ie issue ie issue | English |
| 5032 | reset the password for iwtvrhnz rxiumhfk on er... | reset the password for iwtvrhnz rxiumhfk on er... | iwtvrhnz rxiumhfk | GRP_0 | reset the password for iwtvrhnz rxiumhfk on er... | English |
| 5033 | ticket update on inplant_857988 | ticket update on inplant_857988 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_857988 ticket update ... | English |
| 5034 | unable to login to collaboration_platform | unable to login to collaboration_platform | pqizlhkx adbyhglu | GRP_0 | unable to login to collaboration_platform unab... | English |
| 5035 | please send expense report 2111137753 to qmglk... | please manually send expense report 2111137753... | siqobhlz vwljuize | GRP_10 | please send expense report 2111137753 to qmglk... | English |
| 5036 | connection issue | \r\n\r\nreceived from: riqmdnzs.mtlghwex@gmail... | riqmdnzs mtlghwex | GRP_2 | connection issue \r\n\r\nreceived from: riqmdn... | English |
| 5037 | HostName_1201 plm server | just to let someone now that the dsccache serv... | ctvaejbo mjcerqwo | GRP_12 | HostName_1201 plm server just to let someone n... | English |
| 5038 | unable to connect to dv28, dv06, and dv40 | unable to connect to dv28, dv06, and dv40 | iwtvrhnz rxiumhfk | GRP_0 | unable to connect to dv28, dv06, and dv40 unab... | English |
| 5039 | unknown emails from miltgntyuon knighdjhtyt | \r\n\r\nreceived from: zxobmreq.udikorhv@gmail... | zxobmreq udikorhv | GRP_0 | unknown emails from miltgntyuon knighdjhtyt \r... | English |
| 5040 | account locked out, need to unlock | account locked out, need to unlock | ntsowaem jfgslyde | GRP_0 | account locked out, need to unlock account loc... | English |
| 5041 | circuit outage : apac - china vpn circuit is d... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_4 | circuit outage : apac - china vpn circuit is d... | English |
| 5042 | install analysis office 2.2 sp 03 in clrgtydia... | hello team,\r\n\r\nplease install analysis off... | xawlkiey demjqrfl | GRP_9 | install analysis office 2.2 sp 03 in clrgtydia... | English |
| 5043 | skype for business extend access to external p... | \r\n\r\nreceived from: sbgvrncj.idfhtoqv@gmail... | sbgvrncj idfhtoqv | GRP_26 | skype for business extend access to external p... | English |
| 5044 | unable to change password on password_manageme... | unable to change password on password_manageme... | khaibsvt lkvfxzpj | GRP_0 | unable to change password on password_manageme... | English |
| 5045 | konto resetten | konto resetten | ughzilfm cfibdamq | GRP_0 | konto resetten konto resetten | Dutch |
| 5046 | erp & business_client password reset request | \r\n\r\nreceived from: svbymfiz.afqvyuwh@gmail... | svbymfiz afqvyuwh | GRP_0 | erp & business_client password reset request \... | English |
| 5047 | windows password reset | windows password reset | koiapqbg teyldpkw | GRP_0 | windows password reset windows password reset | English |
| 5048 | account unlock | account unlock | jsmhzqpo bpexofya | GRP_0 | account unlock account unlock | English |
| 5049 | password reset | password reset | gadbpfrz unvdyask | GRP_0 | password reset password reset | English |
| 5050 | unable to launch outlook | unable to launch outlook | vjwdyanl knfsjdgz | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 5051 | password reset to hub | password reset to hub | wducnbfp wxiqjuce | GRP_0 | password reset to hub password reset to hub | English |
| 5052 | erp problem | \r\n\r\nreceived from: bajrpckl.cevtiuob@gmail... | bajrpckl cevtiuob | GRP_0 | erp problem \r\n\r\nreceived from: bajrpckl.c... | English |
| 5053 | what's the meaning of this "warning message" | \n\nreceived from: zywoxerf.paqxtrfk@gmail.com... | zywoxerf paqxtrfk | GRP_0 | what's the meaning of this "warning message" \... | English |
| 5054 | erp SID_34 account unlock | name:mfeyouli ndobtzpw\nlanguage:\nbrowser:mic... | mfeyouli ndobtzpw | GRP_0 | erp SID_34 account unlock name:mfeyouli ndobtz... | English |
| 5055 | constantly receiving "usb device not recognize... | constantly receiving "usb device not recognize... | rcivkdxo hlyrieck | GRP_0 | constantly receiving "usb device not recognize... | English |
| 5056 | unable to log on to distributor_tool. | unable to log on to distributor_tool. | zlnxswvp ptmzsbhk | GRP_0 | unable to log on to distributor_tool. unable t... | English |
| 5057 | supply_chain_software | \r\n\r\nreceived from: cjsukemx.lqkcesuf@gmail... | cjsukemx lqkcesuf | GRP_0 | supply_chain_software \r\n\r\nreceived from: c... | English |
| 5058 | vpn query | vpn query. user wanted to know if he can conne... | aqdjcuhn lagfitkz | GRP_0 | vpn query vpn query. user wanted to know if he... | English |
| 5059 | cannot log into erp SID_34 erp production with... | \n\nreceived from: yisohglr.uvteflgb@gmail.com... | yisohglr uvteflgb | GRP_0 | cannot log into erp SID_34 erp production with... | English |
| 5060 | unable to login to skype | unable to login to skype | iotudrxg odpcwvez | GRP_0 | unable to login to skype unable to login to skype | English |
| 5061 | unable to launch ethics. | unable to launch ethics. login credentials inv... | htsnaodb adjtmlzn | GRP_23 | unable to launch ethics. unable to launch ethi... | English |
| 5062 | also, the account needs to be given to davgt... | bhghtyum,\n i will need additio... | fabijhsd ocsnugeh | GRP_2 | also, the account needs to be given to davgt... | English |
| 5063 | windows password reset | windows password reset | ujtmipzv cwdzunxs | GRP_0 | windows password reset windows password reset | English |
| 5064 | password locked out on erp SID_34 | password locked out on erp SID_34 | kcwqdeob jwtpkzub | GRP_0 | password locked out on erp SID_34 password loc... | English |
| 5065 | erp SID_34 account unlock | erp SID_34 account unlock | gljkfidc kelctrpf | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 5066 | outlook not updating emails | outlook not updating emails | bmudkpie qolrvbip | GRP_0 | outlook not updating emails outlook not updati... | English |
| 5067 | ticket update for inplant_858062 | ticket update for inplant_858062 | fumkcsji sarmtlhy | GRP_0 | ticket update for inplant_858062 ticket update... | English |
| 5068 | freigabe auf ordner für ytcxjzue guplftok (kr... | unter departments (\\HostName_579) (m:) unter ... | lzpuyrvw zkxbacvn | GRP_34 | freigabe auf ordner für ytcxjzue guplftok (kr... | German |
| 5069 | change screensaver company to company | please change my screensaver to company.\r\npc... | btvmxdfc yfahetsc | GRP_0 | change screensaver company to company please c... | English |
| 5070 | network problems (multiple applications are ru... | how did you determine there are network proble... | zcokibmd xnrthsmj | GRP_59 | network problems (multiple applications are ru... | English |
| 5071 | printer cl98 | \n\nreceived from: azxhejvq.fyemlavd@gmail.com... | azxhejvq fyemlavd | GRP_0 | printer cl98 \n\nreceived from: azxhejvq.fyeml... | English |
| 5072 | erp-step interface programdnty not sending all... | erp-step interface programdnty is not generati... | rcivkdxo hlyrieck | GRP_11 | erp-step interface programdnty not sending all... | English |
| 5073 | need to configure printers tc47 and tc19 | need to configure printers tc47 and tc19 | akzyhdlg pguazhbs | GRP_0 | need to configure printers tc47 and tc19 need ... | English |
| 5074 | reset passwords for mafgtnik -0 using password... | the | plzsntqj ujdyobsk | GRP_17 | reset passwords for mafgtnik -0 using password... | English |
| 5075 | unable to extend the display on external monitor | unable to extend the display on external monitor | qftpazns fxpnytmk | GRP_0 | unable to extend the display on external monit... | English |
| 5076 | circuit outage :germany,germany-divestiture si... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_8 | circuit outage :germany,germany-divestiture si... | English |
| 5077 | reset passwords for césar abreu rghkiriuytes ... | the | btvmxdfc yfahetsc | GRP_17 | reset passwords for césar abreu rghkiriuytes ... | English |
| 5078 | unable to launch netweaver | unable to launch netweaver | sprzgqyv uxpjtgaw | GRP_0 | unable to launch netweaver unable to launch ne... | English |
| 5079 | unable to print from adobe | unable to print from adobe | sprzgqyv uxpjtgaw | GRP_0 | unable to print from adobe unable to print fro... | English |
| 5080 | skype meeting code/pin | need ability to create skype meetings through ... | ovpuqfaj pqruovit | GRP_0 | skype meeting code/pin need ability to create ... | English |
| 5081 | hr_tool etime will not run after update ran la... | immediate need | nrmjhuox ktuyqewp | GRP_3 | hr_tool etime will not run after update ran la... | English |
| 5082 | job Job_593 failed in job_scheduler at: 09/07/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_593 failed in job_scheduler at: 09/07/... | English |
| 5083 | windows password reset | windows password reset | mdrguhox qczwadyx | GRP_0 | windows password reset windows password reset | English |
| 5084 | problleme mit EU_tool \we212571 \bejvhsfx dmvs... | problleme mit EU_tool \we212571 \bejvhsfx dmvs... | bejvhsfx dmvsclhp | GRP_24 | problleme mit EU_tool \we212571 \bejvhsfx dmvs... | English |
| 5085 | battery charging issue | battery charging issue | jvpkulxw ovuweygj | GRP_19 | battery charging issue battery charging issue | English |
| 5086 | need vpn access | need vpn access. new employee has a company la... | vrdjzswx rlweqdhs | GRP_34 | need vpn access need vpn access. new employee ... | English |
| 5087 | reset passwords for reghythicsa purvis using p... | i just need to reset my password for the inter... | ncjispka wspgujxm | GRP_7 | reset passwords for reghythicsa purvis using p... | English |
| 5088 | unlock account lichtyuiwu7 | unlock account lichtyuiwu7 | aorthyme rnsuipbk | GRP_0 | unlock account lichtyuiwu7 unlock account lich... | English |
| 5089 | production order 'grade' is partially printed ... | EMEA: production order 'grade' is partially pr... | wqfzjycu omleknjd | GRP_20 | production order 'grade' is partially printed ... | English |
| 5090 | java issue | unable to continue the java update | ejmdqfbl xuqkwdfa | GRP_19 | java issue unable to continue the java update | English |
| 5091 | printer problem / issue information | please complete all required questions below. ... | zgdvhfop kbrmfcog | GRP_0 | printer problem / issue information please com... | English |
| 5092 | security incidents - ( #in33578632) : suspicio... | source ip: 29.26.13.3095\r\nsource hostname: H... | gzhapcld fdigznbk | GRP_3 | security incidents - ( #in33578632) : suspicio... | English |
| 5093 | spam call received from india. | spam call received from india. | fhxsowau nfybhaxg | GRP_0 | spam call received from india. spam call recei... | English |
| 5094 | anleitung fuer password_management_tool passwo... | anleitung fuer password_management_tool passwo... | zmybfdqg cbwknmps | GRP_0 | anleitung fuer password_management_tool passwo... | English |
| 5095 | job_scheduler workstation HostName_242 | observerd fence & limit are 0 for HostName_242 | jloygrwh acvztedi | GRP_8 | job_scheduler workstation HostName_242 observe... | English |
| 5096 | internet explorer update to version11 | internet explorer update to version11 | orjszque lukegwam | GRP_19 | internet explorer update to version11 internet... | English |
| 5097 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | kwfiaztm bdytamoj | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 5098 | simfghon wants to use the mail. | owa configured.\r\nexplained that outlook is a... | uhiekyjz mflihxpq | GRP_0 | simfghon wants to use the mail. owa configured... | English |
| 5099 | we_wu101 account unlock. | we_wu101 account unlock. | ughzilfm cfibdamq | GRP_0 | we_wu101 account unlock. we_wu101 account unlock. | English |
| 5100 | i would like to download a free software calle... | i would like to download a free software calle... | lkfzibrx ljnabpgx | GRP_33 | i would like to download a free software calle... | English |
| 5101 | data retrieval from backup server | \n\nreceived from: vkzwibco.pueyvhoi@gmail.com... | vkzwibco pueyvhoi | GRP_12 | data retrieval from backup server \n\nreceived... | English |
| 5102 | cisco access point is not working. | \n\nreceived from: ughzilfm.cfibdamq@gmail.com... | ughzilfm cfibdamq | GRP_4 | cisco access point is not working. \n\nreceive... | English |
| 5103 | cisco access point is not working. | cisco access point is not working.\nmac addres... | yevirgnl ylhogjct | GRP_4 | cisco access point is not working. cisco acces... | English |
| 5104 | account owner issue_please assign it to "msd c... | i discovered that there is an issue with accou... | rcbdyslq zuspjbtw | GRP_40 | account owner issue_please assign it to "msd c... | English |
| 5105 | it help | \r\n\r\nreceived from: scjxobhd.ldypjkmf@gmail... | scjxobhd ldypjkmf | GRP_28 | it help \r\n\r\nreceived from: scjxobhd.ldypjk... | English |
| 5106 | not able to open an xcel file. | not able to open an xcel file.\n | dchzofyt kecxjvwq | GRP_0 | not able to open an xcel file. not able to ope... | English |
| 5107 | atp are available at delivery plant plant_283,... | from yesterday, we found that some order items... | cwhyboek axljywpf | GRP_6 | atp are available at delivery plant plant_283,... | English |
| 5108 | hello, i'm lbxgodfu usperhki from company ital... | hello, i'm lbxgodfu usperhki from company ital... | lbxgodfu usperhki | GRP_0 | hello, i'm lbxgodfu usperhki from company ital... | English |
| 5109 | netweaver - | \r\n\r\nreceived from: bcxpeuko.utorqehx@gmail... | bcxpeuko utorqehx | GRP_0 | netweaver - \r\n\r\nreceived from: bcxpeuko.u... | English |
| 5110 | policy ? | \r\n\r\nreceived from: hbmwlprq.ilfvyodx@gmail... | hbmwlprq ilfvyodx | GRP_39 | policy ? \r\n\r\nreceived from: hbmwlprq.ilfvy... | English |
| 5111 | babiluntr | \r\n\r\nreceived from: dhtxwcng.hruckmey@gmail... | dhtxwcng hruckmey | GRP_28 | babiluntr \r\n\r\nreceived from: dhtxwcng.hruc... | English |
| 5112 | outlook is not opening | name:ilypdtno mkdfetuq\r\nlanguage:\r\nbrowser... | ilypdtno mkdfetuq | GRP_0 | outlook is not opening name:ilypdtno mkdfetuq\... | English |
| 5113 | job Job_2049 failed in job_scheduler at: 09/07... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2049 failed in job_scheduler at: 09/07... | English |
| 5114 | network outage : pol-poland site hard down sin... | what type of outage: ___x__network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage : pol-poland site hard down sin... | English |
| 5115 | job Job_512 failed in job_scheduler at: 09/07/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_512 failed in job_scheduler at: 09/07/... | English |
| 5116 | pls. unlock & reset windows & erp account for ... | pls. unlock & reset windows & erp account for ... | vwpxjtof vmidzswj | GRP_0 | pls. unlock & reset windows & erp account for ... | English |
| 5117 | install win7 \ewew8323546 \sgnubadl gpkovbah | install win7 \ewew8323546 \sgnubadl gpkovbah | sgnubadl gpkovbah | GRP_24 | install win7 \ewew8323546 \sgnubadl gpkovbah i... | Nauru |
| 5118 | install win7 \ewew8323545 \sgnubadl gpkovbah | install win7 \ewew8323545 \sgnubadl gpkovbah | sgnubadl gpkovbah | GRP_24 | install win7 \ewew8323545 \sgnubadl gpkovbah i... | Nauru |
| 5119 | install win7 \ewew8323506 \vzqomdgt jwoqbuml | install win7 \ewew8323506 \vzqomdgt jwoqbuml | vzqomdgt jwoqbuml | GRP_24 | install win7 \ewew8323506 \vzqomdgt jwoqbuml i... | Nauru |
| 5120 | install win7 \ewew8323504 \vzqomdgt jwoqbuml | install win7 \ewew8323504 \vzqomdgt jwoqbuml | vzqomdgt jwoqbuml | GRP_24 | install win7 \ewew8323504 \vzqomdgt jwoqbuml i... | Nauru |
| 5121 | performance improvement/tuning | performance improvement/tuning for machine sum... | ejpvuxrg tryaibcx | GRP_41 | performance improvement/tuning performance im... | English |
| 5122 | account locked out and password reset | account locked out and password reset | gljkfidc kelctrpf | GRP_0 | account locked out and password reset account... | English |
| 5123 | collaboration_platform é‡Œé¢æ‰“å¼€"查看我ç... | collaboration_platform é‡Œé¢æ‰“å¼€"查看我ç... | lkrfndev kztlojin | GRP_31 | collaboration_platform é‡Œé¢æ‰“å¼€"查看我ç... | English |
| 5124 | EU_tool not working | the well-established work orders has been repo... | oinlxfak ojlyanhs | GRP_25 | EU_tool not working the well-established work ... | English |
| 5125 | please unlock & reset windows password for df... | please unlock & reset windows password for dfr... | vwpxjtof vmidzswj | GRP_0 | please unlock & reset windows password for df... | English |
| 5126 | HostName_53 - f:\ label:dat2-HostName_53 d4e3... | HostName_53 - f:\ label:dat2-HostName_53 d4e3... | spxqmiry zpwgoqju | GRP_12 | HostName_53 - f:\ label:dat2-HostName_53 d4e3... | English |
| 5127 | impacts awards password | \r\n\r\nreceived from: gqwdslpc.clhgpqnb@gmail... | omLHxJVE PYudFZBW | GRP_0 | impacts awards password \r\n\r\nreceived from:... | English |
| 5128 | circuit outage : usa - (company) vpn router is... | what type of outage: _____network __x___c... | spxqmiry zpwgoqju | GRP_8 | circuit outage : usa - (company) vpn router is... | English |
| 5129 | pls help to create delivery note for sto 49080... | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_6 | pls help to create delivery note for sto 49080... | English |
| 5130 | companysecure user can't get into the network | \n\nreceived from: ctzykflo.evzbhgru@gmail.com... | ctzykflo evzbhgru | GRP_0 | companysecure user can't get into the network... | English |
| 5131 | erp bex hana issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | lmwohkbd ucziatex | GRP_0 | erp bex hana issue system (SID_34, SID_37, SID... | English |
| 5132 | network outage : engineering_toolkuznetsk ware... | what type of outage: ___x__network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage : engineering_toolkuznetsk ware... | English |
| 5133 | windows account locked | windows account locked | ajnwuxiy gbhcdlkr | GRP_0 | windows account locked windows account locked | English |
| 5134 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 5135 | job Job_1386 failed in job_scheduler at: 09/07... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1386 failed in job_scheduler at: 09/07... | English |
| 5136 | ebhsm004 - e:\ label:dat1-ebhsm004 dc16126c ... | ebhsm004 - e:\ label:dat1-ebhsm004 dc16126c o... | spxqmiry zpwgoqju | GRP_65 | ebhsm004 - e:\ label:dat1-ebhsm004 dc16126c ... | English |
| 5137 | laptop service tag- fh1r262 not working(keypad... | \r\n\r\nreceived from: mzdkgnvs.svhkgyqb@gmail... | mzdkgnvs svhkgyqb | GRP_19 | laptop service tag- fh1r262 not working(keypad... | English |
| 5138 | only mouse is not working in system | only mouse is not working in system | munxvfhw texsbopi | GRP_19 | only mouse is not working in system only mouse... | English |
| 5139 | job Job_1329 failed in job_scheduler at: 09/07... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1329 failed in job_scheduler at: 09/07... | English |
| 5140 | error while extending mm# | from: kbyivdfz zwutmehy [mailto:kbyivdfz.zwutm... | kbyivdfz zwutmehy | GRP_29 | error while extending mm# from: kbyivdfz zwutm... | English |
| 5141 | unable to login to supply_chain_software | unable to login to supply_chain_software\r\npl... | qftpazns fxpnytmk | GRP_0 | unable to login to supply_chain_software unabl... | English |
| 5142 | wrench_engineering_tool macro issue | \r\n\r\nreceived from: ucdwyxko.apktrsyq@gmail... | ucdwyxko apktrsyq | GRP_19 | wrench_engineering_tool macro issue \r\n\r\nre... | English |
| 5143 | phone email | \n\nreceived from: baoapacg.wanrtyg@company.co... | rekpvblc ufysatml | GRP_0 | phone email \n\nreceived from: baoapacg.wanrt... | English |
| 5144 | babiluntr | \r\n\r\nreceived from: blktuiae.jzakfmhw@gmail... | blktuiae jzakfmhw | GRP_0 | babiluntr \r\n\r\nreceived from: blktuiae.jzak... | English |
| 5145 | pls help to reset the password for this erp id... | pls help to reset the password for this id: te... | lckagtry xcrmzgli | GRP_2 | pls help to reset the password for this erp id... | English |
| 5146 | walkmeåŠ è½½æ•…éšœ | walkme下载安装åŽï¼ŒæŒ‰é’®ä¸èƒ½åœ¨æµè§ˆå... | whflryeb fatgdzhq | GRP_48 | walkmeåŠ è½½æ•…éšœ walkme下载安装åŽï¼ŒæŒ‰... | English |
| 5147 | 电脑开机故障 | åŽŸææ–™ä»“库电脑开机è“å±ï¼Œä¸»æœºé¢æ... | ycjxrsba ehftdorm | GRP_48 | 电脑开机故障 åŽŸææ–™ä»“库电脑开机... | English |
| 5148 | gas station telephone line disconnection | gas station telephone line disconnection | hdqfgbei rnybhzve | GRP_31 | gas station telephone line disconnection gas ... | English |
| 5149 | å¼€ä¸äº†æœº | å¼€ä¸äº†æœºï¼Œæ˜¾ç¤ºç³»ç»Ÿå了。 | kclhqspo xvugztyc | GRP_30 | å¼€ä¸äº†æœº å¼€ä¸äº†æœºï¼Œæ˜¾ç¤ºç³»ç»Ÿå了。 | English |
| 5150 | im locked out of erp agian | name:sndaofyw jetcxpda\nlanguage:\nbrowser:mic... | sndaofyw jetcxpda | GRP_0 | im locked out of erp agian name:sndaofyw jetcx... | English |
| 5151 | user needs help with extended monitor projection. | user needs help with extended monitor projecti... | qftpazns fxpnytmk | GRP_0 | user needs help with extended monitor projecti... | English |
| 5152 | ess login issue | ess login issue\r\n-verified user details.(emp... | bcxfhekz bplfrnis | GRP_0 | ess login issue ess login issue\r\n-verified u... | English |
| 5153 | global_telecom_1 broadband | \n\nreceived from: vnetbgio.lqxztben@gmail.com... | vnetbgio lqxztben | GRP_0 | global_telecom_1 broadband \n\nreceived from: ... | English |
| 5154 | unable to complete forecast | unable to complete forecast\n\njochegtyhu is o... | fnqelwpk ahrskvln | GRP_67 | unable to complete forecast unable to complete... | English |
| 5155 | issues logging in to skype after recently chan... | name:obanjrhg rnafleys\nlanguage:\nbrowser:mic... | obanjrhg rnafleys | GRP_0 | issues logging in to skype after recently chan... | English |
| 5156 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | lokiwfhg udkoqrcg | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 5157 | job Job_2063d failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063d failed in job_scheduler at: 09/0... | English |
| 5158 | vip 2 -when i try to access the ethics trainin... | this happens if i log in via public internet a... | dxyvfuhr uyfqgomx | GRP_0 | vip 2 -when i try to access the ethics trainin... | English |
| 5159 | user having issues login in to the pc with the... | user having issues login in to the pc with the... | zaxjnqoh jyxewlav | GRP_0 | user having issues login in to the pc with the... | English |
| 5160 | ticket update for ticket_no0437735 | ticket update for ticket_no0437735 | fumkcsji sarmtlhy | GRP_0 | ticket update for ticket_no0437735 ticket upda... | English |
| 5161 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | thwinauz ulzkaqnc | GRP_0 | unable to log in to erp SID_34 unable to log i... | English |
| 5162 | global erp crm: please investigate why agbigh... | hello,\n\nit please advise the status on the b... | aqtcmxuf kuxsnimy | GRP_15 | global erp crm: please investigate why agbigh... | English |
| 5163 | engineering request 2248675 assignment (revise... | engineering request 2248675 assignment (revise... | tqrlikex moxaebfq | GRP_11 | engineering request 2248675 assignment (revise... | English |
| 5164 | unable to log in to supply_chain_software | unable to log in to supply_chain_software | fnqelwpk ahrskvln | GRP_0 | unable to log in to supply_chain_software unab... | English |
| 5165 | ethics undeliverable e-mails | good morning,\r\n\r\nplease review and advise ... | crkdjbot qiztrxne | GRP_0 | ethics undeliverable e-mails good morning,\r\n... | English |
| 5166 | need to activate new iphone | need to activate new iphone | ombjicdy rlfbovdq | GRP_0 | need to activate new iphone need to activate n... | English |
| 5167 | report not running properly and delivering res... | bex report is producing a report with 0 size i... | qtiyzjaw rxtpbqvu | GRP_9 | report not running properly and delivering res... | English |
| 5168 | unable to access travel site | unable to access travel site | mnsejpby xsrdtvkw | GRP_0 | unable to access travel site unable to access ... | English |
| 5169 | password reset via password_management_tool pa... | password reset via password_management_tool pa... | tjlgzkbp iervwjzg | GRP_0 | password reset via password_management_tool pa... | English |
| 5170 | unable to post document to SID_34 | unable to post document to SID_34 using spread... | kslhobgj cyhvefna | GRP_10 | unable to post document to SID_34 unable to po... | English |
| 5171 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | lokiwfhg udkoqrcg | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 5172 | password re-set | \r\n\r\nreceived from: zenjimdghtybo.xirzfpob@... | zenjimbo xirzfpob | GRP_0 | password re-set \r\n\r\nreceived from: zenjimd... | English |
| 5173 | delivery failures | material # 7359351\r\nlocation: plant_33\r\nst... | koqntham sqiuctfl | GRP_6 | delivery failures material # 7359351\r\nlocati... | English |
| 5174 | my password is invalid. can you help me. thanks. | my password is invalid. can you help me. | jclrangd kjlnearz | GRP_0 | my password is invalid. can you help me. thank... | English |
| 5175 | computer not booting into windows | touchpad and usb mouse not working \r\n\r\ncom... | qkprzfew poliamdb | GRP_3 | computer not booting into windows touchpad and... | English |
| 5176 | user has a new personal device for activation ... | user has a new personal device for activation ... | ombjicdy rlfbovdq | GRP_0 | user has a new personal device for activation ... | English |
| 5177 | ticket update for inc1548457 | ticket update for inc1548457 | fumkcsji sarmtlhy | GRP_0 | ticket update for inc1548457 ticket update fo... | English |
| 5178 | ticket update for ticket_no0437326 | ticket update for ticket_no0437326 | fumkcsji sarmtlhy | GRP_0 | ticket update for ticket_no0437326 ticket upda... | English |
| 5179 | windows zdsxmcwu thdjzolw | windows zdsxmcwu thdjzolw | tjcpbliu eaiovlqh | GRP_0 | windows zdsxmcwu thdjzolw windows zdsxmcwu thd... | English |
| 5180 | unable to login to distributor_tool with new p... | unable to login to distributor_tool with new p... | fwvrsdly dzjnkayq | GRP_0 | unable to login to distributor_tool with new p... | English |
| 5181 | account unlock | account unlock | pdvjanwx oprdiygs | GRP_0 | account unlock account unlock | English |
| 5182 | reset passwords for yolktfas fyoxqgvh using pa... | the | yolktfas fyoxqgvh | GRP_17 | reset passwords for yolktfas fyoxqgvh using pa... | English |
| 5183 | expense reports submissions in my workflow | \n\nreceived from: sbvlxuwm.yanbikrx@gmail.com... | sbvlxuwm yanbikrx | GRP_0 | expense reports submissions in my workflow \n\... | English |
| 5184 | terminated user called for access to the hub | terminated user called for access to the hub | olckhmvx pcqobjnd | GRP_0 | terminated user called for access to the hub t... | English |
| 5185 | vip2: sim card locked for the company provided... | vip2: sim card locked for the company provided... | ipmlkwce plhtfsqo | GRP_28 | vip2: sim card locked for the company provided... | English |
| 5186 | dob report showing blank data for yzugpdco nsy... | this report was working up until september 3rd... | kyzhcsrq fwyltvpd | GRP_9 | dob report showing blank data for yzugpdco nsy... | English |
| 5187 | the dynamics crm url checks is reporting a : d... | observing below alert in monitoring_tool since... | jloygrwh acvztedi | GRP_60 | the dynamics crm url checks is reporting a : d... | English |
| 5188 | need adobe flash player installed on the pc | need adobe flash player installed on the pc | wznkpjis rantlypb | GRP_0 | need adobe flash player installed on the pc ne... | English |
| 5189 | drucker ag71 in fürth | \n\nreceived from: osjqfbvw.hlmgrfpx@gmail.com... | osjqfbvw hlmgrfpx | GRP_28 | drucker ag71 in fürth \n\nreceived from: osjq... | German |
| 5190 | unable to login to pc after changing the passw... | unable to login to pc after changing the passw... | xgtyasdp xniowugc | GRP_0 | unable to login to pc after changing the passw... | English |
| 5191 | delivery due list created no delivery note for... | deliver due list ews1 is multiple times runnin... | qgopxabz xnuieqjr | GRP_18 | delivery due list created no delivery note for... | English |
| 5192 | circuit outage: vogelfontein, south africa , s... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_8 | circuit outage: vogelfontein, south africa , s... | English |
| 5193 | unable to connect to vpn | unable to connect to vpn | yrhnxpvi drlbzqpi | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 5194 | mobile device activation - personally owned sa... | tom called in to get the device activated. ple... | mxotdywa veycbhgu | GRP_0 | mobile device activation - personally owned sa... | English |
| 5195 | windows password reset | windows password reset | pdvjanwx oprdiygs | GRP_0 | windows password reset windows password reset | English |
| 5196 | 7350 - 2nd battery not charging | the battery on the display is charging up to 1... | nouivdea boiypjvx | GRP_3 | 7350 - 2nd battery not charging the battery on... | English |
| 5197 | reset the password for tsicojkp kghaozew on wi... | this is not resolved per the incident i placed... | tsicojkp kghaozew | GRP_0 | reset the password for tsicojkp kghaozew on wi... | English |
| 5198 | job Job_1953b failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953b failed in job_scheduler at: 09/0... | English |
| 5199 | please reset my password for supply_chain_soft... | please reset my password for supply_chain_soft... | ockwafib wftboqry | GRP_0 | please reset my password for supply_chain_soft... | English |
| 5200 | ethics login not recognized | ethics login is not being recognized. | kslhobgj cyhvefna | GRP_0 | ethics login not recognized ethics login is no... | English |
| 5201 | unable to load outlook | unable to load outlook | wcrxkiqz zdsloriy | GRP_0 | unable to load outlook unable to load outlook | English |
| 5202 | unable to print from the default printer | unable to print from the default printer | cowsvzel ryhkefwv | GRP_0 | unable to print from the default printer unabl... | English |
| 5203 | reset passwords for tsicojkp kghaozew using pa... | i am locked out of password_management_tool id... | tsicojkp kghaozew | GRP_17 | reset passwords for tsicojkp kghaozew using pa... | English |
| 5204 | employment status - three new non-employee [en... | *page down to ensure that all required data fi... | lbqgystk uezmfhsn | GRP_2 | employment status - three new non-employee [en... | English |
| 5205 | need account adding to my crm | \n\nreceived from: zfburidj.jmilguev@gmail.com... | zfburidj jmilguev | GRP_40 | need account adding to my crm \n\nreceived fr... | English |
| 5206 | install zebra \we_wu101 \pfjwinbg ljtzbdqg | install zebra \we_wu101 \pfjwinbg ljtzbdqg | pfjwinbg ljtzbdqg | GRP_24 | install zebra \we_wu101 \pfjwinbg ljtzbdqg ins... | English |
| 5207 | organisation chart data in outlook | dear it team , \r\n\r\npl look into below scre... | thevrxbo makhtjcu | GRP_2 | organisation chart data in outlook dear it tea... | English |
| 5208 | travelers | \r\n\r\nreceived from: qcfmxgid.jvxanwre@gmail... | qcfmxgid jvxanwre | GRP_0 | travelers \r\n\r\nreceived from: qcfmxgid.jvxa... | English |
| 5209 | master cost center missing for a person number... | master cost center missing for a person number... | sclfndob gnibctwu | GRP_52 | master cost center missing for a person number... | English |
| 5210 | mismatch between plant_63 & erp inventrory | \r\n\r\nreceived from: ikerxqwz.prkyuitl@gmail... | ikerxqwz prkyuitl | GRP_18 | mismatch between plant_63 & erp inventror... | English |
| 5211 | infopath issue - some rules were not applied | infopath issue - some rules were not applied\n | zidbmyut esmbcxor | GRP_0 | infopath issue - some rules were not applied ... | English |
| 5212 | blank call | blank call | fumkcsji sarmtlhy | GRP_0 | blank call blank call | English |
| 5213 | circuit outage: circuit outage: company vpn ci... | what type of outage: _____network ___x__c... | rkupnshb gsmzfojw | GRP_8 | circuit outage: circuit outage: company vpn ci... | English |
| 5214 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | jtaronux xvurkcbi | GRP_0 | unable to log in to erp SID_34 unable to log ... | English |
| 5215 | request it loaner laptop; need on _09_ - _06_ ... | ** loaners laptops are currently only availabl... | ncksqfmz fzcjunai | GRP_3 | request it loaner laptop; need on _09_ - _06_ ... | English |
| 5216 | help with mobile phones | \r\n\r\nreceived from: mfizgpoy.akbvznci@gmail... | mfizgpoy akbvznci | GRP_0 | help with mobile phones \r\n\r\nreceived from:... | English |
| 5217 | unable to print. requesting for printer drivers. | unable to print. requesting for printer drivers. | kauozcir jlyqxise | GRP_0 | unable to print. requesting for printer driver... | English |
| 5218 | impact award password reset | impact award password reset | jlpmakzb encpjsxq | GRP_0 | impact award password reset impact award passw... | English |
| 5219 | hotwlygp afukzhnm - frequent account lockout | account keeps locking out after the last passw... | hotwlygp afukzhnm | GRP_0 | hotwlygp afukzhnm - frequent account lockout a... | English |
| 5220 | business_client - a plug-in is not responding | i need to view attachments in er2248695, but i... | irpvzhym kayqlbuh | GRP_0 | business_client - a plug-in is not responding ... | English |
| 5221 | account unlock | account unlock | qfcxbpht oiykfzlr | GRP_0 | account unlock account unlock | English |
| 5222 | erp SID_34 account unlock | erp SID_34 account unlock | cplwfdjk djtriwby | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 5223 | fc on departments\distribution | moin marfhtyio,\r\n\r\nkannst du bitte herr lz... | vzqomdgt jwoqbuml | GRP_12 | fc on departments\distribution moin marfhtyio,... | German |
| 5224 | probleme mit we95\ drucker druckt nicht \dknej... | probleme mit we95\ drucker druckt nicht \dknej... | dknejifu dljvtebc | GRP_24 | probleme mit we95\ drucker druckt nicht \dknej... | German |
| 5225 | account locked. | account locked. | pyeothbl agfxelwz | GRP_0 | account locked. account locked. | English |
| 5226 | blank call | blank call | olckhmvx pcqobjnd | GRP_0 | blank call blank call | English |
| 5227 | erp SID_34 account unlock | erp SID_34 account unlock | ujsyzrvw vjuyzcih | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 5228 | reset passwords for ugawcoye jcfqgviy using pa... | the | ugawcoye jcfqgviy | GRP_17 | reset passwords for ugawcoye jcfqgviy using pa... | English |
| 5229 | tastatutur defekt \eewhse \vzqomdgt jwoqbuml | tastatutur defekt \eewhse \vzqomdgt jwoqbuml | vzqomdgt jwoqbuml | GRP_24 | tastatutur defekt \eewhse \vzqomdgt jwoqbuml t... | Latin |
| 5230 | install EU_tool und zebra \ewew8323506 \zlqfpt... | install EU_tool und zebra \ewew8323506 \zlqfpt... | zlqfptjx xnklbfua | GRP_24 | install EU_tool und zebra \ewew8323506 \zlqfpt... | German |
| 5231 | dock station - required | \n\nreceived from: jmoqelbc.fbzsyjne@gmail.com... | jmoqelbc fbzsyjne | GRP_19 | dock station - required \n\nreceived from: jm... | English |
| 5232 | erp access issue bex hana | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | lmwohkbd ucziatex | GRP_2 | erp access issue bex hana system (SID_34, SID_... | English |
| 5233 | issues with the computer - error messages / no... | issues with the computer. the user can't work.... | mizpywld dnrubpis | GRP_0 | issues with the computer - error messages / no... | English |
| 5234 | reset passwords for imuwhokc ijdfnayb using pa... | i reset my password tonight and already forgot... | pdvjanwx oprdiygs | GRP_17 | reset passwords for imuwhokc ijdfnayb using pa... | English |
| 5235 | bobj - erp business objects | \n\nreceived from: ctzykflo.evzbhgru@gmail.com... | ctzykflo evzbhgru | GRP_9 | bobj - erp business objects \n\nreceived from:... | English |
| 5236 | laptop login issue _kxmidsga zokivdfa | \r\n\r\nreceived from: kxmidsga.zokivdfa@gmail... | kxmidsga zokivdfa | GRP_0 | laptop login issue _kxmidsga zokivdfa \r\n\r\n... | English |
| 5237 | probleme mit outlook \axesnghb cyzuomxa | probleme mit outlook \axesnghb cyzuomxa | axesnghb cyzuomxa | GRP_24 | probleme mit outlook \axesnghb cyzuomxa proble... | English |
| 5238 | visual studio 2015 license issue | \r\n\r\nreceived from: rmezbnqt.ntbmkpuh@gmail... | rmezbnqt ntbmkpuh | GRP_19 | visual studio 2015 license issue \r\n\r\nrecei... | English |
| 5239 | unable to send/receive emails from external pa... | \n\nreceived from: izwtdnfq.xptuoaid@gmail.com... | izwtdnfq xptuoaid | GRP_26 | unable to send/receive emails from external pa... | English |
| 5240 | lese- / schreibberechtigung für m:\kbt-auftrg... | hallo marfhtyio,\r\n\r\nbitte richte mir die l... | htvepyua izgulrcf | GRP_12 | lese- / schreibberechtigung für m:\kbt-auftrg... | German |
| 5241 | job Job_2645 failed in job_scheduler at: 09/06... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2645 failed in job_scheduler at: 09/06... | English |
| 5242 | please review EU_tool server in germany - Ho... | please review EU_tool server in germany - Ho... | xmysiufa emfdltqz | GRP_25 | please review EU_tool server in germany - Ho... | English |
| 5243 | windows account locked | windows account locked | dwafrmth oabwzitv | GRP_0 | windows account locked windows account locked | English |
| 5244 | reset passwords for pyeothbl agfxelwz using pa... | reset passwords for pyeothbl agfxelwz using pa... | pyeothbl agfxelwz | GRP_0 | reset passwords for pyeothbl agfxelwz using pa... | English |
| 5245 | HostName_53:volume: f:\ label:dat2-HostName_53... | HostName_53: f drive is 100% full. | mnlazfsr mtqrkhnx | GRP_12 | HostName_53:volume: f:\ label:dat2-HostName_53... | English |
| 5246 | reset passwords for pyeothbl agfxelwz using pa... | please reset password aerp \r\n | pyeothbl agfxelwz | GRP_0 | reset passwords for pyeothbl agfxelwz using pa... | English |
| 5247 | account password is expired | account is expired | moeyphif zfweijcb | GRP_31 | account password is expired account is expired | English |
| 5248 | job que processor for engg database stopped, p... | to the database team:\r\nthe job processor for... | dmqxwkfr olmwqzpu | GRP_58 | job que processor for engg database stopped, p... | English |
| 5249 | reset microsoft online services password | from: microsoft on behalf of company inc. [mai... | rmezbnqt ntbmkpuh | GRP_0 | reset microsoft online services password from:... | English |
| 5250 | not able to access SID_1 | \n\nreceived from: miecoszw.mhvbnodw@gmail.com... | miecoszw mhvbnodw | GRP_0 | not able to access SID_1 \n\nreceived from: mi... | English |
| 5251 | reset the password for guldiwmn aroqwuvz on er... | i cannot log or change my erp password. ploeas... | guldiwmn aroqwuvz | GRP_0 | reset the password for guldiwmn aroqwuvz on er... | English |
| 5252 | job Job_1346 failed in job_scheduler at: 09/06... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1346 failed in job_scheduler at: 09/06... | English |
| 5253 | vpn connection failure | \r\n\r\nreceived from: xwertljy.zrmlhkyq@gmail... | xwertljy zrmlhkyq | GRP_0 | vpn connection failure \r\n\r\nreceived from: ... | English |
| 5254 | "\\HostName_625\departments\ehs_arbeitsmedizin... | bitte den verantwortlichen des ordners "\\Host... | ozphysqw pgcmwqze | GRP_34 | "\\HostName_625\departments\ehs_arbeitsmedizin... | German |
| 5255 | not able to login to system wh my user id and ... | computer name : aiml7801004 | mcphgvnb bdegqtyj | GRP_19 | not able to login to system wh my user id and ... | English |
| 5256 | job Job_1343 failed in job_scheduler at: 09/06... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1343 failed in job_scheduler at: 09/06... | English |
| 5257 | åˆ é™¤äº†ä¸€ä¸ªexcel 文档,文档地å€ï¼š\... | åˆ é™¤äº†ä¸€ä¸ªexcel 文档,"kmfg0042f01r00-... | rjxbiplo jmhnleaq | GRP_0 | åˆ é™¤äº†ä¸€ä¸ªexcel 文档,文档地å€ï¼š\... | English |
| 5258 | virus scanned | \r\n\r\nreceived from: pxbqkfgm.qexvrmcn@gmail... | pxbqkfgm qexvrmcn | GRP_50 | virus scanned \r\n\r\nreceived from: pxbqkfgm.... | English |
| 5259 | unable to connect to company wi-fi | unable to connect to company wi-fi | ntuhoafg bzwefjvk | GRP_0 | unable to connect to company wi-fi unable to ... | English |
| 5260 | attendance_tool id and password. | \r\n\r\nreceived from: ojgfmvep.zbatowgi@gmail... | ojgfmvep zbatowgi | GRP_0 | attendance_tool id and password. \r\n\r\nrecei... | English |
| 5261 | account locked out and password reset | account locked out and password reset | qklrdoba qxivmbts | GRP_0 | account locked out and password reset account... | English |
| 5262 | not able to add id01 as printer in my laptop | not able to add id01 as printer in my laptop. ... | upfthmjx fdxrpqat | GRP_19 | not able to add id01 as printer in my laptop n... | English |
| 5263 | job Job_2110 failed in job_scheduler at: 09/06... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_2110 failed in job_scheduler at: 09/06... | English |
| 5264 | ctrl, alt and delete keys are not working | ctrl ,alt and delete keys are not working\nuna... | cjklxmhi hmrkzbxu | GRP_19 | ctrl, alt and delete keys are not working ctr... | English |
| 5265 | serious issue with transports in SID_37 | we observed that request SID_35k910228 was imp... | petgvwch zevpkogu | GRP_14 | serious issue with transports in SID_37 we obs... | English |
| 5266 | reset microsoft online services password for j... | from: microsoft on behalf of company inc. [mai... | jhyazros azdxonjg | GRP_0 | reset microsoft online services password for j... | English |
| 5267 | erp SID_34 kis error | \n\nreceived from: pkdavqwt.tafrmxsh@gmail.com... | pkdavqwt tafrmxsh | GRP_18 | erp SID_34 kis error \n\nreceived from: pkdavq... | English |
| 5268 | folder access request. | \r\n\r\nreceived from: sepbdtou.noredzyx@gmail... | sepbdtou noredzyx | GRP_12 | folder access request. \r\n\r\nreceived from: ... | English |
| 5269 | unable to login windows | unable to login windows | cjklxmhi hmrkzbxu | GRP_19 | unable to login windows unable to login windows | English |
| 5270 | system is not booting up | system is not booting up | vkezwolt fgnqzeai | GRP_19 | system is not booting up system is not booting up | English |
| 5271 | windows account locked | windows account locked | cjklxmhi hmrkzbxu | GRP_0 | windows account locked windows account locked | English |
| 5272 | unable to receive mail from bank of amerirtca ... | i have raised a request for access in the bank... | hkjfmcqo gpcxltar | GRP_26 | unable to receive mail from bank of amerirtca ... | English |
| 5273 | windows account locked | windows account locked | urevbjcp krcaylpz | GRP_0 | windows account locked windows account locked | English |
| 5274 | account locked out and password reset | account locked out and password reset | tcbonyes gpfacron | GRP_0 | account locked out and password reset account... | English |
| 5275 | job Job_2555 failed in job_scheduler at: 09/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_2555 failed in job_scheduler at: 09/05... | English |
| 5276 | can not serch my engineering_tool | hello\r\ni can not serch for my engineering_to... | cuytdmhv yeqdmwvt | GRP_0 | can not serch my engineering_tool hello\r\ni c... | English |
| 5277 | gtehdnyu belt tracker | \n\nreceived from: sdbcpvtx.hzpctsla@gmail.com... | sdbcpvtx hzpctsla | GRP_16 | gtehdnyu belt tracker \n\nreceived from: sdbcp... | English |
| 5278 | user needs help login to the company vpn. | user needs help login to the company vpn. | nyjvwsxf npwoglzf | GRP_0 | user needs help login to the company vpn. user... | English |
| 5279 | telephony_software password has expired | my telephony_software password is getting expi... | rbozivdq gmlhrtvp | GRP_7 | telephony_software password has expired my tel... | English |
| 5280 | collaboration_platform application uninstalled | collaboration_platform application uninstalled | obanjrhg rnafleys | GRP_0 | collaboration_platform application uninstalled... | English |
| 5281 | "scghhnelligkeit" meines internets plnvcwuq ik... | \n\nreceived from: jclrangd.kjlnearz@gmail.com... | jclrangd kjlnearz | GRP_0 | "scghhnelligkeit" meines internets plnvcwuq ik... | German |
| 5282 | HostName_1132: oracle finance_app financial ma... | oracle finance_app financial management - web ... | rkupnshb gsmzfojw | GRP_12 | HostName_1132: oracle finance_app financial ma... | English |
| 5283 | can u pl. check if server HostName_637 is work... | from: nanrfakurtyar c \nsent: monday, 05 sept... | bqjvxsaf aupdonjy | GRP_1 | can u pl. check if server HostName_637 is work... | English |
| 5284 | password reset : login issues | password reset : login issues | nxvbtfui hjickwyd | GRP_0 | password reset : login issues password reset :... | English |
| 5285 | restore o:\schaem\eigene dateien\db1.mdb | hallo \n\nwürdest du bitte diese datei "o:\sc... | cflrqoew qbgjwaye | GRP_12 | restore o:\schaem\eigene dateien\db1.mdb hallo... | German |
| 5286 | restore directory schulzgth from public | hallo marfhtyio,\r\n\r\n\r\nder ordner schulzg... | vzqomdgt jwoqbuml | GRP_12 | restore directory schulzgth from public hallo ... | German |
| 5287 | EU_tool not run since 03.00 p.m we didn't have... | EU_tool not run since 03.00 p.m we didn't have... | vmtwoadp ohjvlcmb | GRP_25 | EU_tool not run since 03.00 p.m we didn't have... | English |
| 5288 | i'm on vacation, and my vpn isn't working. ca... | , vpn | koiapqbg teyldpkw | GRP_50 | i'm on vacation, and my vpn isn't working. ca... | English |
| 5289 | webpage won't load | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_0 | webpage won't load \n\nreceived from: vkzwafuh... | English |
| 5290 | account lock release request of "kanghytaim" | account lock release request of "kanghytaim" | gworzkhc inypbucg | GRP_0 | account lock release request of "kanghytaim" ... | English |
| 5291 | am keyence messgerät monitor ausgetauscht | am keyence messgerät monitor ausgetauscht | ugvkyalo ayofwjpi | GRP_42 | am keyence messgerät monitor ausgetauscht am ... | German |
| 5292 | probleme mit ie \dwgliuyt ieqgdpbm | probleme mit ie \dwgliuyt ieqgdpbm | qtovukbc jumqcvti | GRP_24 | probleme mit ie \dwgliuyt ieqgdpbm probleme mi... | Danish |
| 5293 | probleme mit ewew8311667 \wrcktgbd wzrgyunp | probleme mit ewew8311667 \wrcktgbd wzrgyunp | wrcktgbd wzrgyunp | GRP_24 | probleme mit ewew8311667 \wrcktgbd wzrgyunp pr... | Danish |
| 5294 | tür- öffnerfunktion geht nicht. | keine tür- öffnerfunktion bei folgenden zei... | tgpvrbyi ztdxwpcn | GRP_0 | tür- öffnerfunktion geht nicht. keine tür-... | German |
| 5295 | business_client issue | \r\n\r\nreceived from: frydqbgs.ugmnzfik@gmail... | frydqbgs ugmnzfik | GRP_0 | business_client issue \r\n\r\nreceived from: f... | English |
| 5296 | balance carry forward for ap and ar report | \r\n\r\nreceived from: ihfkwzjd.erbxoyqk@gmail... | ihfkwzjd erbxoyqk | GRP_10 | balance carry forward for ap and ar report \r... | English |
| 5297 | re: finished: start of s&op process - my acco... | it support \r\ncould you please unlocked my ac... | qaohugxw kdeqjncw | GRP_0 | re: finished: start of s&op process - my acco... | English |
| 5298 | awb not printed out | can you please have a look to this, there seem... | rxoynvgi ntgdsehl | GRP_18 | awb not printed out can you please have a look... | English |
| 5299 | job Job_1953 was running longer than 30 minute... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953 was running longer than 30 minute... | English |
| 5300 | tastatur defekt \wcupoaty fqnzwphj | tastatur defekt \wcupoaty fqnzwphj | wcupoaty fqnzwphj | GRP_24 | tastatur defekt \wcupoaty fqnzwphj tastatur de... | Latin |
| 5301 | erp locked | \n\nreceived from: xosycftu.olhpmsdw@gmail.com... | xosycftu olhpmsdw | GRP_0 | erp locked \n\nreceived from: xosycftu.olhpmsd... | English |
| 5302 | job Job_3181 failed in job_scheduler at: 09/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3181 failed in job_scheduler at: 09/05... | English |
| 5303 | 报税电脑ä¸èƒ½è”网,让贺æ£å¹³ä¼‘。 | 报税电脑ä¸èƒ½è”网,让贺æ£å¹³ä¼‘。 | hlrmufzx qcdzierm | GRP_30 | 报税电脑ä¸èƒ½è”网,让贺æ£å¹³ä¼‘。 ... | English |
| 5304 | abap runtime error with transaction zload | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | oebcqfli zvbxasky | GRP_0 | abap runtime error with transaction zload syst... | English |
| 5305 | reset passwords for qgilmtyc gmscovxa using pa... | the | qgilmtyc gmscovxa | GRP_17 | reset passwords for qgilmtyc gmscovxa using pa... | English |
| 5306 | archiving_tool scanner not working | archiving_tool scanner not working.\r\n\r\nple... | giumxwvh lfvwjtin | GRP_0 | archiving_tool scanner not working archiving_... | English |
| 5307 | reset passwords for rlhuwmve krcfhoxj using pa... | please reseat SID_1. i need to uacyltoe hxgayc... | rlhuwmve krcfhoxj | GRP_17 | reset passwords for rlhuwmve krcfhoxj using pa... | English |
| 5308 | computer can't started | computer can't started | hctajofe qgrkcxyt | GRP_31 | computer can't started computer can't started | English |
| 5309 | defekt lwl leitung \box defekt \vaigycet jtgmpdcr | defekt lwl leitung \box defekt \vaigycet jtgmpdcr | vaigycet jtgmpdcr | GRP_24 | defekt lwl leitung \box defekt \vaigycet jtgmp... | German |
| 5310 | ieæµè§ˆå™¨æ— 法打开。 | ieæµè§ˆå™¨æ— 法打开。 | dkxstwfq eljczgbn | GRP_31 | ieæµè§ˆå™¨æ— 法打开。 ieæµè§ˆå™¨æ— 法æ‰... | English |
| 5311 | 系统故障,å¯åЍè“å±. | 系统故障,å¯åЍè“å±. | lhkqbmna ekhtivsd | GRP_31 | 系统故障,å¯åЍè“å±. 系统故障,å... | English |
| 5312 | erp SID_34 account locked. | erp SID_34 account locked. | qgopxabz xnuieqjr | GRP_0 | erp SID_34 account locked. erp SID_34 account ... | English |
| 5313 | guestcompany access for wifi | \r\n\r\nreceived from: htnvbwxs.gwfrzuex@gmail... | htnvbwxs gwfrzuex | GRP_0 | guestcompany access for wifi \r\n\r\nreceived ... | English |
| 5314 | account locked. | account locked. | zrcfyiea gynbmopr | GRP_0 | account locked. account locked. | English |
| 5315 | after changing to new group, several workflow ... | phone: \nchanged from milling team csd 511115... | nobwzdvh yqjugexl | GRP_13 | after changing to new group, several workflow ... | English |
| 5316 | job Job_1315 failed in job_scheduler at: 09/05... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1315 failed in job_scheduler at: 09/05... | English |
| 5317 | reset passwords for bxeagsmt zrwdgsco using pa... | the | bxeagsmt zrwdgsco | GRP_17 | reset passwords for bxeagsmt zrwdgsco using pa... | English |
| 5318 | [erp] query "zload" for production scheduling ... | got forwarded an email regarding erp query zlo... | xvwchsdg pladjmxt | GRP_20 | [erp] query "zload" for production scheduling ... | English |
| 5319 | vip2 -enable to save to local pc in citrix wit... | vendor is creating reports for the usa carve-o... | sbgvrncj idfhtoqv | GRP_12 | vip2 -enable to save to local pc in citrix wit... | English |
| 5320 | account locked out | \r\n\r\nreceived from: vhlepcta.lqbgcxpt@gmail... | vhlepcta lqbgcxpt | GRP_0 | account locked out \r\n\r\nreceived from: vhle... | English |
| 5321 | power outage: usa tn, tm-usa-att-rtr circuit w... | usa tn, tm-usa-att-rtr circuit went down at 0... | mnlazfsr mtqrkhnx | GRP_8 | power outage: usa tn, tm-usa-att-rtr circuit w... | English |
| 5322 | access to network folder | \n\nreceived from: sxnzacoj.lwvqgfby@gmail.com... | sxnzacoj lwvqgfby | GRP_12 | access to network folder \n\nreceived from: sx... | English |
| 5323 | not able to log on to hub from remote location... | \r\n\r\nreceived from: slfxjznk.hmspexor@gmail... | slfxjznk hmspexor | GRP_0 | not able to log on to hub from remote location... | English |
| 5324 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 5325 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 5326 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 5327 | vpn(apvpn ,vpn) unable to connection . | vpn(apvpn ,vpn) unable to connection . | rekpvblc ufysatml | GRP_31 | vpn(apvpn ,vpn) unable to connection . vpn(a... | English |
| 5328 | unable to generate po as per pr 3063.41.49.092 | we've found the pop-up error when generating s... | tqfnalpj qyoscnge | GRP_29 | unable to generate po as per pr 3063.41.49.092... | English |
| 5329 | please unlock my erp | \r\n\r\nreceived from: xosycftu.olhpmsdw@gmail... | xosycftu olhpmsdw | GRP_0 | please unlock my erp \r\n\r\nreceived from: xo... | English |
| 5330 | mm# 5260903 ( kr230 ) | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_29 | mm# 5260903 ( kr230 ) \r\n\r\nreceived from: h... | English |
| 5331 | i forgot my erp password | \r\n\r\nreceived from: uwlnpscr.lvkujfse@gmail... | uwlnpscr lvkujfse | GRP_0 | i forgot my erp password \r\n\r\nreceived from... | English |
| 5332 | the terminate action for nyzxjwud jvtsgmin has... | \n-----original message-----\nfrom: jobxpkrg k... | jobxpkrg klonypzr | GRP_2 | the terminate action for nyzxjwud jvtsgmin has... | English |
| 5333 | network outage at usa since 8:40pm et 09/04. | what type of outage: __x___network _____c... | uvrbhlnt bjrmalzi | GRP_8 | network outage at usa since 8:40pm et 09/04. w... | English |
| 5334 | zcor0003 report issue | please provide details in the template below (... | uylomcrx nfvjsgze | GRP_10 | zcor0003 report issue please provide details i... | English |
| 5335 | help to change the windows password using pass... | help to change the windows password using pass... | uiaqhcpo nxzcieho | GRP_0 | help to change the windows password using pass... | English |
| 5336 | job snp_heu_5_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_5_regen failed in job_scheduler at... | English |
| 5337 | job Job_1306 failed in job_scheduler at: 09/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1306 failed in job_scheduler at: 09/04... | English |
| 5338 | job bwhrattr failed in job_scheduler at: 09/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 09/04... | English |
| 5339 | windows password | \r\n\r\nreceived from: tbioceqj.ukjietwz@gmail... | tbioceqj ukjietwz | GRP_0 | windows password \r\n\r\nreceived from: tbioce... | English |
| 5340 | job snp_heu_1_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_1_regen failed in job_scheduler at... | English |
| 5341 | firmware upgrade on the phones | davgtgyrh called in for an issue where there w... | kxsceyzo naokumlb | GRP_4 | firmware upgrade on the phones davgtgyrh calle... | English |
| 5342 | job Job_1395 failed in job_scheduler at: 09/04... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1395 failed in job_scheduler at: 09/04... | English |
| 5343 | emailing: 16-177747.htm | \r\n\r\nreceived from: cowsvzel.ryhkefwv@gmail... | cowsvzel ryhkefwv | GRP_25 | emailing: 16-177747.htm \r\n\r\nreceived from:... | English |
| 5344 | network outage :bellusco, it - divestiture sit... | what type of outage: __x__network _____ci... | oldrctiu bxurpsyi | GRP_8 | network outage :bellusco, it - divestiture sit... | English |
| 5345 | laptop not booting up | when vigrtgyne is logging into his laptop, the... | spxqmiry zpwgoqju | GRP_19 | laptop not booting up when vigrtgyne is loggin... | English |
| 5346 | job co_val_update_crosscomp failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job co_val_update_crosscomp failed in job_sche... | English |
| 5347 | network outage: turkey turkey - site hard down... | what type of outage: __x___network _____c... | spxqmiry zpwgoqju | GRP_8 | network outage: turkey turkey - site hard down... | English |
| 5348 | job SID_48cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_48cold failed in job_scheduler at: 09/... | English |
| 5349 | job SID_50cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_50cold failed in job_scheduler at: 09/... | English |
| 5350 | job SID_27hot failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_27hot failed in job_scheduler at: 09/0... | English |
| 5351 | job SID_41cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_41cold failed in job_scheduler at: 09/... | English |
| 5352 | job SID_44cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_44cold failed in job_scheduler at: 09/... | English |
| 5353 | bridgex from lacw8515941 step 'login' failed:... | bridgex from lacw8515941 step 'login' failed:... | jyoqwxhz clhxsoqy | GRP_14 | bridgex from lacw8515941 step 'login' failed:... | English |
| 5354 | job SID_27hot failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_27hot failed in job_scheduler at: 09/0... | English |
| 5355 | job SID_41cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_41cold failed in job_scheduler at: 09/... | English |
| 5356 | job SID_51cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_51cold failed in job_scheduler at: 09/... | English |
| 5357 | job SID_23cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_23cold failed in job_scheduler at: 09/... | English |
| 5358 | job Job_727 failed in job_scheduler at: 09/03/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_727 failed in job_scheduler at: 09/03/... | English |
| 5359 | job SID_38cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_38cold failed in job_scheduler at: 09/... | English |
| 5360 | job SID_32cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_32cold failed in job_scheduler at: 09/... | English |
| 5361 | job SID_39cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_39cold failed in job_scheduler at: 09/... | English |
| 5362 | job SID_79cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_79cold failed in job_scheduler at: 09/... | English |
| 5363 | job SID_47cold failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_47cold failed in job_scheduler at: 09/... | English |
| 5364 | node HostName_587 located at germany is down s... | node HostName_587 located at germany is down s... | jyoqwxhz clhxsoqy | GRP_12 | node HostName_587 located at germany is down s... | English |
| 5365 | node HostName_20 located at Israel is down sin... | node HostName_20 located at EMEA is down since... | jyoqwxhz clhxsoqy | GRP_8 | node HostName_20 located at Israel is down sin... | English |
| 5366 | job Job_1665 failed in job_scheduler at: 09/03... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1665 failed in job_scheduler at: 09/03... | English |
| 5367 | job Job_484 failed in job_scheduler at: 09/03/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_484 failed in job_scheduler at: 09/03/... | English |
| 5368 | delete personal address from system | from: qpixeudn rjlziysd \nsent: saturday, sept... | qpixeudn rjlziysd | GRP_26 | delete personal address from system from: qpix... | English |
| 5369 | job Job_1983 failed in job_scheduler at: 09/03... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1983 failed in job_scheduler at: 09/03... | English |
| 5370 | no sound | no sound | vjwdyanl knfsjdgz | GRP_0 | no sound no sound | English |
| 5371 | unable to create erp notification | \n\nreceived from: dfiyvmec.wxioadpt@gmail.com... | dfiyvmec wxioadpt | GRP_45 | unable to create erp notification \n\nreceiv... | English |
| 5372 | inwarehouse_tool format - issue outputs to e-mail | \r\n\r\nreceived from: zfliqpxm.dgfvaqlh@gmail... | zfliqpxm dgfvaqlh | GRP_13 | inwarehouse_tool format - issue outputs to e-m... | English |
| 5373 | job Job_1913 failed in job_scheduler at: 09/03... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1913 failed in job_scheduler at: 09/03... | English |
| 5374 | job Job_1996 failed in job_scheduler at: 09/03... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1996 failed in job_scheduler at: 09/03... | English |
| 5375 | i can't logon erp at home, please help to solv... | \r\n\r\nreceived from: baoapacg.wanrtyg@compan... | rekpvblc ufysatml | GRP_19 | i can't logon erp at home, please help to solv... | English |
| 5376 | network outage:milton keynes, uk - divestiture... | what type of outage: __x___network _____c... | oldrctiu bxurpsyi | GRP_8 | network outage:milton keynes, uk - divestiture... | English |
| 5377 | job bk_hana_SID_62_os_dly_dp failed in job_sch... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_62_os_dly_dp failed in job_sch... | English |
| 5378 | new order | from: jmfvwrek pqwehmzgagannathan \r\nsent: sa... | jmfvwrek pqwehmzg | GRP_26 | new order from: jmfvwrek pqwehmzgagannathan \r... | English |
| 5379 | ad account locked | ad account locked | ezkgipuv ozcvnkht | GRP_0 | ad account locked ad account locked | English |
| 5380 | unable to connect to web | unable to connect to web ,and check download f... | bearzclk xnvqipcz | GRP_0 | unable to connect to web unable to connect to... | English |
| 5381 | emails not available in outlook but available ... | \n\nreceived from: dargthy.sohfyuimaiah@compan... | sholvcmf bjtpomrl | GRP_0 | emails not available in outlook but available ... | English |
| 5382 | job Job_1384 failed in job_scheduler at: 09/03... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1384 failed in job_scheduler at: 09/03... | English |
| 5383 | desktop icon size issue | name:jvpkulxw ovuweygj\nlanguage:\nbrowser:mic... | jvpkulxw ovuweygj | GRP_0 | desktop icon size issue name:jvpkulxw ovuweygj... | English |
| 5384 | job SID_37hoti failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_37hoti failed in job_scheduler at: 09/... | English |
| 5385 | mouse started jumping all over the screen again. | \r\n\r\nreceived from: ulroqsyf.wctpnarb@gmail... | ulroqsyf wctpnarb | GRP_19 | mouse started jumping all over the screen agai... | English |
| 5386 | vpn vpn access | \r\n\r\nreceived from: qfcxbpht.oiykfzlr@gmail... | qfcxbpht oiykfzlr | GRP_0 | vpn vpn access \r\n\r\nreceived from: qfcxbpht... | English |
| 5387 | job Job_2573 failed in job_scheduler at: 09/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2573 failed in job_scheduler at: 09/02... | English |
| 5388 | #mm2247736 can not inwarehouse_tool consignmen... | #mm2247736 can not inwarehouse_tool consignmen... | houcdelq wnypackq | GRP_13 | #mm2247736 can not inwarehouse_tool consignmen... | English |
| 5389 | erp report zcor0003 variant rod stock 1 is wor... | report won't work. | xjeblpst dohnewjg | GRP_44 | erp report zcor0003 variant rod stock 1 is wor... | English |
| 5390 | unable to edit quantities under oppurtunities ... | unable to edit quantities under oppurtunities ... | tmopbken ibzougsd | GRP_40 | unable to edit quantities under oppurtunities ... | English |
| 5391 | unable to launch outlook | unable to launch outlook | qdmrlzby ouvyfkwc | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 5392 | need email address to login to outlook | need email address to login to outlook | lsnpqxhw nplqhzrv | GRP_0 | need email address to login to outlook need em... | English |
| 5393 | erp SID_34 account unlock | erp SID_34 account unlock | ajdcnwtb bvijwxko | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 5394 | hana | \n\nreceived from: nealxjbc.owjduxai@gmail.com... | nealxjbc owjduxai | GRP_9 | hana \n\nreceived from: nealxjbc.owjduxai@gma... | English |
| 5395 | change accounts from full time employee to con... | hello,\n\neffective september 5 please change ... | qcehailo wqynckxg | GRP_2 | change accounts from full time employee to con... | English |
| 5396 | interface fa0/21 on company-sa-bra-sao-pollaur... | interface: fastethernet0/21 · 1721 router emb... | dkmcfreg anwmfvlg | GRP_8 | interface fa0/21 on company-sa-bra-sao-pollaur... | English |
| 5397 | HostName_115 :volume consumed on : c:\ is more... | HostName_115: volume: c:drive on server is ove... | jyoqwxhz clhxsoqy | GRP_12 | HostName_115 :volume consumed on : c:\ is more... | English |
| 5398 | outlook email font size issue | outlook email font size issue | sdlixwmb zvygmnco | GRP_0 | outlook email font size issue outlook email fo... | English |
| 5399 | job Job_1108 failed in job_scheduler at: 09/02... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1108 failed in job_scheduler at: 09/02... | English |
| 5400 | unable to connect to vpn | unable to connect to vpn | vanteksj astelnqw | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 5401 | network outage: , malaysia - (company) network... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: , malaysia - (company) network... | English |
| 5402 | cannot log into skype or vpn | name:qjeymnzs wgpelvyn\nlanguage:\nbrowser:mic... | qjeymnzs wgpelvyn | GRP_0 | cannot log into skype or vpn name:qjeymnzs wgp... | English |
| 5403 | light indicator | from: cwuospin nbhoxqpe \nsent: friday, septem... | zgyudxbt exrluhdb | GRP_37 | light indicator from: cwuospin nbhoxqpe \nsent... | English |
| 5404 | outlook not connecting to microsoft exchange | outlook not connecting to microsoft exchange | sghamujc shompueb | GRP_0 | outlook not connecting to microsoft exchange o... | English |
| 5405 | vrtx at south_amerirtca with light blinking | vrtx at south_amerirtca is showing orange lig... | kbnfxpsy gehxzayq | GRP_12 | vrtx at south_amerirtca with light blinking v... | English |
| 5406 | reference: inplant_851936 | while trying to invoke the method java.util.li... | iauqlrjk nijdaukz | GRP_14 | reference: inplant_851936 while trying to invo... | English |
| 5407 | erp logon balancing error | erp logon balancing error | chkmejsn lvidgknc | GRP_0 | erp logon balancing error erp logon balancing ... | English |
| 5408 | newly created emails are not getting sent, the... | newly created emails are not getting sent, the... | yodgaxsp ucjynprt | GRP_3 | newly created emails are not getting sent, the... | English |
| 5409 | erp rounding off the total of an order | we have quotes 3116232719, 3116233894 and 3116... | iqbyrtop izpmvgfq | GRP_13 | erp rounding off the total of an order we have... | English |
| 5410 | product selector not working | this appears to be an issue with all environme... | lenxvcbq vwnhjtoi | GRP_51 | product selector not working this appears to b... | English |
| 5411 | unable to make incoming and outgoing calls fro... | unable to make incoming and outgoing calls fro... | jusenflm sufbehom | GRP_0 | unable to make incoming and outgoing calls fro... | English |
| 5412 | cyber security - phish uacyltoe hxgaycze repor... | cyber security - phish uacyltoe hxgaycze repor... | ugyothfz ugrmkdhx | GRP_2 | cyber security - phish uacyltoe hxgaycze repor... | English |
| 5413 | unable to connect to companysecure | unable to connect to companysecure | tmjxhlwf nacglwiu | GRP_0 | unable to connect to companysecure unable to c... | English |
| 5414 | unable to connect to network in usa, michigan | unable to connect to network in usa, michigan | ixwymcbz yxmoihjg | GRP_0 | unable to connect to network in usa, michigan ... | English |
| 5415 | mapping printers | mapping printers | pacvbetl yptglhoe | GRP_0 | mapping printers mapping printers | English |
| 5416 | india company: tcl circuit packet drops since ... | packet drops in the internet link .tcl#3060oc... | oldrctiu bxurpsyi | GRP_4 | india company: tcl circuit packet drops since ... | English |
| 5417 | ft. mill cec outlook connectivity | the majority of csrs in the usa cec work remot... | dtwuqpmo otupcawz | GRP_26 | ft. mill cec outlook connectivity the majority... | English |
| 5418 | reset password | \n\nreceived from: koahsriq.wdugqatr@gmail.com... | koahsriq wdugqatr | GRP_0 | reset password \n\nreceived from: koahsriq.wd... | English |
| 5419 | password reset for fmeozwng pfneutkg | password reset for fmeozwng pfneutkg | qcwoejsk cowdbfkn | GRP_0 | password reset for fmeozwng pfneutkg password ... | English |
| 5420 | erp SID_34 erp production password reset | name:dhkovprf pltndoab\nlanguage:\nbrowser:mic... | dhkovprf pltndoab | GRP_0 | erp SID_34 erp production password reset name:... | English |
| 5421 | infopath issue | infopath issue | msarjyhi fpxdbeno | GRP_0 | infopath issue infopath issue | English |
| 5422 | skype login issue : personal certificate error | skype login issue : personal certificate error | eqxakzyi cwfrjitq | GRP_0 | skype login issue : personal certificate error... | English |
| 5423 | folder access. | x2215\nsummary:require jftyff bgtyrant, user ... | mlckvyfq aonlxvwb | GRP_12 | folder access. x2215\nsummary:require jftyff ... | English |
| 5424 | distributor_tool | \r\n\r\nreceived from: brhlcpqv.sfozwkyx@gmail... | brhlcpqv sfozwkyx | GRP_0 | distributor_tool \r\n\r\nreceived from: brhlc... | English |
| 5425 | joining skype meetings through iphone | joining skype meetings through iphone | rbozivdq gmlhrtvp | GRP_0 | joining skype meetings through iphone joining ... | English |
| 5426 | problems with quoting engine. refer attachment. | problems with quoting engine. refer attachment... | obanjrhg rnafleys | GRP_21 | problems with quoting engine. refer attachment... | English |
| 5427 | erp SID_34 password reset | erp SID_34 password reset | lwbchnga axpqctfr | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 5428 | delegation query, owa and checking emails olde... | delegation query, owa and checking emails olde... | jwhmqnye xlpvdwre | GRP_0 | delegation query, owa and checking emails olde... | English |
| 5429 | urgent: samag lieferschein sales order #356125... | \n\nreceived from: vujymcls.sgpmyviq@gmail.com... | vujymcls sgpmyviq | GRP_18 | urgent: samag lieferschein sales order #356125... | German |
| 5430 | computer name | \r\n\r\nreceived from: koahsriq.wdugqatr@gmail... | koahsriq wdugqatr | GRP_33 | computer name \r\n\r\nreceived from: koahsriq.... | English |
| 5431 | email confirmation to login to hub | email confirmation to login to hub | wqfnhbuz ptlqknre | GRP_0 | email confirmation to login to hub email confi... | English |
| 5432 | outlook profil / correction of phone number an... | \r\n\r\nreceived from: byclpwmv.esafrtbh@gmail... | byclpwmv esafrtbh | GRP_0 | outlook profil / correction of phone number an... | English |
| 5433 | security incidents - ( #in33765965 ) : possibl... | source ip :10.40.6.221\nsystem name :rqxl85172... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33765965 ) : possibl... | English |
| 5434 | password change | password change | okdrsinu gvfmuxdo | GRP_0 | password change password change | English |
| 5435 | personal device set-up procedure | \r\n\r\nreceived from: uiotbkhs.grymzxiq@gmail... | uiotbkhs grymzxiq | GRP_0 | personal device set-up procedure \r\n\r\nrecei... | English |
| 5436 | 1192185 is in stock at plant_249 after finishi... | 1192185 is in stock at plant_249 after finishi... | dqplrwoy cutpwjie | GRP_6 | 1192185 is in stock at plant_249 after finishi... | English |
| 5437 | cannot connect to eu vpn from home. need to us... | when clicking "company_vpn" on the vpn.company... | zlvafsxw dfzbsjui | GRP_0 | cannot connect to eu vpn from home. need to us... | English |
| 5438 | wifi not working | wifi not working | idlupnzr nkxylwrc | GRP_0 | wifi not working wifi not working | English |
| 5439 | erp access | \n\nreceived from: qdtywmkv.aolijwnx@gmail.com... | qdtywmkv aolijwnx | GRP_0 | erp access \n\nreceived from: qdtywmkv.aolijwn... | English |
| 5440 | password reset alert from o365 for user • m... | password reset alert from o365 for user • m... | lhrnyktm egilutwz | GRP_0 | password reset alert from o365 for user • m... | English |
| 5441 | ooo till friday . crm web access. unable to lo... | crm web access. unable to load page. | xiaurwpz hzusljmc | GRP_0 | ooo till friday . crm web access. unable to lo... | English |
| 5442 | skype audio not working | skype audio not working | ijplstng juybetlo | GRP_0 | skype audio not working skype audio not working | English |
| 5443 | password reset request from o365 | password reset request from o365 | hbodpniz jvqpxohl | GRP_0 | password reset request from o365 password res... | English |
| 5444 | mobile device activation request | mobile device activation request | byclpwmv esafrtbh | GRP_0 | mobile device activation request mobile devic... | English |
| 5445 | not able to login to vpn : account locked out | not able to login to vpn : account locked out | vxzahrlc frtkpehy | GRP_0 | not able to login to vpn : account locked out ... | English |
| 5446 | ad account locked out | ad account locked out | ezkgipuv ozcvnkht | GRP_0 | ad account locked out ad account locked out | English |
| 5447 | printer not working, pc in qa office in german... | printer not working, pc in qa office in german... | lsnmoqdz jawresyp | GRP_42 | printer not working, pc in qa office in german... | English |
| 5448 | enterprise search connector for… is not work... | \r\n\r\nreceived from: ucphibmr.dfvkbtsj@gmail... | ucphibmr dfvkbtsj | GRP_11 | enterprise search connector for… is not work... | English |
| 5449 | company distributor_tool | \r\n\r\nreceived from: pnabslgh.vatpgsxn@gmail... | pnabslgh vatpgsxn | GRP_0 | company distributor_tool \r\n\r\nreceived from... | English |
| 5450 | an prüfen \ we_wu113 \ essa presse \ box blin... | an prüfen \ we_wu113 \ essa presse \ box blin... | wrcktgbd wzrgyunp | GRP_24 | an prüfen \ we_wu113 \ essa presse \ box blin... | German |
| 5451 | setup rechnerf für infostand instandsetzung \... | setup rechnerf für infostand instandsetzung \... | niptbwdq csenjruz | GRP_24 | setup rechnerf für infostand instandsetzung \... | German |
| 5452 | problem mit bildschirmschoner an den sinic-sta... | problem mit bildschirmschoner an den sinic-sta... | jionmpsf wnkpzcmv | GRP_24 | problem mit bildschirmschoner an den sinic-sta... | German |
| 5453 | externe festplatte zu verfügung stellen \alte... | externe festplatte zu verfügung stellen \alte... | edspmloy fxnkzaqu | GRP_24 | externe festplatte zu verfügung stellen \alte... | German |
| 5454 | probleme mit portal \ghaltiek lsuepvyx | probleme mit portal \ghaltiek lsuepvyx | ghaltiek lsuepvyx | GRP_24 | probleme mit portal \ghaltiek lsuepvyx problem... | Danish |
| 5455 | circuit outage:usa plant,na company-na-usa-usa... | what type of outage: ____network ___x__ci... | mnlazfsr mtqrkhnx | GRP_8 | circuit outage:usa plant,na company-na-usa-usa... | English |
| 5456 | interface: fastethernet0/27 vlan 51: lhqwx402... | interface: fastethernet0/27 · vlan 51: lhqwx4... | spxqmiry zpwgoqju | GRP_4 | interface: fastethernet0/27 vlan 51: lhqwx402... | English |
| 5457 | i get warehouse_toolmails meant for efbwiadp d... | please check why warehouse_toolmails for efbwi... | fdmaluyo tvecikxn | GRP_7 | i get warehouse_toolmails meant for efbwiadp d... | English |
| 5458 | password_management_tool password manager logi... | +76\nsummary:\ni tried use password_management... | gimkwnvs wpjmocut | GRP_0 | password_management_tool password manager logi... | English |
| 5459 | configure shared mailbox | need to add two mailboxes to outlook (still wo... | fmjeaoih ndyezlkb | GRP_0 | configure shared mailbox need to add two mailb... | English |
| 5460 | skype add in is not showing up in outlook. | skype add in is not showing up in outlook. \r\... | ipmlkwce plhtfsqo | GRP_0 | skype add in is not showing up in outlook. sky... | English |
| 5461 | mobile device activation ; company provided. | mobile device activation ; company provided. | btvmxdfc yfahetsc | GRP_0 | mobile device activation ; company provided. m... | English |
| 5462 | f drive on rqxsm004 is over 85% space consumed... | volume: f:\ label:dat2-rqxsm004 dc86ed35 on se... | spxqmiry zpwgoqju | GRP_12 | f drive on rqxsm004 is over 85% space consumed... | English |
| 5463 | ethernet | ethernet not working. only wi-fi. | xdtiwshm ijyrtulh | GRP_0 | ethernet ethernet not working. only wi-fi. | English |
| 5464 | ç”å¤: 35969737/2032252 | \r\n\r\nreceived from: wqzarvhx.hfsojckw@gmail... | wqzarvhx hfsojckw | GRP_13 | ç”å¤: 35969737/2032252 \r\n\r\nreceived from... | English |
| 5465 | outlook not responding | outlook not responding | xjazwpmd sjirdnam | GRP_0 | outlook not responding outlook not responding | English |
| 5466 | adoption score card is not visible in crm dyna... | 962\nsummary:adoption score card is not visibl... | ilypdtno mkdfetuq | GRP_22 | adoption score card is not visible in crm dyna... | English |
| 5467 | SID_1 is not working. | SID_1 is not working. \r\nerror : no connecti... | qavdrpfu ylfwnbkr | GRP_14 | SID_1 is not working. SID_1 is not working. \r... | English |
| 5468 | na remote is not working | [‎9/‎2/‎2016 12:06 pm] mhfjudahdyue rfgr... | jvhqyamt wodzrcjg | GRP_2 | na remote is not working [‎9/‎2/‎2016 12... | English |
| 5469 | sto 5019179518 is for 2 pcs of material 631688... | debbie smhdyhti gets an error message | rugphfdi trlshejc | GRP_29 | sto 5019179518 is for 2 pcs of material 631688... | English |
| 5470 | display an festtelefon der nummer 311 im cvd a... | display an festtelefon der nummer 311 im cvd a... | pjrcbhln qznblemc | GRP_42 | display an festtelefon der nummer 311 im cvd a... | German |
| 5471 | could find old email from year 2012 in microso... | \r\n\r\nreceived from: wsimcqzt.xvwzbdhq@gmail... | wsimcqzt xvwzbdhq | GRP_0 | could find old email from year 2012 in microso... | English |
| 5472 | mobile device activation successfully done. | mobile device activation successfully done. | gwptzvxm rhozsfty | GRP_0 | mobile device activation successfully done. mo... | English |
| 5473 | request for stop/ delete the dtp job in SID_37 | hi team basis,\r\n\r\nplease stop/ delete the ... | sholvcmf bjtpomrl | GRP_14 | request for stop/ delete the dtp job in SID_37... | English |
| 5474 | not able to connect to outlook - getting secu... | \r\nnot able to connect to out look- please se... | xyodfqhk wgymhail | GRP_34 | not able to connect to outlook - getting secu... | English |
| 5475 | sd_sales_order* jobs abended in job_scheduler ... | sd_sales_order* jobs abended in job_scheduler ... | mnlazfsr mtqrkhnx | GRP_5 | sd_sales_order* jobs abended in job_scheduler ... | English |
| 5476 | access to run-books (dot net and plm solutioni... | hi,\n\nkindly usa pagthyuathy afghtyjith , use... | ongumpdz pjkrfmbc | GRP_16 | access to run-books (dot net and plm solutioni... | English |
| 5477 | stock issue for mm 1113198 | hello christgrytoph\r\n\r\nthis kind situation... | tckyrinp vbzqslco | GRP_29 | stock issue for mm 1113198 hello christgrytoph... | English |
| 5478 | material issue | now, the quantity changed to 3pcs, seems not s... | wktesmbp lorjymef | GRP_29 | material issue now, the quantity changed to 3p... | English |
| 5479 | request in behalf of jvxtfhkg heptuizn | \r\n\r\nreceived from: ecwtrjnq.jpecxuty@gmail... | ecwtrjnq jpecxuty | GRP_0 | request in behalf of jvxtfhkg heptuizn \r\n\r\... | English |
| 5480 | pagthyuathy afghtyjith - access to dot kt fold... | hi,\r\n\r\nkindly usa access to pagthyuathy a... | ongumpdz pjkrfmbc | GRP_12 | pagthyuathy afghtyjith - access to dot kt fold... | English |
| 5481 | job SID_30hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_30hotf failed in job_scheduler at: 09/... | English |
| 5482 | reset passwords for qycgdfhz iqshzdru using pa... | the | qycgdfhz iqshzdru | GRP_17 | reset passwords for qycgdfhz iqshzdru using pa... | English |
| 5483 | access for tablearu-top customers | \r\n\r\nreceived from: ufesrwmz.egujslwx@gmail... | ufesrwmz egujslwx | GRP_9 | access for tablearu-top customers \r\n\r\nrece... | English |
| 5484 | configure e6430 unit for standard login for pr... | \r\n\r\nreceived from: kbclinop.vsczklfp@gmail... | kbclinop vsczklfp | GRP_19 | configure e6430 unit for standard login for pr... | English |
| 5485 | printer problem / issue information | please complete all required questions below. ... | mfixrouy dyifhcjt | GRP_0 | printer problem / issue information please co... | English |
| 5486 | account locked. | account locked. | viyglzfo ajtfzpkb | GRP_0 | account locked. account locked. | English |
| 5487 | job SID_38hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_38hotf failed in job_scheduler at: 09/... | English |
| 5488 | job SID_38hotf failed in job_scheduler at: 09/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_38hotf failed in job_scheduler at: 09/... | English |
| 5489 | ie æµè§ˆå™¨ä¸»é¡µè¢«æ›´æ”¹ä¸ºé…’店网站地å... | ie æµè§ˆå™¨ä¸»é¡µè¢«æ›´æ”¹ä¸ºé…’店网站地å... | kcldufqe xghvrzoi | GRP_31 | ie æµè§ˆå™¨ä¸»é¡µè¢«æ›´æ”¹ä¸ºé…’店网站地å... | English |
| 5490 | recall: ticket_no1547270 - i need to request ... | \r\n\r\nreceived from: riqmdnzs.mtlghwex@gmail... | riqmdnzs mtlghwex | GRP_2 | recall: ticket_no1547270 - i need to request ... | English |
| 5491 | 電腦出ç¾è—å±,無法開機 | 連vpn時,無法連上後,é‡è©¦å¾Œ,çªç„¶å‡ºç... | zhpwcdea cboefuis | GRP_31 | 電腦出ç¾è—å±,無法開機 連vpn時,ç„¡æ... | English |
| 5492 | spam | -----original message-----\r\nfrom: nwfodmhc e... | umzcxfah aoshpjiu | GRP_0 | spam -----original message-----\r\nfrom: nwfod... | English |
| 5493 | no access to impact award hub | the users do not have accees to impact award h... | dbwkxalj cnhgysju | GRP_0 | no access to impact award hub the users do not... | English |
| 5494 | job Job_2063d failed in job_scheduler at: 09/0... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063d failed in job_scheduler at: 09/0... | English |
| 5495 | llvw8411311 shop floor / print station | noise coming from cpu that sounds like a cooli... | jiclynfv gwvzxdcj | GRP_3 | llvw8411311 shop floor / print station nois... | English |
| 5496 | rebate agreements 92 will not create partial s... | rebate agreements 92 will not create a partial... | pfzxecbo ptygkvzl | GRP_13 | rebate agreements 92 will not create partial s... | English |
| 5497 | doing engineering_tool advance search material... | i picked titanium tial 6 4v but then p5 materi... | kgqpwvzu rkexzwlh | GRP_25 | doing engineering_tool advance search material... | English |
| 5498 | all my files in collaboration_platform have di... | ic\n welcome, our next available agent will be... | arjpdohf mrqwdtil | GRP_16 | all my files in collaboration_platform have di... | English |
| 5499 | re: sql quote - company internal project (agat... | \r\n\r\nreceived from: xzwlnbfo.plstfydx@gmail... | xzwlnbfo plstfydx | GRP_53 | re: sql quote - company internal project (agat... | English |
| 5500 | when trying to refresh a report, i am getting ... | when trying to refresh a report, i am getting ... | muywpnof prtikusy | GRP_0 | when trying to refresh a report, i am getting ... | English |
| 5501 | circuit outage: secondary node down on company... | what type of outage: _____network __x___c... | jyoqwxhz clhxsoqy | GRP_8 | circuit outage: secondary node down on company... | English |
| 5502 | mapping printers | mapping printers | ijplstng juybetlo | GRP_0 | mapping printers mapping printers | English |
| 5503 | dsw in22210104 | we are seeing your 10.16.4.16/isensor04.compan... | afkstcev utbnkyop | GRP_2 | dsw in22210104 we are seeing your 10.16.4.16/i... | English |
| 5504 | incident #in33541962 - phishing form submit -... | we are seeing your 18.79.63.203/company-intern... | afkstcev utbnkyop | GRP_2 | incident #in33541962 - phishing form submit -... | English |
| 5505 | skype on the m.curhetyu rack pc is not working... | skype on the m.curhetyu rack pc is not working... | xzupryaf vlbikhsm | GRP_3 | skype on the m.curhetyu rack pc is not working... | English |
| 5506 | dsw in22457494 | dsw in33568505\r\n\r\nwe are seeing your 172.2... | afkstcev utbnkyop | GRP_2 | dsw in22457494 dsw in33568505\r\n\r\nwe are se... | English |
| 5507 | possible vulnerability scan from host.my-tss.c... | dsw in33568733\r\n\r\nwe are seeing your 208.2... | afkstcev utbnkyop | GRP_2 | possible vulnerability scan from host.my-tss.c... | English |
| 5508 | nmpworvu upgtrvnj // monitor display issue | nmpworvu upgtrvnj // monitor display issue | rbozivdq gmlhrtvp | GRP_0 | nmpworvu upgtrvnj // monitor display issue nm... | English |
| 5509 | password chaning for window (company) | password chaning for window (company) | xtsuifdz wktgzcyl | GRP_0 | password chaning for window (company) password... | English |
| 5510 | connect to the network the pc's in the inspect... | can you look in to getting the 2 pc's on to th... | huqvpyli ucrtkvyl | GRP_3 | connect to the network the pc's in the inspect... | English |
| 5511 | ess password reset | ess password reset | umkrenhp beldshqc | GRP_0 | ess password reset ess password reset | English |
| 5512 | inquiry for hr_tool site single sign on | inquiry for hr_tool site single sign on | qctdugsi bfqlgvos | GRP_0 | inquiry for hr_tool site single sign on inquir... | English |
| 5513 | high priority-laptop monitor gone bad, unable ... | please give high priority since user is travel... | nmpworvu upgtrvnj | GRP_3 | high priority-laptop monitor gone bad, unable ... | English |
| 5514 | need keybankrd in system tray and need picture... | need keybankrd in system tray and need picture... | ravgfnqp gizaudke | GRP_62 | need keybankrd in system tray and need picture... | English |
| 5515 | company-eu-deu-germany-e-b2-f2-new-office-3550... | internal power supply - on company-eu-deu-... | jloygrwh acvztedi | GRP_4 | company-eu-deu-germany-e-b2-f2-new-office-3550... | English |
| 5516 | unable to log in to hub/ess portal | unable to log in to hub/ess portal | tfbvqliw xrqimykt | GRP_0 | unable to log in to hub/ess portal unable to l... | English |
| 5517 | engineering_tool issue | engineering_tool issue | cugjzqlf djwbyact | GRP_0 | engineering_tool issue engineering_tool issue | English |
| 5518 | erp account for haunm keeps locking up, can yo... | erp account for haunm keeps locking up, can yo... | lipcoebu eyadxbif | GRP_0 | erp account for haunm keeps locking up, can yo... | English |
| 5519 | engineering_tool issue and zdsxmcwu thdjzolwro... | engineering_tool issue and zdsxmcwu thdjzolwro... | fpbmtxei jtqbcnfs | GRP_0 | engineering_tool issue and zdsxmcwu thdjzolwro... | English |
| 5520 | request for company.com email address. | from: jertyur hanna \r\nsent: thursday, septem... | fljhvdsn kiyzclao | GRP_26 | request for company.com email address. from: ... | English |
| 5521 | blank call //gso | blank call //gso | rbozivdq gmlhrtvp | GRP_0 | blank call //gso blank call //gso | English |
| 5522 | reset my password to daypay3 - SID_51 | \r\n\r\nreceived from: bqjvxsaf.aupdonjy@gmail... | bqjvxsaf aupdonjy | GRP_0 | reset my password to daypay3 - SID_51 \r\n\r\n... | English |
| 5523 | hanna report access | \r\n\r\nreceived from: muywpnof.prtikusy@gmail... | muywpnof prtikusy | GRP_0 | hanna report access \r\n\r\nreceived from: muy... | English |
| 5524 | ie went to not legitmate website | 814-\nsummary:on internet. pop-up with report... | goaxzsql qpjnbgsa | GRP_0 | ie went to not legitmate website 814-\nsummar... | English |
| 5525 | die synchronisierung mit exchange activesync | die synchronisierung mit exchange activesync i... | gferjcsh apqwniyr | GRP_0 | die synchronisierung mit exchange activesync d... | German |
| 5526 | erp SID_34 password reset. | erp SID_34 password reset. | lwbchnga axpqctfr | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 5527 | skype audio does not work. | skype audio does not work. | wsimcqzt xvwzbdhq | GRP_0 | skype audio does not work. skype audio does no... | English |
| 5528 | inc1541133 - ticket update | inc1541133 - ticket update | olckhmvx pcqobjnd | GRP_0 | inc1541133 - ticket update inc1541133 - ticket... | English |
| 5529 | network outage: usa mi site is hard down at 9:... | what type of outage: __x___network _____c... | rkupnshb gsmzfojw | GRP_8 | network outage: usa mi site is hard down at 9:... | English |
| 5530 | when sending emails from w-corp-ebusiness.serv... | contact # : 803\nsummary: when sending emails ... | gtfdvnry nxsaqrfh | GRP_26 | when sending emails from w-corp-ebusiness.serv... | English |
| 5531 | av system usa | \r\n\r\nreceived from: gdkiehbr.kdithjsr@gmail... | gdkiehbr kdithjsr | GRP_3 | av system usa \r\n\r\nreceived from: gdkiehbr.... | English |
| 5532 | ie not working. | ie not working. | esfiuwcp pkaqnret | GRP_0 | ie not working. ie not working. | English |
| 5533 | hard disk failure on esxi host atjsv001 | hard disk failure on esxi host atjsv001 | zuxcfonv nyhpkrbe | GRP_12 | hard disk failure on esxi host atjsv001 hard d... | English |
| 5534 | unable to login to skype | unable to login to skype | esfiuwcp pkaqnret | GRP_0 | unable to login to skype unable to login to skype | English |
| 5535 | HostName_108(kirty - plm conversion - producti... | HostName_108(kirty - plm conversion - producti... | rkupnshb gsmzfojw | GRP_12 | HostName_108(kirty - plm conversion - producti... | English |
| 5536 | log on balancing error ; even after connecting... | log on balancing error ; even after connecting... | urkwvedc qcibogpt | GRP_0 | log on balancing error ; even after connecting... | English |
| 5537 | email will not open | \n\nreceived from: wxnetroc.yecbmliq@gmail.com... | wxnetroc yecbmliq | GRP_0 | email will not open \n\nreceived from: wxnetro... | English |
| 5538 | ms office upgrade ; from 2013 to 2016 | ms office upgrade ; from 2013 to 2016 | skmdgnuh utgclesd | GRP_0 | ms office upgrade ; from 2013 to 2016 ms offi... | English |
| 5539 | outlook issue slow | outlook running slow. | avglmrts vhqmtiua | GRP_0 | outlook issue slow outlook running slow. | English |
| 5540 | network outage: india site is down at 9:00 am... | what type of outage: _____network ___x__c... | rkupnshb gsmzfojw | GRP_8 | network outage: india site is down at 9:00 am... | English |
| 5541 | printer driver installation | name:rohntyub dfhtyuison\nlanguage:\nbrowser:m... | zstkagwu jlyrhdcf | GRP_0 | printer driver installation name:rohntyub dfht... | English |
| 5542 | po - a4 4505633620 | hello it,\r\n\r\nthere are 3 item linked with... | bejcxvis anxmhwis | GRP_29 | po - a4 4505633620 hello it,\r\n\r\nthere are... | English |
| 5543 | the zcor0003 report will not work. this is cr... | the transaction report zcor0003 when ran is pr... | viyglzfo ajtfzpkb | GRP_10 | the zcor0003 report will not work. this is cr... | English |
| 5544 | password reset does not work in iehs (ticket_... | from: aorthyme rnsuipbk \nsent: thursday, sept... | ndkrcxjb hpormqtx | GRP_0 | password reset does not work in iehs (ticket_... | English |
| 5545 | unable to connect to vpn | unable to connect to vpn | jchlkard tcaiyjfg | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 5546 | wifi not working | wifi not working | skmdgnuh utgclesd | GRP_0 | wifi not working wifi not working | English |
| 5547 | plm | \n\nreceived from: grkaqnzu.mldekqpi@gmail.com... | grkaqnzu mldekqpi | GRP_0 | plm \n\nreceived from: grkaqnzu.mldekqpi@gmail... | German |
| 5548 | please reactivate account for user : vvsimpj t... | please reactivate account for user : vvsimpj t... | aymgdoqt eoxphqas | GRP_2 | please reactivate account for user : vvsimpj t... | English |
| 5549 | erp SID_34 password reset | erp SID_34 password reset | gidpowxt mpdyvsrt | GRP_0 | erp SID_34 password reset erp SID_34 password... | English |
| 5550 | .7z file can't be opened. | .7z file can't be opened. | shkwgxln ikpvtjgn | GRP_0 | .7z file can't be opened. .7z file can't be op... | English |
| 5551 | erirtc wants to see an archived mail from a pa... | erirtc wants to see an archived mail from a pa... | wczrtsja crwioekx | GRP_0 | erirtc wants to see an archived mail from a pa... | English |
| 5552 | business_client is not working | i cannot start the business_client anymore, se... | juqpaxry ulqfbiog | GRP_0 | business_client is not working i cannot start ... | English |
| 5553 | one team update | one team update | csmhykge mpxbjudw | GRP_0 | one team update one team update | English |
| 5554 | hr_tool - user is not able to import employee ... | user: ehidbxam.rnupoxeq@gmail.com\r\nissue: us... | ehidbxam rnupoxeq | GRP_0 | hr_tool - user is not able to import employee ... | English |
| 5555 | erp SID_34 and SID_21 unlock and password reset. | erp SID_34 and SID_21 unlock and password reset. | bjtguqne xthqrzpc | GRP_0 | erp SID_34 and SID_21 unlock and password rese... | English |
| 5556 | licwu3 unlock | licwu3 unlock | aorthyme rnsuipbk | GRP_0 | licwu3 unlock licwu3 unlock | Danish |
| 5557 | dnc430 unlock | dnc430 unlock | relvzfnc nqksogtm | GRP_0 | dnc430 unlock dnc430 unlock | Danish |
| 5558 | user called to reset password, account is disa... | user called to reset password, account is disa... | efbwiadp dicafxhv | GRP_0 | user called to reset password, account is disa... | English |
| 5559 | erp password reset , erp SID_34 | erp password reset , erp SID_34 | myaornqv fkjmpxbh | GRP_0 | erp password reset , erp SID_34 erp password r... | English |
| 5560 | monitor resolution issue | \n\nreceived from: zjawqgcs.tohqcxla@gmail.com... | zjawqgcs tohqcxla | GRP_3 | monitor resolution issue \n\nreceived from: zj... | English |
| 5561 | email not working | \r\n\r\nreceived from: zjawqgcs.tohqcxla@gmail... | zjawqgcs tohqcxla | GRP_0 | email not working \r\n\r\nreceived from: zjawq... | English |
| 5562 | vip 2 - can not sign in | \n\nreceived from: oxrnpuys.oxizkwmq@gmail.com... | oxrnpuys oxizkwmq | GRP_19 | vip 2 - can not sign in \n\nreceived from: ox... | English |
| 5563 | please assist erp log on need to be reset. not... | \n\nreceived from: gvderpbx.udrzjxkm@gmail.com... | gvderpbx udrzjxkm | GRP_0 | please assist erp log on need to be reset. not... | English |
| 5564 | please assist, symantec questions and answers. | \n\nreceived from: gvderpbx.udrzjxkm@gmail.com... | gvderpbx udrzjxkm | GRP_0 | please assist, symantec questions and answers.... | English |
| 5565 | ad locked out | ad locked out : password reset through passwor... | lwyghvsc erftxsny | GRP_0 | ad locked out ad locked out : password reset t... | English |
| 5566 | quality certificate abode form over lapping | quality certificate abode form over lapping in... | sxkfbnaw ktbfuiah | GRP_45 | quality certificate abode form over lapping qu... | English |
| 5567 | circuit outage : apac,apac-dmvpn circuit is do... | what type of outage: _____network _x____c... | rkupnshb gsmzfojw | GRP_8 | circuit outage : apac,apac-dmvpn circuit is do... | English |
| 5568 | erp help | \r\n\r\nreceived from: vfyuldps.kjgcaphx@gmail... | vfyuldps kjgcaphx | GRP_29 | erp help \r\n\r\nreceived from: vfyuldps.kjgca... | English |
| 5569 | unable to login to engineering tool | hi,\n\ni changed the password through password... | rmdtqfxa fwpnqdxo | GRP_0 | unable to login to engineering tool hi,\n\ni c... | English |
| 5570 | probleme mit erpgui \ ewewx212495 \vzqomdgt jw... | probleme mit erpgui \ ewewx212495 \vzqomdgt jw... | vzqomdgt jwoqbuml | GRP_24 | probleme mit erpgui \ ewewx212495 \vzqomdgt jw... | Danish |
| 5571 | probleme mit erpgui \ ewewx212493 \vzqomdgt jw... | probleme mit erpgui \ ewewx212493 \vzqomdgt jw... | vzqomdgt jwoqbuml | GRP_24 | probleme mit erpgui \ ewewx212493 \vzqomdgt jw... | Danish |
| 5572 | laptop not chatryung from doc station | when connected the laptop to doc station its n... | gxibtzek fgkpqjsb | GRP_19 | laptop not chatryung from doc station when con... | English |
| 5573 | outlook is continuously asking for password. | outlook is continuously asking for password. | psrqxzmn qbefohdl | GRP_0 | outlook is continuously asking for password. o... | English |
| 5574 | printer configuration | printer configuration \n\n0774\nsummary:i need... | fmjwzstr yjotleqg | GRP_0 | printer configuration printer configuration \... | English |
| 5575 | konto neu erstellen : ewew8323504 und ewew7212495 | ewew8323504 optiplex 780 lager hr.darda\r\newe... | qgopxabz xnuieqjr | GRP_24 | konto neu erstellen : ewew8323504 und ewew7212... | German |
| 5576 | telefonanlage - nebenstelle 20 auf wild marfht... | telefonanlage - nebenstelle 20 auf wild marfht... | yvjdluhk hmcpvtdj | GRP_33 | telefonanlage - nebenstelle 20 auf wild marfht... | German |
| 5577 | password reset request | password reset request | yaskgmoc nzriogja | GRP_0 | password reset request password reset request | English |
| 5578 | erp gui has be installed | erp gui has be installed | shjbrutf iknuqswm | GRP_19 | erp gui has be installed erp gui has be installed | English |
| 5579 | software not working on laptop - engineering_t... | had a firewall warning and software stopped wo... | vebizknu qlknijvb | GRP_0 | software not working on laptop - engineering_t... | English |
| 5580 | outlook ä¸èƒ½å¯åŠ¨ã€‚ | outlook ä¸èƒ½å¯åŠ¨ã€‚ | ebkmczgy pbzfgcoa | GRP_31 | outlook ä¸èƒ½å¯åŠ¨ã€‚ outlook ä¸èƒ½å¯åŠ¨ã€‚ | English |
| 5581 | engineering_tool and engineering_tool not working | \n\nreceived from: cugjzqlf.djwbyact@gmail.com... | cugjzqlf djwbyact | GRP_0 | engineering_tool and engineering_tool not work... | English |
| 5582 | probleme mit etiketten drucken \laser 01 \we_w... | probleme mit etiketten drucken \laser 01 \we_w... | pfjwinbg ljtzbdqg | GRP_24 | probleme mit etiketten drucken \laser 01 \we_w... | German |
| 5583 | probleme mit etiketten drucken \laser 03 \we_w... | probleme mit etiketten drucken \laser 03 \we_w... | pfjwinbg ljtzbdqg | GRP_24 | probleme mit etiketten drucken \laser 03 \we_w... | German |
| 5584 | setup new ws \rechner instandsetzung \qnigujek... | setup new ws \rechner instandsetzung \qnigujek... | qnigujek kopqcjdh | GRP_24 | setup new ws \rechner instandsetzung \qnigujek... | German |
| 5585 | webshop access. | hello,\r\ni didn't see my customers at webshop... | jzfboqgc zhmqwxgd | GRP_0 | webshop access. hello,\r\ni didn't see my cust... | English |
| 5586 | erp error | hi team, i am experiencing some error in erp S... | gpabsizh txldupyk | GRP_0 | erp error hi team, i am experiencing some erro... | English |
| 5587 | job hr_toolmforrun failed in job_scheduler at:... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job hr_toolmforrun failed in job_scheduler at:... | English |
| 5588 | reset the password for arsbtkvd qieagkos on er... | please reset users password to daypay3 | arsbtkvd qieagkos | GRP_0 | reset the password for arsbtkvd qieagkos on er... | English |
| 5589 | install new optiplex 7020 as eagw8111311 - fy1... | install new optiplex 7020 as eagw8111311 - fy1... | jksgwdyi greuqxko | GRP_28 | install new optiplex 7020 as eagw8111311 - fy1... | English |
| 5590 | erp SID_34 account locked | erp SID_34 account locked | pzsvjman podylbmj | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 5591 | erp logon | \r\n\r\nreceived from: ubdihsop.ahyeqpmx@gmail... | ubdihsop ahyeqpmx | GRP_0 | erp logon \r\n\r\nreceived from: ubdihsop.ahye... | English |
| 5592 | job Job_2599 failed in job_scheduler at: 09/01... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2599 failed in job_scheduler at: 09/01... | English |
| 5593 | list of it team functions with names | \n\nreceived from: kflqpite.gbeoqsnc@gmail.com... | kflqpite gbeoqsnc | GRP_0 | list of it team functions with names \n\nrecei... | English |
| 5594 | engineering_drawing_tool issue | \r\n\r\nreceived from: dwsyaqpr.bzasnmvw@gmail... | pchjidaq pvtxjaml | GRP_19 | engineering_drawing_tool issue \r\n\r\nreceive... | English |
| 5595 | edi process for miro entries-urgent | \r\n\r\nreceived from: neokfwiy.ufriscym@gmail... | neokfwiy ufriscym | GRP_10 | edi process for miro entries-urgent \r\n\r\nre... | English |
| 5596 | unable to take print out from engineering_draw... | unable to take print out from engineering_draw... | pofkwlui joteryma | GRP_19 | unable to take print out from engineering_draw... | English |
| 5597 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 5598 | job Job_2551 failed in job_scheduler at: 08/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2551 failed in job_scheduler at: 08/31... | English |
| 5599 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 5600 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 5601 | mii uacyltoe hxgaycze from lacw8515941 : step ... | mii uacyltoe hxgaycze from lacw8515941 : step ... | jyoqwxhz clhxsoqy | GRP_14 | mii uacyltoe hxgaycze from lacw8515941 : step ... | English |
| 5602 | mii is not working. error user authentication ... | mii is not working. error user authentication ... | byfskuni mhvnqodk | GRP_14 | mii is not working. error user authentication ... | English |
| 5603 | cannot view the drawing in mii | cannot view the drawings attached to material ... | dctvfjrn oypnxftq | GRP_41 | cannot view the drawing in mii cannot view the... | English |
| 5604 | shop floor server issues | \r\n\r\nreceived from: vciknubg.wdlkabms@gmail... | vciknubg wdlkabms | GRP_14 | shop floor server issues \r\n\r\nreceived fro... | English |
| 5605 | job Job_3028 failed in job_scheduler at: 08/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_45 | job Job_3028 failed in job_scheduler at: 08/31... | English |
| 5606 | when employees try to log into mii, get the fo... | not able to scan orders in the usa plant | xdswhrif ludsxncq | GRP_14 | when employees try to log into mii, get the fo... | English |
| 5607 | password locked | \n\nreceived from: cuytdmhv.yeqdmwvt@gmail.com... | cuytdmhv yeqdmwvt | GRP_0 | password locked \n\nreceived from: cuytdmhv.ye... | English |
| 5608 | configair server responds with " 500 interna... | configair server responds with " 500 interna... | rednkluh lrpyvcxs | GRP_14 | configair server responds with " 500 interna... | English |
| 5609 | HostName_1045:windows disk space utilization a... | HostName_1045:(reporting_engineering_tooling -... | jyoqwxhz clhxsoqy | GRP_12 | HostName_1045:windows disk space utilization a... | English |
| 5610 | analysis for microsoft excel access (erp busin... | \n\nreceived from: zolnubvq.ehrqifxp@gmail.com... | zolnubvq ehrqifxp | GRP_0 | analysis for microsoft excel access (erp busin... | English |
| 5611 | job Job_2881 failed in job_scheduler at: 08/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_13 | job Job_2881 failed in job_scheduler at: 08/31... | English |
| 5612 | ess site sales and markhtyeting tab missing. | ess site sales and markhtyeting tab missing. | hpakdzyj lkrtvosz | GRP_0 | ess site sales and markhtyeting tab missing. e... | English |
| 5613 | interface: fastethernet0/27 vlan 51: lhqwx4021... | interface: fastethernet0/27 · vlan 51: lhqwx4... | jyoqwxhz clhxsoqy | GRP_8 | interface: fastethernet0/27 vlan 51: lhqwx4021... | English |
| 5614 | wifi not working, stuck on yet no networks sho... | name:todghtyud usa\nlanguage:\nbrowser:microso... | lrbjqcmh jbiwtzqr | GRP_0 | wifi not working, stuck on yet no networks sho... | English |
| 5615 | reg: warehouse_tool communication tickets | \n\nreceived from: jvhqyamt.wodzrcjg@gmail.com... | jvhqyamt wodzrcjg | GRP_0 | reg: warehouse_tool communication tickets \n\... | English |
| 5616 | unable to open outlook | unable to open outlook | vitpjxgm zxiqkrns | GRP_0 | unable to open outlook unable to open outlook | English |
| 5617 | in the work center to do list production order... | in the work center to do list production order... | yrogbkts lmurgdcf | GRP_41 | in the work center to do list production order... | English |
| 5618 | need added to printer address book \\HostName_... | ic\n welcome, our next available agent will be... | fbhyeksq caexmols | GRP_3 | need added to printer address book \\HostName_... | English |
| 5619 | phone numbers for usa canada customer service ... | the global_telecom_1 numbers that are not work... | xweclugf qmhbjsyi | GRP_37 | phone numbers for usa canada customer service ... | English |
| 5620 | need to configure printers | need to configure printers | flyqjavm knlzewqs | GRP_0 | need to configure printers need to configure p... | English |
| 5621 | ticket update on inplant_856223 | ticket update on inplant_856223 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_856223 ticket update ... | English |
| 5622 | time format needs to be changed to 24 hours. | time format needs to be changed to 24 hours.\n... | nrbgctwm kfwdhrmt | GRP_0 | time format needs to be changed to 24 hours. t... | English |
| 5623 | activity 4 and 5 efficiency too high reported ... | note from omufjcxr ahypftjx - \r\n\r\n"do you ... | entuakhp xrnhtdmk | GRP_9 | activity 4 and 5 efficiency too high reported ... | English |
| 5624 | windows password reset for jogt harrhntyl | windows password reset for jogt harrhntyl | olckhmvx pcqobjnd | GRP_0 | windows password reset for jogt harrhntyl wind... | English |
| 5625 | job Job_3194 failed in job_scheduler at: 08/31... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 08/31... | English |
| 5626 | vip 1 fax machine with phone number 724- is no... | fax machine with phone number 724- is not work... | jetgpdqn rpfqxzvb | GRP_37 | vip 1 fax machine with phone number 724- is no... | English |
| 5627 | i need access to the deleted folder on collabo... | i can't find a mti certificate tracking form o... | hdfcwmag plxstkad | GRP_16 | i need access to the deleted folder on collabo... | English |
| 5628 | reset the password for cyvdluja oxrkfpbz on ot... | please reset password to telephony_software. | cyvdluja oxrkfpbz | GRP_7 | reset the password for cyvdluja oxrkfpbz on ot... | English |
| 5629 | collaboration_platform site not launching. | \r\n\r\nreceived from: xlvuhjea.mjugvtnd@gmail... | xlvuhjea mjugvtnd | GRP_0 | collaboration_platform site not launching. \r\... | English |
| 5630 | unable to connect to knowledge center in comms... | unable to connect to knowledge center in comms... | mnsejpby xsrdtvkw | GRP_16 | unable to connect to knowledge center in comms... | English |
| 5631 | iscl collaboration_platform sites seem to be down | i have tried accessing several bookmarkhtys i ... | ferxqvsm esmwxqlf | GRP_16 | iscl collaboration_platform sites seem to be d... | English |
| 5632 | unable to upload file on collaboration_platform | unable to upload file on collaboration_platform | pyrtfdxu nxfkqmoy | GRP_0 | unable to upload file on collaboration_platfor... | English |
| 5633 | domain account locked out | domain account locked out | jusenflm sufbehom | GRP_0 | domain account locked out domain account locke... | English |
| 5634 | issues to log into ethics course | \r\n\r\nreceived from: fmzdkyqv.dbrslnhe@gmail... | fmzdkyqv dbrslnhe | GRP_23 | issues to log into ethics course \r\n\r\nrecei... | English |
| 5635 | operator forgot login password. qgwypesz fzsdn... | ic\r\n welcome, our next available agent will ... | xkisaybg fykpoxhu | GRP_0 | operator forgot login password. qgwypesz fzsdn... | English |
| 5636 | ticket update on ticket_no0431842 | ticket update on ticket_no0431842 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0431842 ticket updat... | English |
| 5637 | call from vitalyst : ms crm dynamics issue | call from vitalyst : ms crm dynamics issue \nc... | mwjcsiug fbwthoca | GRP_40 | call from vitalyst : ms crm dynamics issue ca... | English |
| 5638 | trying to sign on to purchasing system, but th... | trying to sign on to purchasing system, but th... | ljztkmds ltjkirwy | GRP_0 | trying to sign on to purchasing system, but th... | English |
| 5639 | soflex - dnc is not working. | soflex - dnc is not working. unable to conne... | xmysiufa emfdltqz | GRP_12 | soflex - dnc is not working. soflex - dnc i... | English |
| 5640 | bad monitor - lbdw7402361 | bad monitor - lbdw8513472 - near rob ripple | juaxnvwz reampilj | GRP_3 | bad monitor - lbdw7402361 bad monitor - lbdw85... | English |
| 5641 | bad monitor lbdw7402359 | bad monitor lbdw8513460 - near braze line | juaxnvwz reampilj | GRP_3 | bad monitor lbdw7402359 bad monitor lbdw851346... | English |
| 5642 | job Job_1918c failed in job_scheduler at: 08/3... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1918c failed in job_scheduler at: 08/3... | English |
| 5643 | supply_chain_software signin | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | supply_chain_software signin \n\nreceived fro... | English |
| 5644 | bad monitor lbdw7402365 | bad monitor lbdw7402365 | juaxnvwz reampilj | GRP_3 | bad monitor lbdw7402365 bad monitor lbdw7402365 | English |
| 5645 | unable to connect to printer | i am unable to connect to my printer and print... | flyqjavm knlzewqs | GRP_0 | unable to connect to printer i am unable to co... | English |
| 5646 | unable to connect to vpn | unable to connect to vpn | kzejoucl imfbsokl | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 5647 | access to bw production SID_37 in erp | i can log into bex via the web but it is askin... | chkmejsn lvidgknc | GRP_0 | access to bw production SID_37 in erp i can lo... | English |
| 5648 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | fmvdulec jvcfdxem | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 5649 | HostName_106:volume consumed on : c:\ is more ... | HostName_106:volume consumed on : c:\ is more ... | oldrctiu bxurpsyi | GRP_12 | HostName_106:volume consumed on : c:\ is more ... | English |
| 5650 | consultant needs collaboration_platform access | consultant, ycimqxdn wtubpdsz, requires collab... | wqxzleky uwjchqor | GRP_0 | consultant needs collaboration_platform access... | English |
| 5651 | the hr_tool portal for finance returns an erro... | the hr_tool portal for finance returns an erro... | oebrjdqc nhuqmskw | GRP_0 | the hr_tool portal for finance returns an erro... | English |
| 5652 | byclpwmv esafrtbh is unable to login to ticket... | byclpwmv esafrtbh is unable to login to ticket... | olckhmvx pcqobjnd | GRP_0 | byclpwmv esafrtbh is unable to login to ticket... | English |
| 5653 | problem with badge printer. | problem with badge printer. | epjwqaru mikoszpv | GRP_3 | problem with badge printer. problem with badge... | English |
| 5654 | logging into mii supervisor dashbankrd results... | logging into mii supervisor dashbankrd results... | fmvdulec jvcfdxem | GRP_41 | logging into mii supervisor dashbankrd results... | English |
| 5655 | rechner ewew8323546; ewew8323545 neu erzeugen | rechner ewew8323546; ewew8323545 neu erzeugen | sgnubadl gpkovbah | GRP_24 | rechner ewew8323546; ewew8323545 neu erzeugen... | German |
| 5656 | vip 2 : printer not working | vip 2 : printer not working \r\n\r\ndriver upd... | jwhmqnye xlpvdwre | GRP_0 | vip 2 : printer not working vip 2 : printer n... | English |
| 5657 | issues with mic and screen shatryung on skype | issues with mic and screen shatryung on skype | owlgqjme qhcozdfx | GRP_0 | issues with mic and screen shatryung on skype ... | English |
| 5658 | when connected to telekom (mobile broadband), ... | when connected to telekom (mobile broadband), ... | rftnxoau cwolhfyv | GRP_0 | when connected to telekom (mobile broadband), ... | English |
| 5659 | please forward emails to new address. | user mexkspfc nocpyxaz\nher old email address ... | vrbdqjwk uwxmbztl | GRP_2 | please forward emails to new address. user mex... | English |
| 5660 | ebhsm004 :volume consumed on c:\ is more than ... | ebhsm004 :volume consumed on c:\ is more than ... | oldrctiu bxurpsyi | GRP_12 | ebhsm004 :volume consumed on c:\ is more than ... | English |
| 5661 | analysis for office is not working | analysis for office is not working | oncidblt ucewizyd | GRP_19 | analysis for office is not working analysis f... | English |
| 5662 | skype issue | \r\n\r\nreceived from: zfburidj.jmilguev@gmail... | zfburidj jmilguev | GRP_0 | skype issue \r\n\r\nreceived from: zfburidj.jm... | English |
| 5663 | not able to call telephony_software number of ... | when try to call telephony_software number of ... | xawlkiey demjqrfl | GRP_7 | not able to call telephony_software number of ... | English |
| 5664 | ughzilfm cfibdamq called to check if the acco... | ughzilfm cfibdamq called to check if the acco... | olckhmvx pcqobjnd | GRP_0 | ughzilfm cfibdamq called to check if the acco... | English |
| 5665 | outlook not working: freezing | outlook not working: freezing | lewbzysd gqdaikbv | GRP_0 | outlook not working: freezing outlook not wor... | English |
| 5666 | erp running slow | \r\n\r\nreceived from: rtpmlwnk.unpambrv@gmail... | rtpmlwnk unpambrv | GRP_0 | erp running slow \r\n\r\nreceived from: rtpmlw... | English |
| 5667 | unable to print labels. | no connection between the workstation and the ... | sgnubadl gpkovbah | GRP_24 | unable to print labels. no connection between ... | English |
| 5668 | the e-time system is not working. the plant c... | please review the attached document, in order ... | yswgzvrc frjzcnsu | GRP_0 | the e-time system is not working. the plant c... | English |
| 5669 | share collaboration_platform site | \n[‎8/‎31/‎2016 1:03 pm] \n\n\n\nhi \n\n... | qcehailo wqynckxg | GRP_16 | share collaboration_platform site \n[‎8/‎... | English |
| 5670 | mm 7154294 - transfer pricing | mm 7154294 has an average customer net price (... | wgothrzl iokdftgn | GRP_13 | mm 7154294 - transfer pricing mm 7154294 has a... | English |
| 5671 | cisco access point is not working. | cisco access point is not working.\r\nmac addr... | sbtvploj mwtrouyl | GRP_4 | cisco access point is not working. cisco acces... | English |
| 5672 | change o365 license fron s1 to k1 | could you please changes the o365 license of t... | gvtbduyf gdblxiva | GRP_34 | change o365 license fron s1 to k1 could you pl... | English |
| 5673 | error message for hana and not able to open fi... | phone 812. when open up erp analysis for micr... | gdpxqyhj iapghvke | GRP_0 | error message for hana and not able to open fi... | English |
| 5674 | issues with company ebusiness mailbox | issues with company ebusiness mailbox | gtfdvnry nxsaqrfh | GRP_0 | issues with company ebusiness mailbox issues w... | English |
| 5675 | hr_tool access | \r\n\r\nreceived from: umzcxfah.aoshpjiu@gmail... | umzcxfah aoshpjiu | GRP_0 | hr_tool access \r\n\r\nreceived from: umzcxfah... | English |
| 5676 | skype : personal certificate issue | skype : personal certificate issue | ahbwvjct sfonkwra | GRP_0 | skype : personal certificate issue skype : pe... | English |
| 5677 | change date settings-citrix-multiple users | \n\nreceived from: iltcxkvw.dkwmxcgn@gmail.com... | sgaczfvo wxmkrzfu | GRP_12 | change date settings-citrix-multiple users \n\... | English |
| 5678 | no audio during meetings | no audio during meetings, also, mic doesn't work | huqvpyli ucrtkvyl | GRP_3 | no audio during meetings no audio during meeti... | English |
| 5679 | missing folder in outlook | missing folder in outlook | wbtrvdsi gdbuvszx | GRP_0 | missing folder in outlook missing folder in ou... | English |
| 5680 | unable to get the skype add-in | unable to get the skype add-in | sidyuncg ptvogsxa | GRP_0 | unable to get the skype add-in unable to get ... | English |
| 5681 | company logo is still on the printed erp qualt... | hello, \r\n\r\nplease see attached document an... | adxuzbcv uojxrivy | GRP_45 | company logo is still on the printed erp qualt... | English |
| 5682 | ticket update on inc1546812 from dslamtcb ezbm... | ticket update on inc1546812 from dslamtcb ezbm... | efbwiadp dicafxhv | GRP_0 | ticket update on inc1546812 from dslamtcb ezbm... | English |
| 5683 | circuit outage:germany-1- (company):20 mbps li... | what type of outage: _____network __x___c... | oldrctiu bxurpsyi | GRP_4 | circuit outage:germany-1- (company):20 mbps li... | English |
| 5684 | printer co16 is not printing. | printer co16 is not printing.\nserver : \\Host... | wgmtckef atgmfybs | GRP_0 | printer co16 is not printing. printer co16 is ... | English |
| 5685 | unable to launch outlook | unable to launch outlook | vxzahrlc frtkpehy | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 5686 | query from qdapolnv jlcavxgi | query from qdapolnv jlcavxgi | efbwiadp dicafxhv | GRP_0 | query from qdapolnv jlcavxgi query from qdapol... | English |
| 5687 | lentidão da máquina | favor verificar a lentidão da minha máquina,... | frjpkuwq rtznexbq | GRP_62 | lentidão da máquina favor verificar a lentid... | Portuguese |
| 5688 | basis on-call / shift details... | \r\n\r\nreceived from: mnxbeuso.rfmdlwuo@gmail... | mnxbeuso rfmdlwuo | GRP_0 | basis on-call / shift details... \r\n\r\nrecei... | English |
| 5689 | please provide full access to \\HostName_768\r... | please provide full access to \\HostName_768\r... | ntsowaem jfgslyde | GRP_0 | please provide full access to \\HostName_768\r... | English |
| 5690 | unable to connect to vpn | unable to connect to vpn | srmuqpna wtlvbxmc | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 5691 | password locked | \n\nreceived from: ebkfwhgt.flapokym@gmail.com... | ebkfwhgt flapokym | GRP_0 | password locked \n\nreceived from: ebkfwhgt.fl... | English |
| 5692 | browser issue | i cannot access company collaboration_platform... | nibaotpy vmxathog | GRP_0 | browser issue i cannot access company collabo... | English |
| 5693 | can not start netweaver | \r\n\r\nreceived from: wsimcqzt.xvwzbdhq@gmail... | wsimcqzt xvwzbdhq | GRP_0 | can not start netweaver \r\n\r\nreceived from:... | English |
| 5694 | mobile device activation | mobile device activation | uvwphrbl hfqdumtv | GRP_0 | mobile device activation mobile device activa... | English |
| 5695 | istallation of programdntymes into the new cpu | \r\n\r\nreceived from: yxliakph.soucfnqe@gmail... | yxliakph soucfnqe | GRP_19 | istallation of programdntymes into the new cpu... | English |
| 5696 | xjmpacye qgxrptnf cannot send delivery notes v... | dear it team, \r\nmy colleague cannot send her... | xjmpacye qgxrptnf | GRP_13 | xjmpacye qgxrptnf cannot send delivery notes v... | English |
| 5697 | printer problem / issue information | please complete all required questions below. ... | gljrdmnu yfnbkcmp | GRP_0 | printer problem / issue information please com... | English |
| 5698 | multiple shop floor employees getting locked o... | please help unlock the accounts of the followi... | epivntxc fdrxmuga | GRP_0 | multiple shop floor employees getting locked o... | English |
| 5699 | need access to my drive (please check her acco... | \r\n\r\nreceived from: ybhazlqp.zfghsxiw@gmail... | ybhazlqp zfghsxiw | GRP_2 | need access to my drive (please check her acco... | German |
| 5700 | additional corrections of sales org 1278 and ... | 1. sales organisation address 1278 – phone n... | mynfoicj riuvxdas | GRP_13 | additional corrections of sales org 1278 and ... | English |
| 5701 | setup outlook \ wareneingang \vzqomdgt jwoqbuml | setup outlook \ wareneingang \vzqomdgt jwoqbuml | vzqomdgt jwoqbuml | GRP_24 | setup outlook \ wareneingang \vzqomdgt jwoqbu... | English |
| 5702 | outlook not accepting password : outlook 2010 | outlook not accepting password : outlook 2010 | szhljtcx rtmxlegk | GRP_0 | outlook not accepting password : outlook 2010 ... | English |
| 5703 | .rar file query | .rar file query | ilypdtno mkdfetuq | GRP_0 | .rar file query .rar file query | English |
| 5704 | ad password reset | ad password reset | kyzhcsrq fwyltvpd | GRP_0 | ad password reset ad password reset | English |
| 5705 | erp problem! - SID_34 - unable to delete custo... | user "ripfghscp" has accidently added one cust... | gkxsnaty ibeawmjt | GRP_0 | erp problem! - SID_34 - unable to delete custo... | English |
| 5706 | network outage:barcelona - tesscenter 1:site i... | what type of outage: __x___network _____c... | oldrctiu bxurpsyi | GRP_8 | network outage:barcelona - tesscenter 1:site i... | English |
| 5707 | edit user is not working | edit user hangs forever in the user admin mana... | hbmwlprq ilfvyodx | GRP_21 | edit user is not working edit user hangs fore... | English |
| 5708 | reset passwords for bxeagsmt zrwdgsco using pa... | the | bxeagsmt zrwdgsco | GRP_17 | reset passwords for bxeagsmt zrwdgsco using pa... | English |
| 5709 | access required | \r\n\r\nreceived from: hjkyqecw.ixdsbwoz@gmail... | hjkyqecw ixdsbwoz | GRP_12 | access required \r\n\r\nreceived from: hjkyqec... | English |
| 5710 | my sysetem remote access | \r\n\r\nreceived from: utgszjrf.pacfvxzk@gmail... | utgszjrf pacfvxzk | GRP_0 | my sysetem remote access \r\n\r\nreceived from... | English |
| 5711 | request for solid works viewer in wrench_engin... | \r\n\r\nreceived from: xnzfsmue.kwsazpeu@gmail... | xnzfsmue kwsazpeu | GRP_19 | request for solid works viewer in wrench_engin... | English |
| 5712 | call from third party to talk to it head to pr... | call from third party to talk to it head to pr... | efbwiadp dicafxhv | GRP_0 | call from third party to talk to it head to pr... | English |
| 5713 | windows user id | \n\nreceived from: ilbkhgxd.hirsqytd@gmail.com... | ilbkhgxd hirsqytd | GRP_0 | windows user id \n\nreceived from: ilbkhgxd.hi... | English |
| 5714 | wifi is not working | wifi is not working | navfgybz fuavxjzk | GRP_0 | wifi is not working wifi is not working | English |
| 5715 | windows account locked | windows account locked | upiyobvj lwohuizr | GRP_0 | windows account locked windows account locked | English |
| 5716 | can not access to skpye for business | contact phone:497 or 18621, can not access to ... | hygiajzb ajvmhbsr | GRP_19 | can not access to skpye for business contact p... | English |
| 5717 | reaktivieren alte laptop hr. mghllenbecfnfk \b... | reaktivieren alte laptop hr. mghllenbecfnfk \b... | bctypmjw cbhnxafz | GRP_24 | reaktivieren alte laptop hr. mghllenbecfnfk \b... | German |
| 5718 | job Job_728 failed in job_scheduler at: 08/31/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_728 failed in job_scheduler at: 08/31/... | English |
| 5719 | issue with hr_tool | \r\n\r\nreceived from: ntuhoafg.bzwefjvk@gmail... | ntuhoafg bzwefjvk | GRP_53 | issue with hr_tool \r\n\r\nreceived from: ntuh... | English |
| 5720 | reinstall office2010 \ bctypmjw cbhnxafz | reinstall office2010 \ bctypmjw cbhnxafz | bctypmjw cbhnxafz | GRP_24 | reinstall office2010 \ bctypmjw cbhnxafz reins... | English |
| 5721 | probleme mit EU_tool \we_wu106 \xaqzisrk ahbgjrqz | probleme mit EU_tool \we_wu106 \xaqzisrk ahbgjrqz | xaqzisrk ahbgjrqz | GRP_24 | probleme mit EU_tool \we_wu106 \xaqzisrk ahbgj... | English |
| 5722 | please switch of tr telephony_software today f... | this is last call meeting that was set up by f... | djpwfxzt cfkwxlmq | GRP_7 | please switch of tr telephony_software today f... | English |
| 5723 | last login on company laptop | \r\n\r\nreceived from: htnvbwxs.gwfrzuex@gmail... | htnvbwxs gwfrzuex | GRP_65 | last login on company laptop \r\n\r\nreceived ... | English |
| 5724 | engineering tool not opening | \r\n\r\nreceived from: vsiemxgh.lgeciroy@gmail... | vsiemxgh lgeciroy | GRP_0 | engineering tool not opening \r\n\r\nreceived ... | English |
| 5725 | missrouting of printouts: check settings if p... | \r\n\r\nreceived from: tkuivxrn.urdgitsv@gmail... | qgopxabz xnuieqjr | GRP_13 | missrouting of printouts: check settings if p... | English |
| 5726 | please change password and pin for the EU_tool | please change password and pin for the EU_tool | lgtdheno wfukbdjy | GRP_59 | please change password and pin for the EU_tool... | English |
| 5727 | stock issue for mm 1021381 | \r\n\r\nreceived from: rgtoger.lfgtiu@company.... | bejcxvis anxmhwis | GRP_29 | stock issue for mm 1021381 \r\n\r\nreceived fr... | English |
| 5728 | vpn link | \r\n\r\nreceived from: neoarmgd.meodvbxu@gmail... | neoarmgd meodvbxu | GRP_0 | vpn link \r\n\r\nreceived from: neoarmgd.meod... | English |
| 5729 | ooo : !3.09.2016issues with mailbox " company" | \n\nreceived from: fbyusmxz.kxvmcbly@gmail.com... | fbyusmxz kxvmcbly | GRP_0 | ooo : !3.09.2016issues with mailbox " company"... | English |
| 5730 | vfx3 - 1417 - foreign trade data missing | dear it team,\r\n\r\ni checked this morning vf... | fmqubnvs kcxpeyiv | GRP_13 | vfx3 - 1417 - foreign trade data missing dear ... | English |
| 5731 | 电脑è¿è¡Œé€Ÿåº¦è¶…级慢,打开一个erpæ... | \n\nreceived from: tuqrvowp.fxmzkvqo@gmail.com... | tuqrvowp fxmzkvqo | GRP_30 | 电脑è¿è¡Œé€Ÿåº¦è¶…级慢,打开一个erpæ... | English |
| 5732 | wifi disconnecting | \r\n\r\nreceived from: puxiomgy.ndjorwab@gmail... | puxiomgy ndjorwab | GRP_19 | wifi disconnecting \r\n\r\nreceived from: puxi... | English |
| 5733 | circuit outage:usa nc vpn circuit is down at 1... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_8 | circuit outage:usa nc vpn circuit is down at 1... | English |
| 5734 | mii password reset & unlock account | mii password reset & unlock account | vlnjxdyk usgyfoit | GRP_0 | mii password reset & unlock account mii passwo... | English |
| 5735 | unable to login to erp | unable to login to erp | giumxwvh lfvwjtin | GRP_0 | unable to login to erp unable to login to erp | English |
| 5736 | please process the billing accounting (0372101... | please process the billing accounting (0372101... | hlrmufzx qcdzierm | GRP_10 | please process the billing accounting (0372101... | English |
| 5737 | data card | \r\n\r\nreceived from: dwujlnhs.ecxvrpyl@gmail... | dwujlnhs ecxvrpyl | GRP_19 | data card \r\n\r\nreceived from: dwujlnhs.ecxv... | English |
| 5738 | engineering tool issue | \r\n\r\nreceived from: dwujlnhs.ecxvrpyl@gmail... | dwujlnhs ecxvrpyl | GRP_19 | engineering tool issue \r\n\r\nreceived from: ... | English |
| 5739 | assignment field for edi posting | \r\n\r\nreceived from: ihfkwzjd.erbxoyqk@gmail... | ihfkwzjd erbxoyqk | GRP_10 | assignment field for edi posting \r\n\r\nrecei... | English |
| 5740 | kindly replace the mouse as it is not working | kindly replace the mouse as it is not working | xagyhbio jvrdnpkh | GRP_19 | kindly replace the mouse as it is not working ... | English |
| 5741 | windows account locked | windows account locked | giumxwvh lfvwjtin | GRP_0 | windows account locked windows account locked | English |
| 5742 | engineering_toolä¸Šä¼ ä¸äº† | æŠ¥è¦æ˜¾ç¤ºæ²¡æœ‰å»ºç«‹ç½‘络连接,但是v... | molihtdq auprogsj | GRP_31 | engineering_toolä¸Šä¼ ä¸äº† æŠ¥è¦æ˜¾ç¤ºæ²¡æœ... | English |
| 5743 | erp SID_34 account locked | erp SID_34 account locked | omgqwuae utbrfyzq | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 5744 | SID_1 erp uacyltoe hxgaycze - login issue & pa... | \r\n\r\nreceived from: ilbkhgxd.hirsqytd@gmail... | ilbkhgxd hirsqytd | GRP_0 | SID_1 erp uacyltoe hxgaycze - login issue & pa... | English |
| 5745 | windows password reset | windows password reset | yrzvhbic rechmoiy | GRP_0 | windows password reset windows password reset | English |
| 5746 | erp SID_34 account locked | erp SID_34 account locked | wmsaxylo tyqgpkxz | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 5747 | abend batch job Job_3028 failed in job_schedu... | job name:Job_3028 failed in job_scheduler | rkupnshb gsmzfojw | GRP_45 | abend batch job Job_3028 failed in job_schedu... | English |
| 5748 | mii password reset & unlock account | mii password reset & unlock account | qgwypesz fzsdnmrk | GRP_0 | mii password reset & unlock account mii pass... | English |
| 5749 | job Job_549 failed in job_scheduler at: 08/30/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_549 failed in job_scheduler at: 08/30/... | English |
| 5750 | job SID_50filesys failed in job_scheduler at: ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_50filesys failed in job_scheduler at: ... | English |
| 5751 | when i create a recurring appointment in mds i... | when i create a recurring appointment in mds i... | acteiqdu bferalus | GRP_40 | when i create a recurring appointment in mds i... | English |
| 5752 | i paid to vendor (2111101830) in aug.29.2016, ... | i paid to vendor (2111101830) in aug.29.2016, ... | hlrmufzx qcdzierm | GRP_10 | i paid to vendor (2111101830) in aug.29.2016, ... | English |
| 5753 | my outlook and skype does not work when i am a... | name:callie pollaurid\nlanguage:\nbrowser:micr... | xzupryaf vlbikhsm | GRP_0 | my outlook and skype does not work when i am a... | English |
| 5754 | skype ä¸èƒ½ç™»å½•,æç¤ºè¯ä¹¦é”™è¯¯ã€‚ | skype ä¸èƒ½ç™»å½•,æç¤ºè¯ä¹¦é”™è¯¯ã€‚ | qekyowtv qdjixvkh | GRP_31 | skype ä¸èƒ½ç™»å½•,æç¤ºè¯ä¹¦é”™è¯¯ã€‚ sky... | Latin |
| 5755 | system not responding | system not responding | qftpazns fxpnytmk | GRP_0 | system not responding system not responding | English |
| 5756 | it assistance | \r\n\r\nreceived from: oydlehun.svnfrxdk@gmail... | oydlehun svnfrxdk | GRP_19 | it assistance \r\n\r\nreceived from: oydlehun.... | English |
| 5757 | multiple display not working | multiple display not working | ijmabvlz vosuedkm | GRP_0 | multiple display not working multiple display ... | English |
| 5758 | erp account unlock | erp account unlock | ncuwyeib plnzhxvc | GRP_0 | erp account unlock erp account unlock | English |
| 5759 | tablet not booting | tablet not booting | mfkibqgu rdvfzeba | GRP_0 | tablet not booting tablet not booting | English |
| 5760 | log in permissions not working. need to chang... | name:etlfrucw ziewxqof\nlanguage:\nbrowser:mic... | etlfrucw ziewxqof | GRP_0 | log in permissions not working. need to chang... | English |
| 5761 | 主机ä¸èƒ½å¼€å¯ | 主机ä¸èƒ½å¼€å¯ï¼Œç”µæºç¯æ£å¸¸ï¼Œä¸»æœºé... | cpdilmjx jwsqpiac | GRP_48 | 主机ä¸èƒ½å¼€å¯ 主机ä¸èƒ½å¼€å¯ï¼Œç”µæº... | English |
| 5762 | 打开office 2013æ˜¾ç¤ºæ˜¯æœªç»æŽˆæƒäº§å“ | 打开outlookã€pptæ˜¾ç¤ºæ˜¯æœªç»æŽˆæƒäº§å“... | hbvwqine eakqyovu | GRP_48 | 打开office 2013æ˜¾ç¤ºæ˜¯æœªç»æŽˆæƒäº§å“ æ... | English |
| 5763 | network outage: russia - warehouse network is ... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: russia - warehouse network is ... | English |
| 5764 | circuit outage at milan, it- divestiture since... | what type of outage: _____network ___x__c... | uvrbhlnt bjrmalzi | GRP_8 | circuit outage at milan, it- divestiture since... | English |
| 5765 | login to mii issue. | login to mii issue. | xdcpmtfn xzvbjhlc | GRP_0 | login to mii issue. login to mii issue. | English |
| 5766 | email & calendar on my phone | \r\n\r\nreceived from: tjlizqgc.ngvwoukp@gmail... | tjlizqgc ngvwoukp | GRP_0 | email & calendar on my phone \r\n\r\nreceived ... | English |
| 5767 | expense report | \n\nreceived from: ytqhfmwi.itnakpmc@gmail.com... | ytqhfmwi itnakpmc | GRP_68 | expense report \n\nreceived from: ytqhfmwi.itn... | English |
| 5768 | folder access for jywvemun qngschtz | from: nwfodmhc exurcwkm \r\nsent: wednesday, a... | naruedlk mpvhakdq | GRP_34 | folder access for jywvemun qngschtz from: nwfo... | English |
| 5769 | password reset for xhaomnjl ctusaqpr | password reset for xhaomnjl ctusaqpr | olckhmvx pcqobjnd | GRP_0 | password reset for xhaomnjl ctusaqpr password ... | English |
| 5770 | password reset request | password reset request | oqvwgnkc gkjylpzx | GRP_0 | password reset request password reset request | English |
| 5771 | ticket update on inplant_855685 | ticket update on inplant_855685 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_855685 ticket update ... | English |
| 5772 | can't add a note to an account on the mobile | can't add a note to an account on the mobile. ... | acteiqdu bferalus | GRP_40 | can't add a note to an account on the mobile c... | English |
| 5773 | stock transfer pricing error - intercompnay in... | they reversed the intercompany shipment but th... | fybwjzhx ojgrpafb | GRP_10 | stock transfer pricing error - intercompnay in... | English |
| 5774 | unable to print from dv28 | unable to print from dv28 | gvdkupew waphsuen | GRP_0 | unable to print from dv28 unable to print from... | English |
| 5775 | account unlock | account unlock | hwcisuvt omepbihv | GRP_0 | account unlock account unlock | English |
| 5776 | can you tell me the phone number for office 44... | \n\nreceived from: azxhejvq.fyemlavd@gmail.com... | azxhejvq fyemlavd | GRP_0 | can you tell me the phone number for office 44... | English |
| 5777 | login script pop up query | login script pop up query | epqyourg rxjipfum | GRP_0 | login script pop up query login script pop up ... | English |
| 5778 | ticket update on inplant_855239 | ticket update on inplant_855239 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_855239 ticket update ... | English |
| 5779 | job Job_1359 failed in job_scheduler at: 08/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1359 failed in job_scheduler at: 08/30... | English |
| 5780 | install project 2013 for petrhyr | install project 2013 for petrhyr | aexbclqv zvapcslb | GRP_3 | install project 2013 for petrhyr install proje... | English |
| 5781 | vip2: printer setup | vip2: printer setup | usqrpicf dfmxaliz | GRP_0 | vip2: printer setup vip2: printer setup | English |
| 5782 | erp SID_34 account locked | erp SID_34 account locked | ozfjeqml xiujacyn | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 5783 | outlook not connected to server & having queri... | outlook not connected to server & having queri... | urgqkinl zpcokgbj | GRP_0 | outlook not connected to server & having queri... | English |
| 5784 | printer new driver update needed | name:kaguhxwo uoyipxqg\nlanguage:\nbrowser:mic... | kaguhxwo uoyipxqg | GRP_0 | printer new driver update needed name:kaguhxwo... | English |
| 5785 | engineering tool locked out | \n\nreceived from: nabjpdhy.bjuqwidt@gmail.com... | pzkxsnmv aoybmnzw | GRP_0 | engineering tool locked out \n\nreceived from... | English |
| 5786 | password reset to annette | ic\r\n welcome, our next available agent will ... | xkisaybg fykpoxhu | GRP_0 | password reset to annette ic\r\n welcome, our ... | English |
| 5787 | windows asks to install driver and then won't ... | please complete all required questions below. ... | rxqtvanc kthqwxvb | GRP_0 | windows asks to install driver and then won't ... | English |
| 5788 | office 365 activation on corporate phone | office 365 activation on corporate phone | elphfvdt ileozacs | GRP_0 | office 365 activation on corporate phone offic... | English |
| 5789 | request to reset microsoft online services pas... | request to reset microsoft online services pas... | pvtiqgsh orlzgfsx | GRP_0 | request to reset microsoft online services pas... | English |
| 5790 | delete print jobs on prtqc4604 | delete print jobs on prtqc4604 | ariovxlm gesyftvm | GRP_0 | delete print jobs on prtqc4604 delete print jo... | English |
| 5791 | i changed my password and now cant sign into s... | name:mikhghytr \nlanguage:\nbrowser:microsoft ... | vcyktjxp uxdojvrq | GRP_0 | i changed my password and now cant sign into s... | English |
| 5792 | eror message on refreshing the bex analysis. e... | eror message on refreshing the bex analysis. e... | dslamtcb ezbmonjr | GRP_9 | eror message on refreshing the bex analysis. e... | English |
| 5793 | hr_tool queries for former employee : hanghdyle | hr_tool queries for former employee : hanghdyle | efbwiadp dicafxhv | GRP_0 | hr_tool queries for former employee : hanghdyl... | English |
| 5794 | re: ticket_no1538811::company center authoriza... | \r\n\r\nreceived from: zdnqowag.cdtyonhw@gmail... | zdnqowag cdtyonhw | GRP_0 | re: ticket_no1538811::company center authoriza... | English |
| 5795 | ticket update for inplant_855685 | ticket update for inplant_855685 | fumkcsji sarmtlhy | GRP_0 | ticket update for inplant_855685 ticket update... | English |
| 5796 | request for temporary access to f.80 mass reve... | \r\n\r\nreceived from: rhwsmefo.tvphyura@gmail... | rhwsmefo tvphyura | GRP_2 | request for temporary access to f.80 mass reve... | English |
| 5797 | problem with erp not updating orders after get... | problem with erp not updating orders after get... | fyzceglp vfnraqxc | GRP_18 | problem with erp not updating orders after get... | English |
| 5798 | ticket update for inplant_855671 | ticket update for inplant_855671 | fumkcsji sarmtlhy | GRP_0 | ticket update for inplant_855671 ticket update... | English |
| 5799 | outlook not launching | outlook not launching.\r\n-connected to the us... | khaibsvt lkvfxzpj | GRP_0 | outlook not launching outlook not launching.\r... | English |
| 5800 | ticket update regarding ticket_no1543461 from ... | ticket update regarding ticket_no1543461 from ... | efbwiadp dicafxhv | GRP_0 | ticket update regarding ticket_no1543461 from ... | English |
| 5801 | need to map/add network printer | need to map/add network printer | bihypqsn kbaegpcd | GRP_0 | need to map/add network printer need to map/ad... | English |
| 5802 | jerghjemiah brock, your windows password is ex... | jerghjemiah brock, your windows password is ex... | mgcivbtx bshmfxya | GRP_0 | jerghjemiah brock, your windows password is ex... | English |
| 5803 | unable to send email to hrscc team from extern... | unable to send email to hrscc team from extern... | imzctxhr odmawbij | GRP_26 | unable to send email to hrscc team from extern... | English |
| 5804 | all permissions for discounts has been removed... | all permissions for discounts has been removed... | uajiymhe qyrwfkvz | GRP_0 | all permissions for discounts has been removed... | English |
| 5805 | unable to launch erp. logon balancing error | unable to launch erp. logon balancing error | zehrwlbt sdyltvnp | GRP_0 | unable to launch erp. logon balancing error un... | English |
| 5806 | ticket update on ticket_no0434826 | ticket update on ticket_no0434826 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0434826 ticket updat... | English |
| 5807 | please identify source user involved in proces... | from: ugyothfz ugrmkdhx \nsent: tuesday, augus... | ugyothfz ugrmkdhx | GRP_39 | please identify source user involved in proces... | English |
| 5808 | HostName_1007: volume consumed on c:\ disk is... | HostName_1007: volume consumed on c:\ disk is... | oldrctiu bxurpsyi | GRP_12 | HostName_1007: volume consumed on c:\ disk is... | English |
| 5809 | email delegation | email delegation | wbtrvdsi gdbuvszx | GRP_0 | email delegation email delegation | French |
| 5810 | rqxmaindept ad account keeps getting locked. ... | rqxmaindept ad account keeps getting locked. ... | kuiglfqa rwutnibm | GRP_12 | rqxmaindept ad account keeps getting locked. ... | English |
| 5811 | skype login issue | :440-\nsummary:unable to log into skype after ... | ufpkvlyn bozthrie | GRP_0 | skype login issue :440-\nsummary:unable to lo... | English |
| 5812 | unable to connect to vpn | unable to connect to vpn | dskcobqa tujrvsbc | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 5813 | outlook issue | outlook issue | nwzhlktu plktredg | GRP_0 | outlook issue outlook issue | English |
| 5814 | konto scghhnell reaktivieren- laptop ewel7212519 | konto scghhnell reaktivieren- laptop ewel7212519 | ughzilfm cfibdamq | GRP_24 | konto scghhnell reaktivieren- laptop ewel72125... | German |
| 5815 | collaboration_platform emails | \r\n\r\nreceived from: fgsmwvcp.uoxkzwes@gmail... | fgsmwvcp uoxkzwes | GRP_16 | collaboration_platform emails \r\n\r\nreceived... | English |
| 5816 | need to configure printer | need to configure printer | lduqxywt wcydjgvl | GRP_0 | need to configure printer need to configure pr... | English |
| 5817 | erp SID_34 password reset. | erp SID_34 password reset. | giumxwvh lfvwjtin | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 5818 | erp SID_34 password reset. | erp SID_34 password reset. | qtgefsdk bytvlnca | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 5819 | wifi guest account | wifi guest account | xpugzdvk xiawvmfp | GRP_0 | wifi guest account wifi guest account | English |
| 5820 | unable to boot laptop | unable to boot laptop | wbtrvdsi gdbuvszx | GRP_0 | unable to boot laptop unable to boot laptop | English |
| 5821 | erp SID_34 password reset done. confirmed with... | erp SID_34 password reset done. confirmed with... | uajiymhe qyrwfkvz | GRP_0 | erp SID_34 password reset done. confirmed with... | English |
| 5822 | job Job_1953b failed in job_scheduler at: 08/3... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953b failed in job_scheduler at: 08/3... | English |
| 5823 | need to setup exchange on corporate iphone | need to setup exchange on corporate iphone | qifzkoej etbmgjvo | GRP_0 | need to setup exchange on corporate iphone nee... | English |
| 5824 | erp SID_34 password reset done. confirmed with... | erp SID_34 password reset done. confirmed with... | nsgeatyf qbyfiajo | GRP_0 | erp SID_34 password reset done. confirmed with... | English |
| 5825 | inc1544821 - ticket update | inc1544821 - ticket update | olckhmvx pcqobjnd | GRP_0 | inc1544821 - ticket update inc1544821 - ticket... | English |
| 5826 | unable to launch engineering_tool | unable to launch engineering_tool | awcgpyeh hlavbsjf | GRP_3 | unable to launch engineering_tool unable to la... | English |
| 5827 | ç”å¤: ticket_no1538811::company center autho... | \n\nreceived from: udzkgbwl.bgpedtqc@gmail.com... | udzkgbwl bgpedtqc | GRP_21 | ç”å¤: ticket_no1538811::company center autho... | English |
| 5828 | problemas de configuração no quick quote | as imagens não alteramdnty quando solicitadas... | zpfitlyu cemvwyso | GRP_62 | problemas de configuração no quick quote as ... | Portuguese |
| 5829 | mapping network | mapping network | hjxdkwtr jzeuyfdp | GRP_0 | mapping network mapping network | English |
| 5830 | palghjmal1 is not able to run softland client ... | qohfjpna exphkims (palghjmal1) is not able to ... | qohfjpna exphkims | GRP_12 | palghjmal1 is not able to run softland client ... | English |
| 5831 | install shop_floor_app on my machine | install shop_floor_app on my machine | zqrnveyx hajtfmcd | GRP_3 | install shop_floor_app on my machine install s... | English |
| 5832 | outlook cache email query. | outlook cache email query. | qicmfaoe hdrysife | GRP_0 | outlook cache email query. outlook cache email... | English |
| 5833 | new cpp id can not request initiative. see im... | cphlme01\r\n | pfzxecbo ptygkvzl | GRP_21 | new cpp id can not request initiative. see im... | English |
| 5834 | re: ticket_no1538811::company center authoriza... | \n\nreceived from: rubiargty.fatgrtyma@company... | gzhapcld fdigznbk | GRP_0 | re: ticket_no1538811::company center authoriza... | English |
| 5835 | ç”å¤: ticket_no1538811::company center autho... | \r\n\r\nreceived from: udzkgbwl.bgpedtqc@gmail... | udzkgbwl bgpedtqc | GRP_0 | ç”å¤: ticket_no1538811::company center autho... | English |
| 5836 | whenever i open an email with a jpg attachemen... | whenever i open an email with a jpg attachemen... | hitakmbs fvhmkntq | GRP_3 | whenever i open an email with a jpg attachemen... | English |
| 5837 | all of the presentations posted for drive this... | all of the presentations posted for drive this... | erckhtzj tdmkgoie | GRP_16 | all of the presentations posted for drive this... | English |
| 5838 | i can not print. it is asking me to install a... | i can not print. it is asking me to install a... | vsbtygin oufhtbas | GRP_0 | i can not print. it is asking me to install a... | English |
| 5839 | reset passwords for cpmaidhj elbaqmtp using pa... | the | cpmaidhj elbaqmtp | GRP_17 | reset passwords for cpmaidhj elbaqmtp using pa... | English |
| 5840 | erp salary statement | my lauacyltoe hxgaycze salary statement was on... | ovpuqfaj pqruovit | GRP_52 | erp salary statement my lauacyltoe hxgaycze sa... | English |
| 5841 | s&op | \n\nreceived from: uyrpdvoq.mbzevtcx@gmail.com... | uyrpdvoq mbzevtcx | GRP_0 | s&op \n\nreceived from: uyrpdvoq.mbzevtcx@gmai... | English |
| 5842 | ess access for user ghaltiek lsuepvyx (yesilc) | ess access for user ghaltiek lsuepvyx. please ... | wcupoaty fqnzwphj | GRP_2 | ess access for user ghaltiek lsuepvyx (yesilc)... | English |
| 5843 | 'repeat outbound connection for 135/tcp | user id dalgtylam place in quarantine\r\n\r\nw... | afkstcev utbnkyop | GRP_69 | 'repeat outbound connection for 135/tcp user i... | English |
| 5844 | printer driver update | printer driver update | dqplrwoy cutpwjie | GRP_0 | printer driver update printer driver update | English |
| 5845 | erp training queries | erp training queries | lqophnis rcmepgvq | GRP_0 | erp training queries erp training queries | English |
| 5846 | problem with office365.com | \n\nreceived from: zywoxerf.paqxtrfk@gmail.com... | zywoxerf paqxtrfk | GRP_0 | problem with office365.com \n\nreceived from: ... | English |
| 5847 | repeat outbound connection for 135/tcp | user zhengdr placed in palo_virus_quarantine\r... | afkstcev utbnkyop | GRP_30 | repeat outbound connection for 135/tcp user zh... | English |
| 5848 | printer configuration | printer configuration | kzjtvbaf nskfwlvo | GRP_0 | printer configuration printer configuration | English |
| 5849 | erp SID_34 password reset. | erp SID_34 password reset done. confirmed with... | cpsybwla snymigat | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 5850 | job Job_1314 failed in job_scheduler at: 08/30... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/30... | English |
| 5851 | logon error in erp SID_1 | logon error in erp SID_1 | yvzegwph xgzwiqta | GRP_0 | logon error in erp SID_1 logon error in erp SID_1 | English |
| 5852 | circuit outage:usa, nv - divestiture site :sec... | what type of outage: _____network _x____c... | oldrctiu bxurpsyi | GRP_8 | circuit outage:usa, nv - divestiture site :sec... | English |
| 5853 | job SID_11_uacyltoe hxgaycze failed in job_sch... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_11_uacyltoe hxgaycze failed in job_sch... | English |
| 5854 | sn access | \r\n\r\nreceived from: rdfjsawg.zpmxgdcw@gmail... | rdfjsawg zpmxgdcw | GRP_0 | sn access \r\n\r\nreceived from: rdfjsawg.zpmx... | English |
| 5855 | outlook not loading | outlook not loading | cighytol yjurztgd | GRP_0 | outlook not loading outlook not loading | English |
| 5856 | can't access expense reporting through employe... | when trying to enter the expense reporting tab... | kvtchbus tqrehbsd | GRP_2 | can't access expense reporting through employe... | English |
| 5857 | windows printing issues / need driver installe... | windows printing issues / need driver installe... | shloyakw jztsxdln | GRP_12 | windows printing issues / need driver installe... | English |
| 5858 | HostName_145: volume comsumed on /dev/hd3 is... | HostName_145: volume comsumed on /dev/hd3 is... | oldrctiu bxurpsyi | GRP_47 | HostName_145: volume comsumed on /dev/hd3 is... | English |
| 5859 | erp SID_34 password reset. | erp SID_34 password reset. | gvktqfrj uawjnfel | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 5860 | emails are not working | emails are not working | pofkwlui joteryma | GRP_0 | emails are not working emails are not working | English |
| 5861 | impact award password reset. | impact award password reset. | lvqzcdxj gdfivbqc | GRP_0 | impact award password reset. impact award pass... | English |
| 5862 | password reset request. | password reset request. | htburown hpkfjqyr | GRP_0 | password reset request. password reset request. | English |
| 5863 | password reset through password_management_too... | password reset through password_management_too... | neoarmgd meodvbxu | GRP_0 | password reset through password_management_too... | English |
| 5864 | ad account lock out | ad account lock out | neoarmgd meodvbxu | GRP_0 | ad account lock out ad account lock out | English |
| 5865 | account locked out in ad | account locked out in ad | akisjtzm uvbmysgc | GRP_0 | account locked out in ad account locked out in ad | English |
| 5866 | telephony_software 2016 r2 - please can you re... | \r\n\r\nreceived from: hupnceij.hyozjakb@gmail... | hupnceij hyozjakb | GRP_7 | telephony_software 2016 r2 - please can you re... | English |
| 5867 | microsoft outlook not work - user bhqvklgc vsc... | after change the password using password_manag... | bxeagsmt zrwdgsco | GRP_0 | microsoft outlook not work - user bhqvklgc vsc... | English |
| 5868 | ad account locked out | ad account locked out | piewoyqx bivcmwlh | GRP_0 | ad account locked out ad account locked out | English |
| 5869 | outlook fails to open. | outlook fails to open. | aeophctw nvjyhizu | GRP_0 | outlook fails to open. outlook fails to open. | English |
| 5870 | circuit outage : company-eu-gbr-united kingdom... | circuit outage : company-eu-gbr-united kingdom... | spxqmiry zpwgoqju | GRP_8 | circuit outage : company-eu-gbr-united kingdom... | English |
| 5871 | HostName_1010: erpstartsrv.exe service is down. | HostName_1010: erpstartsrv.exe service is down. | rkupnshb gsmzfojw | GRP_14 | HostName_1010: erpstartsrv.exe service is down... | English |
| 5872 | erp SID_37 password reset and unlock account r... | erp SID_37 password reset and unlock account r... | vrjwyqtf qoxkapfw | GRP_0 | erp SID_37 password reset and unlock account r... | English |
| 5873 | new password for erp SID_37 (bex) needed | \r\n\r\nreceived from: ptyxefvk.fhazbrwn@gmail... | ptyxefvk fhazbrwn | GRP_0 | new password for erp SID_37 (bex) needed \r\n\... | English |
| 5874 | password expires | \r\n\r\nreceived from: loqdtrfn.apxmsjkc@gmail... | loqdtrfn apxmsjkc | GRP_0 | password expires \r\n\r\nreceived from: loqdtr... | English |
| 5875 | job HostName_1019fail_vig_uacyltoe hxgaycze fa... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail_vig_uacyltoe hxgaycze fa... | English |
| 5876 | erp printers ng20 and ng 43 are printing on bo... | erp printers ng20 and ng 43 are printing on bo... | jcdewsuv mdipqhzx | GRP_19 | erp printers ng20 and ng 43 are printing on bo... | English |
| 5877 | erp SID_34 account unlock. | erp SID_34 account unlock. | kdeohucw qhxbcfes | GRP_0 | erp SID_34 account unlock. erp SID_34 account ... | English |
| 5878 | setup new ws \strahlraum \xaqzisrk ahbgjrqz | setup new ws \strahlraum \xaqzisrk ahbgjrqz | xaqzisrk ahbgjrqz | GRP_24 | setup new ws \strahlraum \xaqzisrk ahbgjrqz se... | German |
| 5879 | setup new ws \strahlraum \ujtmipzv cwdzunxs | setup new ws \strahlraum \ujtmipzv cwdzunxs | ujtmipzv cwdzunxs | GRP_24 | setup new ws \strahlraum \ujtmipzv cwdzunxs se... | German |
| 5880 | setup new ws \strahlraum \fyedqgzt jdqvuhlr | setup new ws \strahlraum \fyedqgzt jdqvuhlr | xpmgtlcq ksaefihz | GRP_24 | setup new ws \strahlraum \fyedqgzt jdqvuhlr se... | German |
| 5881 | vfx3, 4 interco inwarehouse_tools cannot be pr... | error: no number range number has been recorde... | ipwjorsc uboapexr | GRP_13 | vfx3, 4 interco inwarehouse_tools cannot be pr... | English |
| 5882 | der drucker druckt nicht \hp 4200 \rfvmeyho qg... | der drucker druckt nicht \hp 4200 \rfvmeyho qg... | rfvmeyho qgtxjsdc | GRP_24 | der drucker druckt nicht \hp 4200 \rfvmeyho qg... | German |
| 5883 | setup new ws\ rechner alte schmiede \nfayqjhg ... | setup new ws\ rechner alte schmiede \nfayqjhg ... | nfayqjhg kyswcpei | GRP_24 | setup new ws\ rechner alte schmiede \nfayqjhg ... | German |
| 5884 | reset passwords for bxeagsmt zrwdgsco using pa... | the | bxeagsmt zrwdgsco | GRP_17 | reset passwords for bxeagsmt zrwdgsco using pa... | English |
| 5885 | unable to print company label | \r\n\r\nreceived from: rxoynvgi.ntgdsehl@gmail... | rxoynvgi ntgdsehl | GRP_0 | unable to print company label \r\n\r\nreceived... | English |
| 5886 | windows account locked | windows account locked | mtcywlxv cklzmxyr | GRP_0 | windows account locked windows account locked | English |
| 5887 | tablet - dell 7350 - ç”µè„‘æ’æ”¾éŸ³é¢‘文件æ... | please provide details of the issue.\r\n电脑... | riuhxcab jcsavihq | GRP_31 | tablet - dell 7350 - ç”µè„‘æ’æ”¾éŸ³é¢‘文件æ... | English |
| 5888 | please, reset password erp SID_34 production | name:shathyra\nlanguage:\nbrowser:microsoft in... | gvktqfrj uawjnfel | GRP_0 | please, reset password erp SID_34 production n... | English |
| 5889 | label printer network lost | label printer network lost | kiwyjtpu wzjqcnfy | GRP_31 | label printer network lost label printer netw... | English |
| 5890 | iphone上的skypeä¸èƒ½ç™»å½•ä¸èƒ½å‚åŠ ä¼šè®... | iphone上的skypeä¸èƒ½ç™»å½•ä¸èƒ½å‚åŠ ä¼šè®... | hprdlbxf nozjtgwi | GRP_30 | iphone上的skypeä¸èƒ½ç™»å½•ä¸èƒ½å‚åŠ ä¼šè®... | Danish |
| 5891 | vpnä¸èƒ½ä½¿ç”¨ï¼Œè¯·è½¬ç»™å°è´º | vpnä¸èƒ½ä½¿ç”¨ï¼Œè¯·è½¬ç»™å°è´º | ehfvwltg eakjbtoi | GRP_0 | vpnä¸èƒ½ä½¿ç”¨ï¼Œè¯·è½¬ç»™å°è´º vpnä¸èƒ½ä½¿... | English |
| 5892 | not able to enter/ select account asignment ca... | see attached screenshot | ecfbdmwt dgnoqymj | GRP_29 | not able to enter/ select account asignment ca... | English |
| 5893 | druckerzuordnung zum disponenten | \r\n\r\nreceived from: icnjlzas.cvphuknj@gmail... | icnjlzas cvphuknj | GRP_5 | druckerzuordnung zum disponenten \r\n\r\nrecei... | German |
| 5894 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 5895 | receiving mails from unknown | \r\n\r\nreceived from: wdybmizf.ekqgpaus@gmail... | wdybmizf ekqgpaus | GRP_0 | receiving mails from unknown \r\n\r\nreceive... | English |
| 5896 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 5897 | habe gestern mein passwort geändert. nun verb... | kann anmeldetaten eingeben, aber fenster kommt... | axeclkro snfmerdb | GRP_0 | habe gestern mein passwort geändert. nun verb... | German |
| 5898 | unable to login to shop floor system | unable to login to shop floor system \r\n\r\ne... | oewrjvcx abjpdkcu | GRP_0 | unable to login to shop floor system unable t... | English |
| 5899 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 5900 | account locked in erp SID_34 | account locked in erp SID_34 | omgqwuae utbrfyzq | GRP_0 | account locked in erp SID_34 account locked in... | English |
| 5901 | i'm not able to login to skype communicator | i'm not able to login to skype communicator | xagyhbio jvrdnpkh | GRP_0 | i'm not able to login to skype communicator i'... | English |
| 5902 | please help me to set up skype conference call... | name:nthryitin\nlanguage:\nbrowser:netscape\ne... | dqwhpjxy pozjxbey | GRP_0 | please help me to set up skype conference call... | English |
| 5903 | engineering tool quick search problem | engineering tool quick search is not working ,... | hzetqwba tmsbnfkh | GRP_11 | engineering tool quick search problem engineer... | English |
| 5904 | the HostName_80 network connection lost at 9:0... | the HostName_80 connection lost at 9:05 am , ... | zuxcfonv nyhpkrbe | GRP_4 | the HostName_80 network connection lost at 9:0... | English |
| 5905 | users are unable to "open engg work bench | unable to open engineering tool\nall user in i... | janivrtg hstolemu | GRP_25 | users are unable to "open engg work bench unab... | English |
| 5906 | erp SID_34 account locked | erp SID_34 account locked | pdvrieys wxvsltia | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 5907 | job Job_549 failed in job_scheduler at: 08/29/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_549 failed in job_scheduler at: 08/29/... | English |
| 5908 | job Job_394 failed in job_scheduler at: 08/29/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_47 | job Job_394 failed in job_scheduler at: 08/29/... | English |
| 5909 | job pp_EU_tool_netch_keheu2 failed in job_sche... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_keheu2 failed in job_sche... | English |
| 5910 | laptop 从桌åä¸Šé¢æ‘”下,外壳摔裂,... | laptop 从桌åä¸Šé¢æ‘”下,外壳摔裂,... | bwjhurqx akyuowev | GRP_31 | laptop 从桌åä¸Šé¢æ‘”下,外壳摔裂,... | English |
| 5911 | ana pethrywrs call conference to hr support | ana pethrywrs call conference to hr support | eqzibjhw ymebpoih | GRP_0 | ana pethrywrs call conference to hr support an... | English |
| 5912 | wireless outage again-taiwan 0830 | \r\n\r\nreceived from: ticqvhal.vgokzesi@gmail... | ticqvhal vgokzesi | GRP_4 | wireless outage again-taiwan 0830 \r\n\r\nrece... | English |
| 5913 | 邮箱登录ä¸äº† | 昨天æç¤ºæ›´æ”¹å¯†ç ,改好åŽå¯ä»¥ç™»å... | vSMfFXAJ OUAhWpDS | GRP_30 | 邮箱登录ä¸äº† 昨天æç¤ºæ›´æ”¹å¯†ç ,... | English |
| 5914 | erp account password reset | ic\n welcome, our next available agent will be... | sndaofyw jetcxpda | GRP_0 | erp account password reset ic\n welcome, our n... | English |
| 5915 | job bk_hana_SID_22_os_dly_dp failed in job_sch... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_22_os_dly_dp failed in job_sch... | English |
| 5916 | skype not working | ic\r\n welcome, our next available agent will ... | gwptzvxm rhozsfty | GRP_0 | skype not working ic\r\n welcome, our next ava... | English |
| 5917 | unable to send mails | ic\r\n welcome, our next available agent will ... | upcgxthj lnsvemxy | GRP_0 | unable to send mails ic\r\n welcome, our next ... | English |
| 5918 | job bk_hana_SID_61_erp_wky_dp failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bk_hana_SID_61_erp_wky_dp failed in job_sc... | English |
| 5919 | s1 to k1 license- ujtmipzv.cwdzunxs@gmail.com | s1 to k1 license | xwirzvda okhyipgr | GRP_34 | s1 to k1 license- ujtmipzv.cwdzunxs@gmail.com ... | English |
| 5920 | guest wifi access for lefrte eafrtkin | guest wifi access for lefrte eafrtkin | qomancfz esafqznm | GRP_0 | guest wifi access for lefrte eafrtkin guest wi... | English |
| 5921 | unable to hear any audio from bluetooth headse... | unable to hear any audio from bluetooth headse... | oujvmgeq spobcflw | GRP_0 | unable to hear any audio from bluetooth headse... | English |
| 5922 | pc restarting randomly. appears to be a possbl... | pc restarting randomly. appears to be a possbl... | tskwevno sjhpoakl | GRP_3 | pc restarting randomly. appears to be a possbl... | English |
| 5923 | ticket update on inplant_855272 | ticket update on inplant_855272 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_855272 ticket update ... | English |
| 5924 | vsp computer asset returns | \n\nreceived from: owhuxbnf.sxbgyrou@gmail.com... | owhuxbnf sxbgyrou | GRP_3 | vsp computer asset returns \n\nreceived from: ... | English |
| 5925 | would like added to the distribution list for ... | i was receiving job hr301a every monday mornin... | xszoedmc gmhkdsnw | GRP_5 | would like added to the distribution list for ... | English |
| 5926 | user wants to update passwords using password ... | user wants to update passwords using password ... | hpakdzyj lkrtvosz | GRP_0 | user wants to update passwords using password ... | English |
| 5927 | ticket update on inplant_854272 | ticket update on inplant_854272 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_854272 ticket update ... | English |
| 5928 | ticket update on inplant_855239 | ticket update on inplant_855239 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_855239 ticket update ... | English |
| 5929 | unable to connect to vpn | unable to connect to vpn | rfeqbplo zligwvte | GRP_0 | unable to connect to vpn unable to connect to vpn | English |
| 5930 | map network drives | map network drives | hvstqfwc buvsrnze | GRP_0 | map network drives map network drives | English |
| 5931 | outlook freezes when trying to open a new emai... | outlook freezes when trying to open a new emai... | hduzwpio wrcgunso | GRP_0 | outlook freezes when trying to open a new emai... | English |
| 5932 | printer driver installation | printer driver installation | wbqtfzdv aectbluw | GRP_0 | printer driver installation printer driver ins... | English |
| 5933 | msc not communicating with erp | name:tmyeqika hfudpeot\nlanguage:\nbrowser:mic... | tmyeqika hfudpeot | GRP_18 | msc not communicating with erp name:tmyeqika h... | English |
| 5934 | unable to login to collaboration_platform site... | unable to login to collaboration_platform site... | oewrjvcx abjpdkcu | GRP_0 | unable to login to collaboration_platform site... | English |
| 5935 | circuit outage at usa-usa since 08/29 2:00 am ... | what type of outage: _____network __x___c... | uvrbhlnt bjrmalzi | GRP_4 | circuit outage at usa-usa since 08/29 2:00 am ... | English |
| 5936 | msc not communicating with erp | orders picking confirmed in msc are not confir... | tmyeqika hfudpeot | GRP_0 | msc not communicating with erp orders picking ... | English |
| 5937 | us25- vdklzxqg jpaftdul 66942 | \n\nreceived from: wvngzrca.sfmrzdth@gmail.com... | wvngzrca sfmrzdth | GRP_34 | us25- vdklzxqg jpaftdul 66942 \n\nreceived fro... | English |
| 5938 | ad password reset | ad password reset | dctvfjrn oypnxftq | GRP_0 | ad password reset ad password reset | English |
| 5939 | job SID_11_uacyltoe hxgaycze6 failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_11_uacyltoe hxgaycze6 failed in job_sc... | English |
| 5940 | unable to open outlook after changing the pass... | unable to open outlook after changing the pass... | zfburidj jmilguev | GRP_0 | unable to open outlook after changing the pass... | English |
| 5941 | outlook not working | outlook not working | mhxzdygu qwdjfgbl | GRP_0 | outlook not working outlook not working | English |
| 5942 | unable to open ess page from home pc(win10) | unable to open ess page from home pc(win10) | oewrjvcx abjpdkcu | GRP_0 | unable to open ess page from home pc(win10) un... | English |
| 5943 | hr_tool site will not recognize email address ... | tried entering into hr_tool site, but cannot e... | vkpwnqay rmwxqoba | GRP_0 | hr_tool site will not recognize email address ... | English |
| 5944 | hr_tool etime screen will not open to request ... | xszoedmc gmhkdsnw, 724, hr_tool etime. blank ... | xszoedmc gmhkdsnw | GRP_0 | hr_tool etime screen will not open to request ... | English |
| 5945 | blank call //gso | blank call //gso | rbozivdq gmlhrtvp | GRP_0 | blank call //gso blank call //gso | English |
| 5946 | unable to open engineering_engineering_tools f... | unable to open engineering_engineering_tools f... | sagfvdeb kfqtvgxl | GRP_25 | unable to open engineering_engineering_tools f... | English |
| 5947 | expense report not working | when trying to create an expense report in ess... | govipcda yvgkbitw | GRP_68 | expense report not working when trying to crea... | English |
| 5948 | caller wanted to speak to email server admin, ... | caller wanted to speak to email server admin, ... | efbwiadp dicafxhv | GRP_0 | caller wanted to speak to email server admin, ... | English |
| 5949 | e-mail question | \r\n\r\nreceived from: anpocezt.qturbxsg@gmail... | anpocezt qturbxsg | GRP_0 | e-mail question \r\n\r\nreceived from: anpocez... | English |
| 5950 | blank call | blank call: did not receive any response from ... | efbwiadp dicafxhv | GRP_0 | blank call blank call: did not receive any res... | English |
| 5951 | office is not licensed | office is not licensed | zmnhfcbv azdnkmul | GRP_0 | office is not licensed office is not licensed | English |
| 5952 | job SID_11_uacyltoe hxgaycze5 failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_11_uacyltoe hxgaycze5 failed in job_sc... | English |
| 5953 | need to map printer | need to map printer | sayrmutj txwhimlj | GRP_0 | need to map printer need to map printer | English |
| 5954 | bitte um rückruf morgen um 7 uhr 30 mitteleur... | \n\nreceived from: ptuchwad.yzvrlcqa@gmail.com... | ptuchwad yzvrlcqa | GRP_0 | bitte um rückruf morgen um 7 uhr 30 mitteleur... | German |
| 5955 | erp access issue : SID_34 access: user id has ... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | hkfipags sdilxrfk | GRP_2 | erp access issue : SID_34 access: user id has ... | English |
| 5956 | job SID_11_uacyltoe hxgaycze4 failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_11_uacyltoe hxgaycze4 failed in job_sc... | English |
| 5957 | tool performance database | please deactivate userid kroetzer in engineeri... | hbmwlprq ilfvyodx | GRP_25 | tool performance database please deactivate us... | English |
| 5958 | unable to see expense report 2111137500 | from: proygkjt mwetuhqf \nsent: sunday, august... | proygkjt mwetuhqf | GRP_20 | unable to see expense report 2111137500 from:... | English |
| 5959 | job SID_11_uacyltoe hxgaycze3 failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_11_uacyltoe hxgaycze3 failed in job_sc... | English |
| 5960 | zdsxmcwu thdjzolwronization issue | zdsxmcwu thdjzolwronization issue. | bearzclk xnvqipcz | GRP_0 | zdsxmcwu thdjzolwronization issue zdsxmcwu th... | English |
| 5961 | job SID_11_uacyltoe hxgaycze2 failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_11_uacyltoe hxgaycze2 failed in job_sc... | English |
| 5962 | outlook crashing : msd crm outlook issue | outlook crashing : msd crm outlook issue | wzbqmhdf gxsiadqw | GRP_0 | outlook crashing : msd crm outlook issue out... | English |
| 5963 | outlook freezing frequently | user called in for an issue where his outlook ... | pnwcubqr qdlocnzt | GRP_3 | outlook freezing frequently user called in for... | English |
| 5964 | add im:mfg_planner_reference to the miiadmin e... | add im:mfg_planner_reference to the miiadmin e... | dctvfjrn oypnxftq | GRP_2 | add im:mfg_planner_reference to the miiadmin e... | English |
| 5965 | acces to SID_1 | \n\nreceived from: aiobpkzm.rmfjwtpl@gmail.com... | aiobpkzm rmfjwtpl | GRP_0 | acces to SID_1 \n\nreceived from: aiobpkzm.rmf... | English |
| 5966 | unable to open outlook and skype | name:phil schoenfeld\nlanguage:\nbrowser:micro... | iotudrxg odpcwvez | GRP_0 | unable to open outlook and skype name:phil sch... | English |
| 5967 | unable to log in to mii | unable to log in to mii | kxoezpwm wthpabcq | GRP_0 | unable to log in to mii unable to log in to mii | English |
| 5968 | keybankrd | \r\n\r\nreceived from: qscdktvl.rihendxu@gmail... | qscdktvl rihendxu | GRP_3 | keybankrd \r\n\r\nreceived from: qscdktvl.rihe... | English |
| 5969 | vip 2 please add luis revilla to the group lta... | \n\nreceived from: tivbxojn.gorlajmp@gmail.com... | tivbxojn gorlajmp | GRP_2 | vip 2 please add luis revilla to the group lta... | English |
| 5970 | account unlock | account unlock | bearzclk xnvqipcz | GRP_0 | account unlock account unlock | English |
| 5971 | companyguest access | name:erirtc \nlanguage:\nbrowser:microsoft int... | ntsowaem jfgslyde | GRP_0 | companyguest access name:erirtc \nlanguage:\nb... | English |
| 5972 | job SID_11_uacyltoe hxgaycze failed in job_sch... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_11_uacyltoe hxgaycze failed in job_sch... | English |
| 5973 | outlook freezes. | outlook freezes. | rwhavckz drvxyihj | GRP_0 | outlook freezes. outlook freezes. | English |
| 5974 | company iphone | from: aorthyme rnsuipbk \nsent: monday, august... | badgknqs xwelumfz | GRP_0 | company iphone from: aorthyme rnsuipbk \nsent:... | English |
| 5975 | subject: account information updated from upe... | subject: account information updated from upe... | rwyfmclk ugbvnwtq | GRP_0 | subject: account information updated from upe... | English |
| 5976 | unable to load crm add in on outlook | unable to load crm add in on outlook | owlgqjme qhcozdfx | GRP_0 | unable to load crm add in on outlook unable t... | English |
| 5977 | subject: account information updated from upe... | subject: account information updated from upe... | mhxzdygu qwdjfgbl | GRP_0 | subject: account information updated from upe... | English |
| 5978 | mobile device activation | mobile device activation company device | aylrbosw gaeycbwd | GRP_0 | mobile device activation mobile device activat... | English |
| 5979 | send function is not working. (outlook 2010) | send function is not working. (outlook 2010) | xjazwpmd sjirdnam | GRP_0 | send function is not working. (outlook 2010) s... | English |
| 5980 | outlook is not working. | outlook is not working. | navfgybz fuavxjzk | GRP_0 | outlook is not working. outlook is not working. | English |
| 5981 | password reset request by ughzilfm cfibdamq. | password reset request by ughzilfm cfibdamq. | ompeztak ilkpqtjh | GRP_0 | password reset request by ughzilfm cfibdamq. p... | English |
| 5982 | accounts erstellen bitte | von: gogtyekhan merdivan \ngesendet: montag, 2... | qidgvtwa qvbutayx | GRP_0 | accounts erstellen bitte von: gogtyekhan merdi... | German |
| 5983 | need the bex analysis add-in | need the bex analysis add-in | dslamtcb ezbmonjr | GRP_0 | need the bex analysis add-in need the bex anal... | English |
| 5984 | unable to launch outlook | unable to launch outlook | ftnijxup sbltduco | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 5985 | unable to connect to vpn | unable to connect to vpn | qjiutmel fgvtxeoy | GRP_50 | unable to connect to vpn unable to connect to vpn | English |
| 5986 | failed skype mtg. | \r\n\r\nreceived from: yiramdntyjqc.qtrcepsa@g... | yiramjqc qtrcepsa | GRP_0 | failed skype mtg. \r\n\r\nreceived from: yiram... | English |
| 5987 | adding members to shared mailbox groups | adding members to the shared mailbox group | qcehailo wqynckxg | GRP_0 | adding members to shared mailbox groups adding... | English |
| 5988 | prtgghj4k and SID_67 password reset | unable to login to prtgghj4k and SID_67 systems | qpkbiwzl urypnjvq | GRP_0 | prtgghj4k and SID_67 password reset unable to ... | English |
| 5989 | account unlock | account unlock | jusenflm sufbehom | GRP_0 | account unlock account unlock | English |
| 5990 | wifi not working. | wifi not working. | tbjcygrn megaypdn | GRP_0 | wifi not working. wifi not working. | English |
| 5991 | need initial password reset for erp prtgghj4k ... | need initial password reset for erp prtgghj4k ... | ayrhcfxi zartupsw | GRP_2 | need initial password reset for erp prtgghj4k ... | English |
| 5992 | unable to login to erp SID_34 | unable to login to erp SID_34 | qtgefsdk bytvlnca | GRP_0 | unable to login to erp SID_34 unable to login ... | English |
| 5993 | laptop will not turn on, either docked or un-d... | laptop will not turn on, either docked or un-d... | eqcudbks zbjeqruy | GRP_3 | laptop will not turn on, either docked or un-d... | English |
| 5994 | once external monitor is not working and the o... | once external monitor is not working and the o... | raosetuv hmgwrkzb | GRP_3 | once external monitor is not working and the o... | English |
| 5995 | erp SID_34 password reset | erp SID_34 password reset | mzqgobhv pebimhfz | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 5996 | laufzeitfehler bei hrp (hcm production) | folgender fehler ist bei der erstellung der ze... | rayklfcm bjfwckyx | GRP_0 | laufzeitfehler bei hrp (hcm production) folgen... | German |
| 5997 | outlook hangs. | outlook hangs. | nsoikcyf jhybqael | GRP_0 | outlook hangs. outlook hangs. | English |
| 5998 | users in usa plant code plant_241 northgate ar... | users in usa plant code plant_241 northgate ar... | qomancfz esafqznm | GRP_4 | users in usa plant code plant_241 northgate ar... | English |
| 5999 | dmitazhw kxbifzoh : lock out | dmitazhw kxbifzoh : lock out \r\nmii system | epivntxc fdrxmuga | GRP_0 | dmitazhw kxbifzoh : lock out dmitazhw kxbifzo... | English |
| 6000 | ticket update on inplant_855076 | ticket update on inplant_855076 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_855076 ticket update ... | English |
| 6001 | we don't able to insert money value in crm's a... | we don't able to insert money value in crm's a... | swnjocmk etpuhnwg | GRP_13 | we don't able to insert money value in crm's a... | English |
| 6002 | unable to connect to vpn. | unable to connect to vpn. | xwzstlgj tzkbmgan | GRP_0 | unable to connect to vpn. unable to connect to... | English |
| 6003 | erp SID_37 issue | 800\nsummary:need help gaining access to a que... | qnvjhgmc nicvbrzg | GRP_0 | erp SID_37 issue 800\nsummary:need help gaini... | English |
| 6004 | login help to : hub | login help to : hub | abyfsqod baezguci | GRP_0 | login help to : hub login help to : hub | English |
| 6005 | please remove security role z:comp_sales_rep ... | please remove security role z:comp_sales_rep ... | aofextgk tugywidl | GRP_2 | please remove security role z:comp_sales_rep ... | English |
| 6006 | reset the password for btelgpcx nrlfhbmu on er... | reset the password for btelgpcx nrlfhbmu on er... | btelgpcx nrlfhbmu | GRP_0 | reset the password for btelgpcx nrlfhbmu on er... | English |
| 6007 | HostName_1294 (bia - search_server) : multiple... | search_serverrfcserver2\r\n search_serverinde... | oldrctiu bxurpsyi | GRP_14 | HostName_1294 (bia - search_server) : multiple... | English |
| 6008 | new password not updating in the windows | new password not updating in the windows | rbozivdq gmlhrtvp | GRP_0 | new password not updating in the windows new p... | English |
| 6009 | system frozen on startup | system frozen on startup | xlvuhjea mjugvtnd | GRP_0 | system frozen on startup system frozen on startup | Danish |
| 6010 | unable to view hr_tool global view and crm on ... | unable to view hr_tool global view and crm on ... | umkpayhc adflvbxg | GRP_0 | unable to view hr_tool global view and crm on ... | English |
| 6011 | skype not working | \n\nreceived from: yzugpdco.nsyapewg@gmail.com... | yzugpdco nsyapewg | GRP_0 | skype not working \n\nreceived from: yzugpdco.... | English |
| 6012 | hdmi cable to meeting room | \n\nreceived from: inxsupmy.zhwmifvx@gmail.com... | inxsupmy zhwmifvx | GRP_19 | hdmi cable to meeting room \n\nreceived from:... | English |
| 6013 | vpn access | \n\nreceived from: troxyekl.lzdvgwut@gmail.com... | troxyekl lzdvgwut | GRP_34 | vpn access \n\nreceived from: troxyekl.lzdvgwu... | English |
| 6014 | job Job_1314 failed in job_scheduler at: 08/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/29... | English |
| 6015 | unable to open opportunities in crm online | unable to open opportunities in crm online. us... | kzbrimwx dconpwbu | GRP_40 | unable to open opportunities in crm online una... | English |
| 6016 | password reset : password_management_tool pass... | password reset : password_management_tool pass... | nmftrwvi rchywvmz | GRP_0 | password reset : password_management_tool pass... | English |
| 6017 | open order schedule lines_p2016-08-28-22-03-54 | hallo ruchitgrr, hallo frau haug,\n\nleider en... | anivdcor rbmfhiox | GRP_9 | open order schedule lines_p2016-08-28-22-03-54... | English |
| 6018 | outlook inbox updating | \n\nreceived from: xfdkwusj.gyklresa@gmail.com... | xfdkwusj gyklresa | GRP_0 | outlook inbox updating \n\nreceived from: xfdk... | English |
| 6019 | ad locked out | ad locked out | ecpkblrs buzgjypk | GRP_0 | ad locked out ad locked out | English |
| 6020 | user wants to log in to infonet | user wants to log in to infonet | umkpayhc adflvbxg | GRP_0 | user wants to log in to infonet user wants to ... | English |
| 6021 | no access to netweaver | when i try to connect with netweaver these 2 m... | xqauilby muhkleyg | GRP_0 | no access to netweaver when i try to connect w... | English |
| 6022 | error code 0x0 when accessing user dashbankrd ... | when accessing dashbankrd created for ap manag... | cfzsajbe lyejkdho | GRP_40 | error code 0x0 when accessing user dashbankrd ... | English |
| 6023 | check router wifi (router: sao-pollaurido-merc... | hi team, please check the router wifi sao-poll... | qasdhyzm yuglsrwx | GRP_4 | check router wifi (router: sao-pollaurido-merc... | English |
| 6024 | account locked in ad | account locked in ad | tgynoqcs uxfyzrma | GRP_0 | account locked in ad account locked in ad | English |
| 6025 | job bkwin_HostName_768_inc failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bkwin_HostName_768_inc failed in job_sched... | English |
| 6026 | password unlock for venkthrysh | \n\nreceived from: nmtekfrz.tjxzeuqm@gmail.com... | nmtekfrz tjxzeuqm | GRP_0 | password unlock for venkthrysh \n\nreceived fr... | English |
| 6027 | wendt wac 745 quattro's 5 & 6 an pc bzw. serve... | bitte die letzten 2 umfangsschleifmaschinen in... | ajiqfrkz dolmpkqf | GRP_42 | wendt wac 745 quattro's 5 & 6 an pc bzw. serve... | German |
| 6028 | printer configuration. | 962\nsummary:i want to configure printer to my... | ilypdtno mkdfetuq | GRP_0 | printer configuration. 962\nsummary:i want to ... | English |
| 6029 | the tess application on citrix does not work a... | when i login to kas.company.com and try to sta... | oinqckds qieswrfu | GRP_12 | the tess application on citrix does not work a... | English |
| 6030 | it help | \r\n\r\nreceived from: scjxobhd.ldypjkmf@gmail... | scjxobhd ldypjkmf | GRP_28 | it help \r\n\r\nreceived from: scjxobhd.ldypjk... | English |
| 6031 | asking about cost of material of plant_82 | dear it team\n\ni have sent ticket to -erp-fic... | ihfkwzjd erbxoyqk | GRP_44 | asking about cost of material of plant_82 dear... | English |
| 6032 | unable to change my telephony_software passwor... | please change my telephony_software interactio... | fdmaluyo tvecikxn | GRP_7 | unable to change my telephony_software passwor... | English |
| 6033 | following up | hello it,\r\n\r\nplease can you block this ema... | pzybmcqd fxtemlyg | GRP_0 | following up hello it,\r\n\r\nplease can you b... | English |
| 6034 | connectivity issue at company carrier location | fya.\r\n\r\nbest | antigvjx zekluqim | GRP_4 | connectivity issue at company carrier location... | English |
| 6035 | erp SID_34 password reset | erp SID_34 password reset | fdbgoamk hygxzkla | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 6036 | job Job_593 failed in job_scheduler at: 08/29/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 08/29/... | English |
| 6037 | reset passwords for cesgrtar abgrtyreu using p... | the | btvmxdfc yfahetsc | GRP_17 | reset passwords for cesgrtar abgrtyreu using p... | English |
| 6038 | telefon-display | \r\n\r\nreceived from: pnroqajb.psbyfhkg@gmail... | pnroqajb psbyfhkg | GRP_33 | telefon-display \r\n\r\nreceived from: pnroqaj... | German |
| 6039 | business_client issue | :+49\nsummary:need netweaver to check drawing ... | cqwtksbu tgxockrn | GRP_0 | business_client issue :+49\nsummary:need netw... | English |
| 6040 | phone is not connoected wit caas server. | hello;\n\ni can't pick up the pone, this is th... | ualvjicz vtywmapl | GRP_7 | phone is not connoected wit caas server. hello... | English |
| 6041 | delievery item category determination | delievery item category determination for rl -... | sxkfbnaw ktbfuiah | GRP_45 | delievery item category determination deliever... | English |
| 6042 | access to common mail box | \r\n\r\nreceived from: pradtheypxsuqgidj.txlpc... | dgmpqzev aucvxzyp | GRP_0 | access to common mail box \r\n\r\nreceived fro... | English |
| 6043 | kurtyar khty | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | kurtyar khty \n\nreceived from: aksthyuhath.sh... | English |
| 6044 | vvrttraja | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | vvrttraja \n\nreceived from: aksthyuhath.shett... | English |
| 6045 | vpn router : company-eu-deu-germany-dmvpn-1811... | vpn router : company-eu-deu-germany-dmvpn-1811... | bjtguqne xthqrzpc | GRP_8 | vpn router : company-eu-deu-germany-dmvpn-1811... | English |
| 6046 | urgent shipping issue. | hello wohtyugang and ethryju. we have a critic... | hbmwlprq ilfvyodx | GRP_21 | urgent shipping issue. hello wohtyugang and et... | English |
| 6047 | complaint 7611183254 / workfflow | i create a complaint 7611183254\r\nthe compla... | cdbhoxir vlpkithu | GRP_13 | complaint 7611183254 / workfflow i creat... | English |
| 6048 | anmeldeaccount "mp_ek" am pc "empw8111328a:--... | am oben genannten pc muss der anmeldename "mp_... | lzcvymbn lqnaykvo | GRP_0 | anmeldeaccount "mp_ek" am pc "empw8111328a:--... | German |
| 6049 | monitor tauschen \htvepyua izgulrcf | monitor tauschen \htvepyua izgulrcf | htvepyua izgulrcf | GRP_24 | monitor tauschen \htvepyua izgulrcf monitor ta... | German |
| 6050 | customer name "hronovsky" does not listed in e... | name:rekmqxfn jctgwmyi\nlanguage:\nbrowser:mic... | rekmqxfn jctgwmyi | GRP_25 | customer name "hronovsky" does not listed in e... | English |
| 6051 | netzwerk für scan nicht verfügbar, bitte prÃ... | netzwerk für scan nicht verfügbar, bitte prÃ... | vzqomdgt jwoqbuml | GRP_24 | netzwerk für scan nicht verfügbar, bitte prÃ... | German |
| 6052 | zeitwirtschaft germany | seit 25.08.2016, 6.00 uhr morgens, sind für w... | yjofqlrx aqvxfhmn | GRP_25 | zeitwirtschaft germany seit 25.08.2016, 6.00 u... | English |
| 6053 | probleme mit we_wu123 \xwirzvda okhyipgr | probleme mit we_wu123 \xwirzvda okhyipgr | xwirzvda okhyipgr | GRP_24 | probleme mit we_wu123 \xwirzvda okhyipgr probl... | English |
| 6054 | probleme mit kiosk\ompeztak ilkpqtjh \bur am orde | probleme mit kiosk\ompeztak ilkpqtjh \bur am orde | xwirzvda okhyipgr | GRP_24 | probleme mit kiosk\ompeztak ilkpqtjh \bur am o... | Galician |
| 6055 | sql installation | sql software installation | lynrwzfj fvijyeta | GRP_19 | sql installation sql software installation | English |
| 6056 | we 108 scannt nicht mehr | hallo ,\r\n\r\nunser drucker we 108 scannt nic... | whykbjdq gfqlnysm | GRP_24 | we 108 scannt nicht mehr hallo ,\r\n\r\nunser... | German |
| 6057 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | ipwjorsc uboapexr | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 6058 | reset passwords for bxeagsmt zrwdgsco using pa... | the | bxeagsmt zrwdgsco | GRP_17 | reset passwords for bxeagsmt zrwdgsco using pa... | English |
| 6059 | password reset | \r\n\r\nreceived from: htburown.hpkfjqyr@gmail... | htburown hpkfjqyr | GRP_0 | password reset \r\n\r\nreceived from: htburow... | English |
| 6060 | HostName_895 is down since 03:04 am et on 08/29. | HostName_895 is down since 03:04 am et on 08/2... | spxqmiry zpwgoqju | GRP_12 | HostName_895 is down since 03:04 am et on 08/2... | English |
| 6061 | help to create delivery for sto 4908050542 | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_6 | help to create delivery for sto 4908050542 \r\... | English |
| 6062 | cannot login | good morning,\n\nwe cannot login to SID_1 due ... | fmqubnvs kcxpeyiv | GRP_0 | cannot login good morning,\n\nwe cannot login ... | English |
| 6063 | user account is being locked again - zhrgtangs7 | \n\nreceived from: kbclinop.vsczklfp@gmail.com... | kbclinop vsczklfp | GRP_0 | user account is being locked again - zhrgtangs... | English |
| 6064 | engineering_tool installation issue for distri... | detailed description of the problem including ... | rsgqbuln pevsanuf | GRP_0 | engineering_tool installation issue for distri... | English |
| 6065 | problem beim skannen von unterlagen | \n\nreceived from: jctnelqs.lansuiwe@gmail.com... | jctnelqs lansuiwe | GRP_0 | problem beim skannen von unterlagen \n\nreceiv... | German |
| 6066 | ms office 2016 installation wird nicht abgesch... | office installation wird nicht abgeschlossen! | yvjdluhk hmcpvtdj | GRP_0 | ms office 2016 installation wird nicht abgesch... | German |
| 6067 | tr: rappel: vous avez un nouveau message ! ***... | \r\n\r\nreceived from: hupnceij.hyozjakb@gmail... | hupnceij hyozjakb | GRP_0 | tr: rappel: vous avez un nouveau message ! ***... | English |
| 6068 | scannen funktioniert nicht | scannen auf publik beim drucker mp60 funktioni... | nzpgwjsa perajnvh | GRP_33 | scannen funktioniert nicht scannen auf publik ... | German |
| 6069 | zlgmctws khfjzyto don´t have access to her co... | \r\n\r\nreceived from: qbewrpfu.lwibmxzo@gmail... | qbewrpfu lwibmxzo | GRP_0 | zlgmctws khfjzyto don´t have access to her co... | English |
| 6070 | account locked out and password reset | account locked out and password reset | cobsfvjz apkqmrdu | GRP_0 | account locked out and password reset account... | English |
| 6071 | erp password locked | \r\n\r\nreceived from: gnasmtvx.cwxtsvkm@gmail... | gnasmtvx cwxtsvkm | GRP_0 | erp password locked \r\n\r\nreceived from: gna... | English |
| 6072 | scanner im werk germany steel funktionieren ni... | for your information: ngprt29, the printer name | azmbnwgp qbrucnpm | GRP_0 | scanner im werk germany steel funktionieren ni... | English |
| 6073 | job Job_1338 failed in job_scheduler at: 08/29... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 08/29... | English |
| 6074 | laptop key bankrd not working | please do the needful.\n\nfor company\nathjyul... | qubywmgf jouickqx | GRP_19 | laptop key bankrd not working please do the ne... | English |
| 6075 | not able to print on id02 | not able to print on id02 | qycgdfhz iqshzdru | GRP_19 | not able to print on id02 not able to print on... | English |
| 6076 | scannen vom scanner vh48 geht nicht mit dem hi... | scannen vom scanner vh48 geht nicht mit dem hi... | yvjdluhk hmcpvtdj | GRP_0 | scannen vom scanner vh48 geht nicht mit dem hi... | German |
| 6077 | our printer rn33 at plant_223 doesn't work | hello,\r\nour printer rn33 at plant_223 for pr... | yfmaqovp wdonhbez | GRP_33 | our printer rn33 at plant_223 doesn't work hel... | English |
| 6078 | beim scannen von aufträgen kommt die meldung ... | beim scannen von aufträgen kommt die meldung ... | kiqrvwat gwkpxzyt | GRP_33 | beim scannen von aufträgen kommt die meldung ... | German |
| 6079 | nx is not opening through extr but nx power dr... | name:megfgthyhana\nlanguage:\nbrowser:microsof... | pkzthgea kgvsdmpj | GRP_0 | nx is not opening through extr but nx power dr... | English |
| 6080 | erp login error | \r\n\r\nreceived from: rmezbnqt.ntbmkpuh@gmail... | rmezbnqt ntbmkpuh | GRP_0 | erp login error \r\n\r\nreceived from: rmezbnq... | English |
| 6081 | account information updated | hi, \r\n\r\ncould you please confirm whether t... | cqargubj krdxbfqh | GRP_0 | account information updated hi, \r\n\r\ncould ... | English |
| 6082 | wi fi connectivity issues | \n\nreceived from: dshferby.houtnzdi@gmail.com... | dshferby houtnzdi | GRP_4 | wi fi connectivity issues \n\nreceived from: d... | English |
| 6083 | telecom_vendor_2 card is not working | telecom_vendor_2 card is not working | lorszemd waotbgrv | GRP_0 | telecom_vendor_2 card is not working telecom_... | English |
| 6084 | power is not working | computer wont turn on \r\npower is not working | asthifne baehplqt | GRP_19 | power is not working computer wont turn on \r\... | English |
| 6085 | account locked out and password reset | account locked out and password reset | tgynoqcs uxfyzrma | GRP_0 | account locked out and password reset account... | English |
| 6086 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | tgynoqcs uxfyzrma | GRP_0 | request to reset microsoft online services pas... | English |
| 6087 | mobile device activation | from: hzudxyqb qsmrwvle \r\nsent: monday, augu... | hzudxyqb qsmrwvle | GRP_0 | mobile device activation from: hzudxyqb qsmrwv... | English |
| 6088 | outlook not working | name:vivian kurtyar \nlanguage:\nbrowser:micro... | jecigpzw gqpmxwal | GRP_0 | outlook not working name:vivian kurtyar \nlang... | English |
| 6089 | erp not working | \r\n\r\nreceived from: irqpwgtn.dpautgeh@gmail... | irqpwgtn dpautgeh | GRP_0 | erp not working \r\n\r\nreceived from: irqpwg... | English |
| 6090 | error while changing password in password_mana... | error while changing password in password_mana... | ythucdjx mujfrsyl | GRP_0 | error while changing password in password_mana... | English |
| 6091 | please help to unlock pw for user: zhrgtangs7 | \r\n\r\nreceived from: kbclinop.vsczklfp@gmail... | kbclinop vsczklfp | GRP_0 | please help to unlock pw for user: zhrgtangs7 ... | English |
| 6092 | job hr_payroll_na_u1 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u1 failed in job_scheduler a... | English |
| 6093 | job hr_payroll_na_u6 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u6 failed in job_scheduler a... | English |
| 6094 | job hr_payroll_na_u2 failed in job_scheduler a... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job hr_payroll_na_u2 failed in job_scheduler a... | English |
| 6095 | windows account locked | windows account locked | tqaevrng hpocnrvj | GRP_0 | windows account locked windows account locked | English |
| 6096 | not able to login attendance_tool | i am not able to login attendance_tool applica... | cgvhxjay znyuopqk | GRP_0 | not able to login attendance_tool i am not abl... | English |
| 6097 | apac china pbx/telephony_software system issue | apac china& dc have ip phone issue, one e1 lin... | bqdyhnoj rwyvsfgn | GRP_37 | apac china pbx/telephony_software system issue... | English |
| 6098 | 电脑密ç åŒæ¥é—®é¢˜ | hi gartryhu,\r\n\r\næˆ‘çŽ°åœ¨ç”µè„‘æœ‰å‡ ä¸ªé—... | pqaoenuv dqythubf | GRP_31 | 电脑密ç åŒæ¥é—®é¢˜ hi gartryhu,\r\n\r\næ... | Tsonga |
| 6099 | shipping notice | from: north service \nsent: monday, august 29,... | qgrbdnoc dgupnhxv | GRP_18 | shipping notice from: north service \nsent: mo... | English |
| 6100 | skype could not work | skype could not work ,can not hear anything | qpysibeo zpekrnbu | GRP_0 | skype could not work skype could not work ,c... | English |
| 6101 | laptop slowness issue | laptop slowness while using multiple apps at a... | spxqmiry zpwgoqju | GRP_19 | laptop slowness issue laptop slowness while us... | English |
| 6102 | wgq dcæ‰€æœ‰ç”µè¯æ— 法拨通外线 | wgq dcæ‰€æœ‰ç”µè¯æ— 法拨通外线。 | wktesmbp lorjymef | GRP_31 | wgq dcæ‰€æœ‰ç”µè¯æ— 法拨通外线 wgq dc所... | English |
| 6103 | wireless outage again-taiwan 0829 | \r\n\r\nreceived from: ticqvhal.vgokzesi@gmail... | ticqvhal vgokzesi | GRP_4 | wireless outage again-taiwan 0829 \r\n\r\nrece... | English |
| 6104 | request to reset microsoft online services pa... | request to reset microsoft online services pa... | nhjpxoct ewngozhx | GRP_0 | request to reset microsoft online services pa... | English |
| 6105 | job bk_hana_SID_61_erp_wly_dp failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job bk_hana_SID_61_erp_wly_dp failed in job_sc... | English |
| 6106 | 电脑ä¸èƒ½å¼€æœº | 早上上ç电脑打ä¸å¼€ã€‚ | mzerdtop xnlytczj | GRP_30 | 电脑ä¸èƒ½å¼€æœº 早上上ç电脑打ä¸å¼€ã€‚ | English |
| 6107 | engineering tool access requested | engineering tool access requested | ajdcnwtb bvijwxko | GRP_0 | engineering tool access requested engineering ... | English |
| 6108 | broken client anti virus | broken client anti virus | cvqnstgu ofnimlwx | GRP_0 | broken client anti virus broken client anti v... | English |
| 6109 | job Job_1306 failed in job_scheduler at: 08/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1306 failed in job_scheduler at: 08/28... | English |
| 6110 | job Job_551 failed in job_scheduler at: 08/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_551 failed in job_scheduler at: 08/28/... | English |
| 6111 | job Job_3194 failed in job_scheduler at: 08/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3194 failed in job_scheduler at: 08/28... | English |
| 6112 | job snp_heu_5_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_5_regen failed in job_scheduler at... | English |
| 6113 | job bk_hana_SID_62_erp_wly_dp failed in job_sc... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bk_hana_SID_62_erp_wly_dp failed in job_sc... | English |
| 6114 | HostName_1304 :volume consumed on /dev/mksysba... | HostName_1304 :volume consumed on /dev/mksysba... | oldrctiu bxurpsyi | GRP_47 | HostName_1304 :volume consumed on /dev/mksysba... | English |
| 6115 | unable to approve expense report 2111137500 | from: proygkjt mwetuhqf \nsent: sunday, august... | proygkjt mwetuhqf | GRP_0 | unable to approve expense report 2111137500 f... | English |
| 6116 | job Job_504 failed in job_scheduler at: 08/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_504 failed in job_scheduler at: 08/28/... | English |
| 6117 | job Job_494 failed in job_scheduler at: 08/28/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_494 failed in job_scheduler at: 08/28/... | English |
| 6118 | job Job_1314 failed in job_scheduler at: 08/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/28... | English |
| 6119 | power outage:usa- (company) - divestiture site... | what type of outage: __x___network _____c... | oldrctiu bxurpsyi | GRP_8 | power outage:usa- (company) - divestiture site... | English |
| 6120 | 134 occurrences of your firewall company-europ... | dsw\r\n\r\nin33727185incident overview\r\n====... | afkstcev utbnkyop | GRP_12 | 134 occurrences of your firewall company-europ... | English |
| 6121 | job snp_heu_1_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_1_regen failed in job_scheduler at... | English |
| 6122 | in HostName_968, HostName_107, HostName_520 s... | in HostName_968, HostName_107, HostName_520 s... | uvrbhlnt bjrmalzi | GRP_14 | in HostName_968, HostName_107, HostName_520 s... | English |
| 6123 | job Job_1338 failed in job_scheduler at: 08/28... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1338 failed in job_scheduler at: 08/28... | English |
| 6124 | please reset telephony_software password for: ... | please reset telephony_software password\nname... | wqfzjycu omleknjd | GRP_0 | please reset telephony_software password for: ... | English |
| 6125 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | English |
| 6126 | job Job_3050 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_45 | job Job_3050 failed in job_scheduler at: 08/27... | English |
| 6127 | skype for business is shutting down when start... | the error message is "skype for business has s... | kpnzvsuw lwmqyjbv | GRP_0 | skype for business is shutting down when start... | English |
| 6128 | india:switch company-ap-ind-pu4-2960s-stack-sw... | india:switch company-ap-ind-pu4-2960s-stack-sw... | jloygrwh acvztedi | GRP_8 | india:switch company-ap-ind-pu4-2960s-stack-sw... | English |
| 6129 | job Job_749 failed in job_scheduler at: 08/27/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_749 failed in job_scheduler at: 08/27/... | English |
| 6130 | job Job_749 failed in job_scheduler at: 08/27/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_749 failed in job_scheduler at: 08/27/... | English |
| 6131 | job SID_39hotf failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_39hotf failed in job_scheduler at: 08/... | English |
| 6132 | job SID_48hotf failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job SID_48hotf failed in job_scheduler at: 08/... | English |
| 6133 | job Job_729 failed in job_scheduler at: 08/27/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_729 failed in job_scheduler at: 08/27/... | English |
| 6134 | job SID_55apps failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_55apps failed in job_scheduler at: 08/... | English |
| 6135 | problem report from pwr8hmc1.hq.company.com;pm... | reporting system: 2-hq-dev2-9119-mme-sn21a9bf7... | oldrctiu bxurpsyi | GRP_47 | problem report from pwr8hmc1.hq.company.com;pm... | English |
| 6136 | company-na-usa-usa-eh-media-2960-access-sw07 s... | company-na-usa-usa-eh-media-2960-access-sw07 s... | dkmcfreg anwmfvlg | GRP_8 | company-na-usa-usa-eh-media-2960-access-sw07 s... | English |
| 6137 | job Job_1925 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1925 failed in job_scheduler at: 08/27... | English |
| 6138 | cannot connect to internet although wifi conne... | \r\n\r\nreceived from: ugephfta.hrbqkvij@gmail... | ugephfta hrbqkvij | GRP_0 | cannot connect to internet although wifi conne... | English |
| 6139 | job Job_1989 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1989 failed in job_scheduler at: 08/27... | English |
| 6140 | job Job_2071 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2071 failed in job_scheduler at: 08/27... | English |
| 6141 | job Job_1989 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1989 failed in job_scheduler at: 08/27... | English |
| 6142 | job Job_1910 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1910 failed in job_scheduler at: 08/27... | English |
| 6143 | job Job_1906 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1906 failed in job_scheduler at: 08/27... | English |
| 6144 | job Job_1904 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1904 failed in job_scheduler at: 08/27... | English |
| 6145 | HostName_53:volume: f:\ label:dat2-HostName_53... | HostName_53:volume: f:\ label:dat2-HostName_53... | oldrctiu bxurpsyi | GRP_12 | HostName_53:volume: f:\ label:dat2-HostName_53... | English |
| 6146 | 'repeat outbound connection for 135/tcp' | dsw in33693734\r\n\r\nwe are seeing your 80.71... | afkstcev utbnkyop | GRP_50 | 'repeat outbound connection for 135/tcp' dsw ... | English |
| 6147 | repeat outbound connection for 135/tcp | dsw in33604236\r\n\r\nincident overview\r\n===... | afkstcev utbnkyop | GRP_3 | repeat outbound connection for 135/tcp dsw in3... | English |
| 6148 | 29866 vid22518 bare http get executable from i... | dsw in33608874\r\n\r\n received alert(s) for s... | afkstcev utbnkyop | GRP_30 | 29866 vid22518 bare http get executable from i... | English |
| 6149 | 54.96.80.216/att-apac-asa.company.com-1 device... | dsw in33715799\r\n\r\nwe are seeing your 54.96... | afkstcev utbnkyop | GRP_19 | 54.96.80.216/att-apac-asa.company.com-1 device... | English |
| 6150 | job Job_1314 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/27... | English |
| 6151 | network outage: usa - (company inc) network is... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: usa - (company inc) network is... | English |
| 6152 | emails not updating | emails not updating | vktxjamz whbdetvp | GRP_0 | emails not updating emails not updating | English |
| 6153 | job Job_1898 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1898 failed in job_scheduler at: 08/27... | English |
| 6154 | HostName_148(SID_24): volume consumed on /dev/... | HostName_148(SID_24): volume consumed on /dev/... | dkmcfreg anwmfvlg | GRP_47 | HostName_148(SID_24): volume consumed on /dev/... | English |
| 6155 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 6156 | ms outlook 2010, not accepting password. | ms outlook 2010, not accepting password. | vpityxbu qktwepmz | GRP_0 | ms outlook 2010, not accepting password. ms ou... | English |
| 6157 | job Job_3190 failed in job_scheduler at: 08/27... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_10 | job Job_3190 failed in job_scheduler at: 08/27... | English |
| 6158 | erp password locked | \n\nreceived from: gnasmtvx.cwxtsvkm@gmail.com... | gnasmtvx cwxtsvkm | GRP_0 | erp password locked \n\nreceived from: gnasmtv... | English |
| 6159 | how to access drwgs from net weaver | name:jvpkulxw ovuweygj\nlanguage:\nbrowser:mic... | jvpkulxw ovuweygj | GRP_0 | how to access drwgs from net weaver name:jvpku... | English |
| 6160 | job HostName_1019fail_uacyltoe hxgaycze failed... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail_uacyltoe hxgaycze failed... | English |
| 6161 | job Job_3028 failed in job_scheduler at: 08/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_45 | job Job_3028 failed in job_scheduler at: 08/26... | English |
| 6162 | circuit outage :germany -company(werkzeuge & h... | what type of outage: _____network __x___c... | jloygrwh acvztedi | GRP_8 | circuit outage :germany -company(werkzeuge & h... | English |
| 6163 | unable to sync with one note files | unable to sync with one note files | xbkucsvz gcpydteq | GRP_16 | unable to sync with one note files unable to ... | English |
| 6164 | problems weekly report | \r\n\r\nreceived from: jokgacwd.hdfcwust@gmail... | jokgacwd hdfcwust | GRP_0 | problems weekly report \r\n\r\nreceived from: ... | English |
| 6165 | collaboration_platform assistance | \r\n\r\nreceived from: wjpncyef.tspnaimc@gmail... | wjpncyef tspnaimc | GRP_16 | collaboration_platform assistance \r\n\r\nrece... | English |
| 6166 | cannot use skype for business with full audio ... | any skype meeting used must be entered with "c... | vkpwnqay rmwxqoba | GRP_0 | cannot use skype for business with full audio ... | English |
| 6167 | job HostName_1019failagain_emb1 failed in job_... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job HostName_1019failagain_emb1 failed in job_... | English |
| 6168 | job HostName_1019fail_emb1 failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job HostName_1019fail_emb1 failed in job_sched... | English |
| 6169 | connecting to vpn | connecting to vpn | oqvwgnkc gkjylpzx | GRP_0 | connecting to vpn connecting to vpn | English |
| 6170 | unable to scan from the hp all in one printer | unable to scan from the hp all in one printer | fydosbih lafdsumb | GRP_0 | unable to scan from the hp all in one printer ... | English |
| 6171 | unable to submit expense report | unable to submit expense report | yxsermtd vloueirh | GRP_0 | unable to submit expense report unable to subm... | English |
| 6172 | reset the password for ljpgedia bzqcwsgf on er... | reset the password for ljpgedia bzqcwsgf on er... | ljpgedia bzqcwsgf | GRP_0 | reset the password for ljpgedia bzqcwsgf on er... | English |
| 6173 | updating password on password_management_tool | updating password on password_management_tool | ijplstng juybetlo | GRP_0 | updating password on password_management_tool ... | English |
| 6174 | vpn | \r\n\r\nreceived from: peojqgvm.qayeptuo@gmail... | peojqgvm qayeptuo | GRP_0 | vpn \r\n\r\nreceived from: peojqgvm.qayeptuo@g... | English |
| 6175 | bex not loading all environment | bex addin is not showing all environment(SID_3... | pnwcubqr qdlocnzt | GRP_9 | bex not loading all environment bex addin is n... | English |
| 6176 | ie settings | ie settings | ijplstng juybetlo | GRP_0 | ie settings ie settings | English |
| 6177 | unable to install draftsight on the pc | unable to install draftsight on the pc | jgxclrzp jzeantui | GRP_0 | unable to install draftsight on the pc unable... | English |
| 6178 | unable to connect to skype | unable to connect to skype | xklpahsd nyxtoazm | GRP_0 | unable to connect to skype unable to connect t... | English |
| 6179 | remove ukxtqfda qvtaykbg from telephony_softwa... | employee took vsp therefore, remove ukxtqfda q... | aqtcmxuf kuxsnimy | GRP_7 | remove ukxtqfda qvtaykbg from telephony_softwa... | English |
| 6180 | weekly report error message | \r\n\r\nreceived from: mrczxwje.ocasryzq@gmail... | mrczxwje ocasryzq | GRP_0 | weekly report error message \r\n\r\nreceived f... | German |
| 6181 | outlook is not opening | outlook is not opening | vitpjxgm zxiqkrns | GRP_27 | outlook is not opening outlook is not opening | English |
| 6182 | erp password reset urgent account got locked out | erp password reset. account got locked out. | pqbnkgtc yhcfqozs | GRP_0 | erp password reset urgent account got locked o... | English |
| 6183 | unable to login to skype | unable to login to skype | qwijaspo ukynmfig | GRP_0 | unable to login to skype unable to login to skype | English |
| 6184 | two analog lines not working with new phone sy... | need two analog lines turned back on immediate... | csyigtrb gkvbjuto | GRP_3 | two analog lines not working with new phone sy... | English |
| 6185 | password has expired | password has expired | nsgeatyf qbyfiajo | GRP_0 | password has expired password has expired | English |
| 6186 | agents are not receiving revenue | the agents are not receiving the correct amoun... | aofextgk tugywidl | GRP_25 | agents are not receiving revenue the agents ar... | English |
| 6187 | usa orders showing up in the us_plant to-do list | both locations have a work center 81821121 def... | wxnetroc yecbmliq | GRP_41 | usa orders showing up in the us_plant to-do li... | English |
| 6188 | erp issues | \r\n\r\nreceived from: raifstow.gfeymtql@gmail... | raifstow gfeymtql | GRP_14 | erp issues \r\n\r\nreceived from: raifstow.gfe... | English |
| 6189 | engineering_tool error | engineering_tool error | ioulqtmk dqevzrsg | GRP_0 | engineering_tool error engineering_tool error | English |
| 6190 | reset ess password | reset ess password | apgukfow soqdkxtb | GRP_0 | reset ess password reset ess password | English |
| 6191 | not able to do pgi for deliveries 9168017962/8... | delivery 9168017962 customer 81295213 - itens... | jaeuqbvt orlhenfj | GRP_44 | not able to do pgi for deliveries 9168017962/8... | English |
| 6192 | unable to check emails / doesn't sync // accou... | unable to remove/add/repair email account from... | zlxcsqdg ckpojwir | GRP_33 | unable to check emails / doesn't sync // accou... | English |
| 6193 | query : attendance_tool account. | query : attendance_tool account. | ckswypji vrucgqna | GRP_0 | query : attendance_tool account. query : atte... | English |
| 6194 | ticket update on ticket_no0433866 | ticket update on ticket_no0433866 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0433866 ticket updat... | English |
| 6195 | erp delivery issues | \r\n\r\nreceived from: raifstow.gfeymtql@gmail... | raifstow gfeymtql | GRP_13 | erp delivery issues \r\n\r\nreceived from: rai... | English |
| 6196 | nicrhty wanted to set ooo from ofwxjriq rwcxkf... | nicrhty wanted to set ooo from ofwxjriq rwcxkf... | frhqlxst gedzxkry | GRP_0 | nicrhty wanted to set ooo from ofwxjriq rwcxkf... | English |
| 6197 | require crm access in android phone | \r\n\r\nreceived from: luxdnsvk.qmnyzcfs@gmail... | luxdnsvk qmnyzcfs | GRP_0 | require crm access in android phone \r\n\r\nre... | English |
| 6198 | ng_azubi locked | ng_azubi locked | nrlhywbm sxhtogly | GRP_34 | ng_azubi locked ng_azubi locked | Ganda |
| 6199 | ng_azubi locked. | ng_azubi locked. | plfwoagd chtpiazu | GRP_0 | ng_azubi locked. ng_azubi locked. | Ganda |
| 6200 | final quota warning | hello,\r\n\r\ncan you please help me on traili... | ygkzwsud cvjgkxws | GRP_0 | final quota warning hello,\r\n\r\ncan you plea... | English |
| 6201 | erp SID_34 account locked | erp SID_34 account locked | mjsvgrfo nvpblgyd | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 6202 | mobile device support | \r\n\r\nreceived from: ebqdmgpk.daoyrtmj@gmail... | ebqdmgpk daoyrtmj | GRP_0 | mobile device support \r\n\r\nreceived from: e... | English |
| 6203 | support für umbau \ ewew8323862 \xwirzvda okh... | support für umbau \ ewew8323862 \xwirzvda okh... | xwirzvda okhyipgr | GRP_24 | support für umbau \ ewew8323862 \xwirzvda okh... | English |
| 6204 | password expired | password expired | oblsreqg vafkmznt | GRP_0 | password expired password expired | English |
| 6205 | close line item on order 19101476 | hi,\r\nplease close line item 91 on order numb... | cqrmewsi xypfqhid | GRP_13 | close line item on order 19101476 hi,\r\npleas... | English |
| 6206 | job Job_1314 failed in job_scheduler at: 08/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/26... | English |
| 6207 | unable to change password on password_manageme... | unable to change password on password_manageme... | lqzrgsko yaixmtqs | GRP_0 | unable to change password on password_manageme... | English |
| 6208 | it help for engineering_tool and engineering_... | dear sir,\r\n\r\nplease help to download softw... | vxhyftae tbkyfdli | GRP_0 | it help for engineering_tool and engineering_... | English |
| 6209 | account getting locked frequently | account getting locked frequently. user change... | hotwlygp afukzhnm | GRP_0 | account getting locked frequently account gett... | English |
| 6210 | wrong commited dates for 1409 on orders and qu... | team, since yesterday we noticed that the comm... | djpwfxzt cfkwxlmq | GRP_6 | wrong commited dates for 1409 on orders and qu... | English |
| 6211 | it - erp | \r\n\r\nreceived from: kehtxprg.uekapfzt@gmail... | kehtxprg uekapfzt | GRP_2 | it - erp \r\n\r\nreceived from: kehtxprg.uekap... | English |
| 6212 | laptop charge, network cable not working in ou... | laptop charge, network cable not working in ou... | mnxbeuso rfmdlwuo | GRP_19 | laptop charge, network cable not working in ou... | English |
| 6213 | wrong nxd in plm | \r\n\r\nreceived from: vahqkojb.trlapeso@gmail... | vahqkojb trlapeso | GRP_11 | wrong nxd in plm \r\n\r\nreceived from: vahqko... | English |
| 6214 | requesting for dock station and add-on monitor | hi team,\r\n\r\ni am requesting for dock stati... | gpabsizh txldupyk | GRP_19 | requesting for dock station and add-on monitor... | English |
| 6215 | support für umbau \ewew8323735 \lpfzasmv cleo... | support für umbau \ewew8323735 \lpfzasmv cleo... | lpfzasmv cleoprzq | GRP_24 | support für umbau \ewew8323735 \lpfzasmv cleo... | English |
| 6216 | probleme mit rechner ewewx200257 \howfanzi sia... | probleme mit rechner ewewx200257 \howfanzi sia... | howfanzi siavgtby | GRP_24 | probleme mit rechner ewewx200257 \howfanzi sia... | German |
| 6217 | probleme mit infostand \ewew8323718 | probleme mit infostand \ewew8323718 | niptbwdq csenjruz | GRP_24 | probleme mit infostand \ewew8323718 probleme ... | Danish |
| 6218 | support für stöhrmann \xosdfhbu gtbfkisl | support für stöhrmann \xosdfhbu gtbfkisl | xosdfhbu gtbfkisl | GRP_24 | support für stöhrmann \xosdfhbu gtbfkisl sup... | Waray |
| 6219 | authorisation to the folder in m drive - qa fo... | \n\nreceived from: rjanhbde.owfkyjcp@gmail.com... | isuclrnw hxrtkiws | GRP_12 | authorisation to the folder in m drive - qa fo... | English |
| 6220 | problem with erp logon | \r\n\r\nreceived from: zaeduhlt.jdgsamtv@gmail... | zaeduhlt jdgsamtv | GRP_0 | problem with erp logon \r\n\r\nreceived from: ... | English |
| 6221 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 6222 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 6223 | pls install ms outlook at pc of trainee yqwuhz... | pls install ms outlook at pc of trainee yqwuhz... | vwpxjtof vmidzswj | GRP_33 | pls install ms outlook at pc of trainee yqwuhz... | English |
| 6224 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 6225 | windows activation message | \r\n\r\nreceived from: tzradpnj.izlotycb@gmail... | tzradpnj izlotycb | GRP_0 | windows activation message \r\n\r\nreceived fr... | English |
| 6226 | passwort entsperrung erp SID_34 | \r\n\r\nreceived from: plfwoagd.chtpiazu@gmail... | plfwoagd chtpiazu | GRP_0 | passwort entsperrung erp SID_34 \r\n\r\nreceiv... | German |
| 6227 | vvdortddp | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | vvdortddp \n\nreceived from: aksthyuhath.shett... | English |
| 6228 | no acces to the network with pc ewewx200257 in... | no acces to the network with pc 200257 in depa... | lpfzasmv cleoprzq | GRP_24 | no acces to the network with pc ewewx200257 in... | English |
| 6229 | \\HostName_29\kt-transition\applications\porta... | \\HostName_29\kt-transition\applications\porta... | ungoxpdc hmxwuyog | GRP_12 | \\HostName_29\kt-transition\applications\porta... | English |
| 6230 | manually constructed have 3 new numbers in the... | manually constructed have 3 new numbers in the... | rugphfdi trlshejc | GRP_29 | manually constructed have 3 new numbers in the... | English |
| 6231 | aufstellung ordnerzugriff | \n\nreceived from: wtxvqngf.nxjivlmr@gmail.com... | wtxvqngf nxjivlmr | GRP_34 | aufstellung ordnerzugriff \n\nreceived from: ... | German |
| 6232 | stamping of timings in EU_tool is not working | pulvermetalogy ee01\r\nstaeberoth fertigung ee... | mstnjfai xcobykhl | GRP_25 | stamping of timings in EU_tool is not working ... | English |
| 6233 | issue with erp SID_1 | issue with erp SID_1 \r\npage is not loading | djpwfxzt cfkwxlmq | GRP_0 | issue with erp SID_1 issue with erp SID_1 \r\... | English |
| 6234 | outlook email access for felix zhang ; mobile ... | \r\n\r\nreceived from: kbclinop.vsczklfp@gmail... | kbclinop vsczklfp | GRP_0 | outlook email access for felix zhang ; mobile ... | English |
| 6235 | error on ddeihrsh sigrtyhdeo's laptop | \r\n\r\nreceived from: kbclinop.vsczklfp@gmail... | kbclinop vsczklfp | GRP_19 | error on ddeihrsh sigrtyhdeo's laptop \r\n\r\... | English |
| 6236 | material issue | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_29 | material issue \n\nreceived from: wktesmbp.lor... | English |
| 6237 | tablet - dell 7350 - 电脑开机å¯åЍè“å± | please provide details of the issue.\r\n电脑... | rbkvofgu jthclzow | GRP_31 | tablet - dell 7350 - 电脑开机å¯åЍè“å± ... | English |
| 6238 | can not post dn# 9169142692 due to batch issue | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_18 | can not post dn# 9169142692 due to batch issue... | English |
| 6239 | laptop doesn't access with network | laptop doesn't access with network | zjwecphr swhkzyfq | GRP_31 | laptop doesn't access with network laptop doe... | English |
| 6240 | vpn login issue : account lock out | vpn login issue : account lock out | vfoyenlw ntpbdeyf | GRP_0 | vpn login issue : account lock out vpn login ... | English |
| 6241 | mobile device activation : company provided | mobile device activation : company provided | ckwfvyda saunmgqt | GRP_0 | mobile device activation : company provided m... | English |
| 6242 | sql error 2048 in SID_1 erp system | there are are more than 15+ dumps in st22 with... | vradzimk xvmcoskl | GRP_14 | sql error 2048 in SID_1 erp system there are a... | English |
| 6243 | cartridge id02 | printer cartridge replacement on the printer | ipqgrnxk acxedqjm | GRP_19 | cartridge id02 printer cartridge replacement o... | English |
| 6244 | ie not launching | ie not launching \r\n\r\ntried opening in safe... | spxqmiry zpwgoqju | GRP_0 | ie not launching ie not launching \r\n\r\ntri... | English |
| 6245 | ad account lock out and password reset through... | ad account lock out and password reset through... | hotwlygp afukzhnm | GRP_0 | ad account lock out and password reset through... | English |
| 6246 | delete of history/ cache in seocompanyxv syxew... | delete of history/ cache in seocompanyxv syxew... | sholvcmf bjtpomrl | GRP_19 | delete of history/ cache in seocompanyxv syxew... | English |
| 6247 | defekt kopierer k 13 | kopierer ausbildungswerkstatt k 13 defekt. feh... | tgpvrbyi ztdxwpcn | GRP_42 | defekt kopierer k 13 kopierer ausbildungswerks... | German |
| 6248 | ad account locked out | ad account locked out \n:520056771751\nsummary... | isbczxtu gvxureqa | GRP_0 | ad account locked out ad account locked out \... | English |
| 6249 | skype issue : unable to make or receive calls ... | unable to make or receive calls in skype. most... | aiprzulo lzvmgqwy | GRP_0 | skype issue : unable to make or receive calls ... | English |
| 6250 | r101 drucker defekt | r101 drucker defekt | mhvbnqri sacvgzxf | GRP_33 | r101 drucker defekt r101 drucker defekt | English |
| 6251 | job Job_3028 failed in job_scheduler at: 08/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/26... | English |
| 6252 | job Job_3028 failed in job_scheduler at: 08/26... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/26... | English |
| 6253 | in the inbox always show there are several ema... | +86 | mqbxwpfn uclrqfxa | GRP_0 | in the inbox always show there are several ema... | English |
| 6254 | job failed : ( there is no datasource with the... | job failed : ( there is no datasource with the... | cubdsrml znewqgop | GRP_20 | job failed : ( there is no datasource with the... | English |
| 6255 | account lock out issue | account lock out issue | hzetqwba tmsbnfkh | GRP_0 | account lock out issue account lock out issue | English |
| 6256 | general query about rdp : | 44\nuser wanted to report about some one worki... | rxyopuha svfqmncl | GRP_0 | general query about rdp : 44\nuser wanted to ... | English |
| 6257 | could not setup notification list in dvw syste... | user name: yinnrty\nuser id: 11333657100\nsyst... | cysbkonu mzutvwir | GRP_25 | could not setup notification list in dvw syste... | English |
| 6258 | account lock out issue | account lock out issue \r\nremote into user co... | ihlguasz agnwcqiz | GRP_0 | account lock out issue account lock out issue... | English |
| 6259 | job Job_3028 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/25... | English |
| 6260 | job Job_3028 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/25... | English |
| 6261 | ksem / m36 / ewkw8113117 / rechner startet nicht | bios einstellen, das rechner bei netz-reset se... | zxopwyak zrbfkimx | GRP_33 | ksem / m36 / ewkw8113117 / rechner startet nic... | German |
| 6262 | unable to print from erp | unable to print from erp | bkyphsgq cfyksehu | GRP_0 | unable to print from erp unable to print from erp | English |
| 6263 | circuit outage: india telecom_vendor_1 40 & 20... | what type of outage: _____network __x__ci... | rkupnshb gsmzfojw | GRP_8 | circuit outage: india telecom_vendor_1 40 & 20... | English |
| 6264 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 6265 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 6266 | network outage : usa warehouse, vpn circuit is... | what type of outage: _____network ___x__c... | rkupnshb gsmzfojw | GRP_4 | network outage : usa warehouse, vpn circuit is... | English |
| 6267 | unable to connect to the printers dv07 and dv2... | unable to connect to the printers dv07 and dv2... | eocvkuxw eqfsphnd | GRP_3 | unable to connect to the printers dv07 and dv2... | English |
| 6268 | latpop will not startup without ac power cord ... | latpop will not startup without ac power cord ... | kaguhxwo uoyipxqg | GRP_3 | latpop will not startup without ac power cord ... | English |
| 6269 | circuit outage: usa , vpn circuit is down at 2... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_8 | circuit outage: usa , vpn circuit is down at 2... | English |
| 6270 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | jfgepoay qsbjaemc | GRP_0 | unable to log in to erp SID_34 unable to log i... | English |
| 6271 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | ebxrlknc txnvwupy | GRP_0 | unable to log in to erp SID_34 unable to log i... | English |
| 6272 | intermittent internet connection | intermittent internet connection | qscdktvl rihendxu | GRP_0 | intermittent internet connection intermittent ... | English |
| 6273 | delivery notes from other users coming to the ... | delivery notes from other users coming to the ... | rtpmlwnk unpambrv | GRP_18 | delivery notes from other users coming to the ... | English |
| 6274 | system slow on start up | system slow on start up | yhzdtkla ncobgtdm | GRP_0 | system slow on start up system slow on start up | English |
| 6275 | check router wifi - site: south_amerirtca - sp... | hi team, please check the router wifi the site... | qasdhyzm yuglsrwx | GRP_4 | check router wifi - site: south_amerirtca - sp... | English |
| 6276 | usa print | usa print issue | rdfjsawg zpmxgdcw | GRP_15 | usa print usa print issue | English |
| 6277 | sign-on is not working | name:mikhghytr karaffa\nlanguage:\nbrowser:mic... | vfrdxtqw jfbmsenz | GRP_0 | sign-on is not working name:mikhghytr karaffa\... | English |
| 6278 | pc probleme urgent | \n\nreceived from: eluvxqhw.gpbfkqeu@gmail.com... | eluvxqhw gpbfkqeu | GRP_0 | pc probleme urgent \n\nreceived from: eluvxqhw... | German |
| 6279 | unable to load engineering tool | unable to load engineering tool | yhzdtkla ncobgtdm | GRP_0 | unable to load engineering tool unable to load... | English |
| 6280 | infopath installation | infopath installation | lxmpfiez katjygbp | GRP_0 | infopath installation infopath installation | English |
| 6281 | half the icons on my desktop are gone after a ... | half the icons on my desktop are gone after a ... | hitakmbs fvhmkntq | GRP_3 | half the icons on my desktop are gone after a ... | English |
| 6282 | unable to get on skype audio meeting with outs... | unable to get on skype audio meeting with outs... | ejvkzobl yijgokrn | GRP_0 | unable to get on skype audio meeting with outs... | English |
| 6283 | usa oh operators are locked out of mii and not... | usa oh operators are locked out of mii and not... | epivntxc fdrxmuga | GRP_0 | usa oh operators are locked out of mii and not... | English |
| 6284 | fjtrnslb ejzkrchq // account has expired | fjtrnslb ejzkrchq // account has expired | rbozivdq gmlhrtvp | GRP_0 | fjtrnslb ejzkrchq // account has expired fjtrn... | English |
| 6285 | users in chicago wants to update bank details | users in chicago wants to update bank details | qftpazns fxpnytmk | GRP_0 | users in chicago wants to update bank details ... | English |
| 6286 | bios update | bios update | jvshydix rzpmnylt | GRP_0 | bios update bios update | English |
| 6287 | i am stuck. has 3 lines. lines 40 and 50... | i am stuck. 9168335496 has 3 lines. lines... | avkotjzx hmntobws | GRP_13 | i am stuck. has 3 lines. lines 40 and 50... | English |
| 6288 | device type changes for usa | device type changes for usa | kgytujhe bonhwzrx | GRP_14 | device type changes for usa device type change... | English |
| 6289 | ticket update on inplant_853729 | ticket update on inplant_853729 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_853729 ticket update ... | English |
| 6290 | ticket update on inplant_853833 | ticket update on inplant_853833 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_853833 ticket update ... | English |
| 6291 | device not running dell ml6000 tape library! | device not running dell ml6000 tape library !\... | yevirgnl ylhogjct | GRP_12 | device not running dell ml6000 tape library! d... | English |
| 6292 | license inquiry about k1 license | license inquiry about k1 license | zkhmvnib sugzyvhp | GRP_0 | license inquiry about k1 license license inqui... | English |
| 6293 | adobe reader on my pc suddenly will not work, ... | adobe reader on my pc suddenly will not work, ... | pzrskcon pobsajnx | GRP_3 | adobe reader on my pc suddenly will not work, ... | English |
| 6294 | need access to znqcljxt azvoespk's emails | need access to znqcljxt azvoespk's emails | csotmdiw yfeqcbti | GRP_26 | need access to znqcljxt azvoespk's emails need... | English |
| 6295 | outlook is not responding. error : need password. | outlook is not responding. error : need password. | imoelsap gxdwkimv | GRP_0 | outlook is not responding. error : need passwo... | English |
| 6296 | connections problems with microsoft collaborat... | connections problems with microsoft collaborat... | obanjrhg rnafleys | GRP_0 | connections problems with microsoft collaborat... | English |
| 6297 | ticket update | name:erirtc\nlanguage:\nbrowser:microsoft inte... | ntsowaem jfgslyde | GRP_0 | ticket update name:erirtc\nlanguage:\nbrowser... | English |
| 6298 | wireless guest access | cti ( network –wireless-guest )\n\nguest fir... | vbmzgsdk jdmyazti | GRP_0 | wireless guest access cti ( network –wireles... | English |
| 6299 | account locked | account locked | ydigzqbu xdgjizek | GRP_0 | account locked account locked | English |
| 6300 | intermittent shutdown on this computer | intermittent shutdown on this computer | xioapjvd yiqubxmz | GRP_0 | intermittent shutdown on this computer intermi... | English |
| 6301 | inwarehouse_tools 0581144512 and 0581149834 is... | inwarehouse_tools 0581144512 and 0581149834 is... | ipwjorsc uboapexr | GRP_13 | inwarehouse_tools 0581144512 and 0581149834 is... | English |
| 6302 | cannot make or recieve calls on iphone 5. | cannot make or recieve calls on iphone 5. | okubexia viungdpw | GRP_63 | cannot make or recieve calls on iphone 5. cann... | English |
| 6303 | user needs this account as mentioned in the sc... | got a call transferred from vitalyst // user n... | fjciqgav ybkqvazh | GRP_40 | user needs this account as mentioned in the sc... | English |
| 6304 | new laptop set-up | set up and new laptop and remove the old one | chkmejsn lvidgknc | GRP_3 | new laptop set-up set up and new laptop and re... | English |
| 6305 | project collaboration_platform site is no long... | project collaboration_platform site is no long... | erckhtzj tdmkgoie | GRP_16 | project collaboration_platform site is no long... | English |
| 6306 | blank call with noise | blank call with noise | fumkcsji sarmtlhy | GRP_0 | blank call with noise blank call with noise | English |
| 6307 | i have created 2 new material numbers but when... | mm#'s 7390081 and 6290061 | xplwmiyr pifoldxr | GRP_29 | i have created 2 new material numbers but when... | English |
| 6308 | cannot access email | same incident as the past two days, cannot acc... | rqnxlkce nvrzduyk | GRP_0 | cannot access email same incident as the past ... | English |
| 6309 | please display monthly information on the sale... | please display monthly information on the sale... | aofextgk tugywidl | GRP_25 | please display monthly information on the sale... | English |
| 6310 | engineering tool | from: aghynil dirttwan [mailto:toolperfect@gma... | aorthyme rnsuipbk | GRP_0 | engineering tool from: aghynil dirttwan [mailt... | English |
| 6311 | created rqfhiong zkwfqagb 7301102 yesterday af... | when i try to re-create with ansi iso tbbuyhex... | ivkhegjw gquflzse | GRP_14 | created rqfhiong zkwfqagb 7301102 yesterday af... | English |
| 6312 | query : who is the owner of shared mailbox : ... | query : who is the owner of shared mailbox : ... | rmegscqu juksmtho | GRP_0 | query : who is the owner of shared mailbox : ... | English |
| 6313 | password reset request. | password reset request. | hwbjnpmg nzrbmojg | GRP_0 | password reset request. password reset request. | English |
| 6314 | bitte ewew8323718 konto wieder aktivieren | bitte ewew8323718 konto wieder aktivieren | xmlbfjpg yegzbvru | GRP_24 | bitte ewew8323718 konto wieder aktivieren bitt... | German |
| 6315 | engineering tool password reset. | engineering tool password reset. | dxfbqwyg cyzfmrpq | GRP_0 | engineering tool password reset. engineering t... | English |
| 6316 | unable to change the password from password_ma... | unable to change the password from password_ma... | fniphjkr tlxygdeh | GRP_0 | unable to change the password from password_ma... | English |
| 6317 | unable to log in to email, erp and collaborati... | unable to log in to email, erp and collaborati... | afbcmwsu tjgciswl | GRP_0 | unable to log in to email, erp and collaborati... | English |
| 6318 | telefon asxpnlgk mnktdsjq (durchwahl 174) defekt. | display kaum noch lesbar. verbindung bei telef... | tohxswej pmnlxyrv | GRP_42 | telefon asxpnlgk mnktdsjq (durchwahl 174) defe... | German |
| 6319 | outlook access | outlook will not connect when working from hom... | ymorvuwg pejkzvfl | GRP_27 | outlook access outlook will not connect when w... | English |
| 6320 | job Job_1314 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job Job_1314 failed in job_scheduler at: 08/25... | English |
| 6321 | job Job_1314 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job Job_1314 failed in job_scheduler at: 08/25... | English |
| 6322 | unable to submit a discount form from collabor... | unable to submit a discount form from collabor... | tqemuawj mvcqrbaz | GRP_0 | unable to submit a discount form from collabor... | English |
| 6323 | job Job_1314 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job Job_1314 failed in job_scheduler at: 08/25... | English |
| 6324 | job Job_1314 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/25... | English |
| 6325 | wrong calculation in erp | the rebate was not calculated correctly in the... | vrmdtcal agythfow | GRP_13 | wrong calculation in erp the rebate was not ca... | English |
| 6326 | job Job_2668 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job Job_2668 failed in job_scheduler at: 08/25... | English |
| 6327 | job Job_2668 failed in job_scheduler at: 08/25... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_2668 failed in job_scheduler at: 08/25... | English |
| 6328 | please reset my password for hr_tool globalvie... | please reset my password for hr_tool globalvie... | qpkbiwzl urypnjvq | GRP_0 | please reset my password for hr_tool globalvie... | English |
| 6329 | need help to reset password. | need help to reset password. | gwptzvxm rhozsfty | GRP_0 | need help to reset password. need help to rese... | English |
| 6330 | can you help me reset password for microsoft l... | can you help me reset password for microsoft l... | zvwrklfa pguesbno | GRP_0 | can you help me reset password for microsoft l... | English |
| 6331 | the detail of earnings batch job is not sendin... | i keep getting zearn report for 6/06/16 -6/19/... | cjqdksbn ysqxpovz | GRP_52 | the detail of earnings batch job is not sendin... | English |
| 6332 | printer change from fd37 to fd34 | \r\n\r\nreceived from: repyzajo.lxfwopyq@gmail... | repyzajo lxfwopyq | GRP_5 | printer change from fd37 to fd34 \r\n\r\nrece... | English |
| 6333 | urgent - registration of infopath 2013 | \r\n\r\nreceived from: kuznvase.jrxtbuqz@gmail... | kuznvase jrxtbuqz | GRP_0 | urgent - registration of infopath 2013 \r\n\r\... | English |
| 6334 | unable to connect to hub | unable to connect to hub | mfvkxghn mzjasxqd | GRP_0 | unable to connect to hub unable to connect to hub | English |
| 6335 | folder access (s:\globalace_holemaking\ha646) | please se my comments in red.\r\n\r\nviele grÃ... | dxgyefir rczsatqu | GRP_34 | folder access (s:\globalace_holemaking\ha646) ... | English |
| 6336 | blocked web pages | \r\n\r\nreceived from: iygsxftl.hysrbgad@gmail... | iygsxftl hysrbgad | GRP_0 | blocked web pages \r\n\r\nreceived from: iygsx... | English |
| 6337 | cisco access point is not working. | cisco access point is not working.\r\nmac addr... | yevirgnl ylhogjct | GRP_4 | cisco access point is not working. cisco acces... | English |
| 6338 | profile setup for new joiner | laptop and profile setup for new joiner nikith... | nawkpdtx gwcvmbhn | GRP_19 | profile setup for new joiner laptop and profil... | English |
| 6339 | need erp access to /n/dscsag/conv_rule | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | svdefgwl sgtmurfh | GRP_2 | need erp access to /n/dscsag/conv_rule system ... | English |
| 6340 | probleme mit erpgui \vsdtxwry ngkcdjye | probleme mit erpgui \vsdtxwry ngkcdjye | vsdtxwry ngkcdjye | GRP_24 | probleme mit erpgui \vsdtxwry ngkcdjye problem... | Danish |
| 6341 | die suchfunktion des skype verzeichnisses funk... | die suchfunktion des skype verzeichnisses funk... | oefitbmy gcubyszd | GRP_0 | die suchfunktion des skype verzeichnisses funk... | German |
| 6342 | akku def. openstage sl4 bitte neuen besorgen -... | akku def. openstage sl4 bitte neuen besorgen | fasirxzo xlvnhptm | GRP_33 | akku def. openstage sl4 bitte neuen besorgen -... | German |
| 6343 | pls. check user:yubtgy1 account | \n\nreceived from: wktesmbp.lorjymef@gmail.com... | wktesmbp lorjymef | GRP_0 | pls. check user:yubtgy1 account \n\nreceived f... | English |
| 6344 | probleme mit weekly report und engineering_too... | \n\nreceived from: rkyjnbqh.kfshormi@gmail.com... | rkyjnbqh kfshormi | GRP_0 | probleme mit weekly report und engineering_too... | German |
| 6345 | e&o access request for partner team | \r\n\r\nreceived from: izwtdnfq.xptuoaid@gmail... | izwtdnfq xptuoaid | GRP_2 | e&o access request for partner team \r\n\r\nre... | English |
| 6346 | qlhmawgi sgwipoxn mp_fb locked. | qlhmawgi sgwipoxn mp_fb locked. | dmvznstx jnpgzoxy | GRP_0 | qlhmawgi sgwipoxn mp_fb locked. qlhmawgi sgwip... | English |
| 6347 | skype anmeldung | ich habe gestern über den passwortmanager mei... | mhvbnqri sacvgzxf | GRP_0 | skype anmeldung ich habe gestern über den pas... | German |
| 6348 | access for igurwxhv ughynofq to mailbox | hi helpdesk, please give access to igurwxhv ug... | wzbahpxu phvyuwxb | GRP_0 | access for igurwxhv ughynofq to mailbox hi hel... | English |
| 6349 | plm cache server logging issue | as per attached email, we see an issue with ca... | ujsyzrvw vjuyzcih | GRP_14 | plm cache server logging issue as per attache... | English |
| 6350 | conduct goods movement with erp transaction mb... | from: iwazgesl ydgqtpbo [mailto:iwazgesl.ydgqt... | iwazgesl ydgqtpbo | GRP_18 | conduct goods movement with erp transaction mb... | English |
| 6351 | password reset alert from o365 | password reset alert from o365 | epbqhudt fumxovjz | GRP_0 | password reset alert from o365 password reset ... | English |
| 6352 | user cwfzldts dlmukhyn cannot create purchasin... | now he get the right document type, but he has... | cwfzldts dlmukhyn | GRP_29 | user cwfzldts dlmukhyn cannot create purchasin... | English |
| 6353 | latitude e7350 does not properly boot up - i g... | latitude e7350 does not properly boot up - i g... | fesmalcu qjlwvrnk | GRP_28 | latitude e7350 does not properly boot up - i g... | English |
| 6354 | latitude 7275 does not boot up properly - got ... | latitude 7275 does not boot up properly - got ... | ptyxefvk fhazbrwn | GRP_28 | latitude 7275 does not boot up properly - got ... | English |
| 6355 | support für umbau \ we22 \ port 22 \niptbwdq ... | support für umbau \ we22 \ port 22 \niptbwdq ... | niptbwdq csenjruz | GRP_24 | support für umbau \ we22 \ port 22 \niptbwdq ... | English |
| 6356 | umbau rechner ewew8323542 \ port 21 \niptbwdq ... | umbau rechner ewew8323542 \ port 21 \niptbwdq ... | niptbwdq csenjruz | GRP_24 | umbau rechner ewew8323542 \ port 21 \niptbwdq ... | German |
| 6357 | setup new ws \instandsetzung\ nfayqjhg kyswcpei | setup new ws \instandsetzung\ nfayqjhg kyswcpei | nfayqjhg kyswcpei | GRP_24 | setup new ws \instandsetzung\ nfayqjhg kyswcpe... | German |
| 6358 | ms office /outlook issue | ms office /outlook issue | iowkrcpd snrvlhyc | GRP_0 | ms office /outlook issue ms office /outlook issue | English |
| 6359 | cannot use copy to option in engineering tool ... | cannot use copy to option in engineering tool ... | fbgetczn jlsvxura | GRP_11 | cannot use copy to option in engineering tool ... | English |
| 6360 | support für umzug \qwynjdbk eamnvwyh | support für umzug \qwynjdbk eamnvwyh | qwynjdbk eamnvwyh | GRP_24 | support für umzug \qwynjdbk eamnvwyh support ... | English |
| 6361 | circuit outage : traversecity : static-vpn-43... | what type of outage: _____network ___x__c... | uxgrdjfc kqxdjeov | GRP_8 | circuit outage : traversecity : static-vpn-43... | English |
| 6362 | change of computer to user parrfgyksm - telep... | please set up new computer changed to user par... | antigvjx zekluqim | GRP_7 | change of computer to user parrfgyksm - telep... | English |
| 6363 | password reset alert from o365 | password reset alert from o365 | eylqgodm ybqkwiam | GRP_0 | password reset alert from o365 password reset ... | English |
| 6364 | mp_fb konto gesperrt | keine anmeldung möglich | lqjoagzt gqueiatx | GRP_0 | mp_fb konto gesperrt keine anmeldung möglich | German |
| 6365 | keine netzwerkverbindung | eemw8144234 keine netzwerkverbindung können h... | jbifdshu jzercpoq | GRP_0 | keine netzwerkverbindung eemw8144234 keine net... | German |
| 6366 | email queries | email queries | zfliqpxm dgfvaqlh | GRP_0 | email queries email queries | Scottish Gaelic |
| 6367 | erp SID_34 lock out issue and password reset | erp SID_34 lock out issue and password reset u... | antigvjx zekluqim | GRP_0 | erp SID_34 lock out issue and password reset ... | English |
| 6368 | aw: please take this survey related to ticket_... | \n\nreceived from: tgpvrbyi.ztdxwpcn@gmail.com... | tgpvrbyi ztdxwpcn | GRP_0 | aw: please take this survey related to ticket_... | English |
| 6369 | can't copy/save pdf of drawing from business_c... | application used to work till aug 23. user was... | edanpfzl qyrfndkp | GRP_0 | can't copy/save pdf of drawing from business_c... | English |
| 6370 | kein zugriff auf server möglich! | meldung: fehler bei der erneuten verbindungshe... | tqrylspg ijzghqwy | GRP_12 | kein zugriff auf server möglich! meldung: feh... | German |
| 6371 | authorization add/delete members | \r\n\r\n | hpmwliog kqtnfvrl | GRP_0 | authorization add/delete members \r\n\r\n | English |
| 6372 | unable to open outlook client | unable to open outlook client | jxpmkhay ruvnpyqb | GRP_19 | unable to open outlook client unable to open o... | English |
| 6373 | aw: please take this survey related to ticket_... | \n\nreceived from: efjzbtcm.mdpviqbf@gmail.com... | efjzbtcm mdpviqbf | GRP_0 | aw: please take this survey related to ticket_... | English |
| 6374 | collaboration_platform for business not sync | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | eylqgodm ybqkwiam | GRP_0 | collaboration_platform for business not sync \... | English |
| 6375 | one user cannot receive e-mail from bank of am... | \r\n\r\nreceived from: uagqromi.sqgtkmci@gmail... | uagqromi sqgtkmci | GRP_10 | one user cannot receive e-mail from bank of am... | English |
| 6376 | profile and email client setup | ghkkytu,\r\n configure user login for below e... | antigvjx zekluqim | GRP_19 | profile and email client setup ghkkytu,\r\n c... | English |
| 6377 | os reinstall | os reinstall | kflqpite gbeoqsnc | GRP_19 | os reinstall os reinstall | Norwegian |
| 6378 | os installation | reimage the laptop | kflqpite gbeoqsnc | GRP_19 | os installation reimage the laptop | English |
| 6379 | os installation | os reinstallation on e6420 laptop. | kflqpite gbeoqsnc | GRP_19 | os installation os reinstallation on e6420 lap... | English |
| 6380 | abend batch job Job_1967e | job name: Job_1967e abended. | rkupnshb gsmzfojw | GRP_6 | abend batch job Job_1967e job name: Job_1967e ... | English |
| 6381 | inwarehouse_tool not creating | \r\n\r\nreceived from: uisewznr.ewtmkphs@gmail... | uisewznr ewtmkphs | GRP_13 | inwarehouse_tool not creating \r\n\r\nreceived... | English |
| 6382 | help to change the windows password using pass... | help to change the windows password using pass... | cvnzhbfa qcvzyrgo | GRP_0 | help to change the windows password using pass... | English |
| 6383 | vip 2: login issue | login issue\r\n-checked the user name in ad an... | voalfshq eihcmgnl | GRP_0 | vip 2: login issue login issue\r\n-checked the... | English |
| 6384 | my global_telecom_1 two in one can't be connec... | name:lertfty zuothryrt\nlanguage:\nbrowser:mic... | kilrghwc ykjrbivs | GRP_0 | my global_telecom_1 two in one can't be connec... | English |
| 6385 | folder access to \\HostName_717\teams\kvp3-pro... | permission: write and read\r\n\r\nlocation: ge... | xsjqhdgp ymstzudl | GRP_34 | folder access to \\HostName_717\teams\kvp3-pro... | English |
| 6386 | mii password reset for wiggrtgyis | mii password reset for wiggrtgyis | sbgfycot quhzgatm | GRP_0 | mii password reset for wiggrtgyis mii password... | English |
| 6387 | HostName_1010(erp search_server server): erpst... | HostName_1010(erp search_server server): erpst... | rkupnshb gsmzfojw | GRP_14 | HostName_1010(erp search_server server): erpst... | English |
| 6388 | vtykrubi whsipqno's title | \n\nreceived from: hkrecpfv.kgwpbexv@gmail.com... | hkrecpfv kgwpbexv | GRP_0 | vtykrubi whsipqno's title \n\nreceived from: h... | English |
| 6389 | what is this trailing mail? | what is this trailing mail? | ygkzwsud cvjgkxws | GRP_0 | what is this trailing mail? what is this trail... | English |
| 6390 | i'm using collaboration_platform in crm. why a... | all my collaboration_platform notebooks are sh... | kzbrimwx dconpwbu | GRP_0 | i'm using collaboration_platform in crm. why a... | English |
| 6391 | error on erp | error on erp | khufscza qoixpave | GRP_0 | error on erp error on erp | English |
| 6392 | ess password reset | ess password reset | qkvzexta ehlvgouc | GRP_0 | ess password reset ess password reset | English |
| 6393 | need to see all unread emails | need to see all unread emails | pfzxecbo ptygkvzl | GRP_0 | need to see all unread emails need to see all ... | English |
| 6394 | do not have access to bobj | do not have access to bobj | dymwulbi dkbvqhna | GRP_9 | do not have access to bobj do not have access ... | English |
| 6395 | multiple pages print while printing single email. | multiple pages print while printing single ema... | jrxsdcna iyhktobe | GRP_3 | multiple pages print while printing single ema... | English |
| 6396 | how to delay email sending? | \r\n\r\nreceived from: iygsxftl.hysrbgad@gmail... | iygsxftl hysrbgad | GRP_0 | how to delay email sending? \r\n\r\nreceived f... | English |
| 6397 | add role to access e-recruit | hi,\n\nplease also add (er:rcf_recruiter) role... | qcehailo wqynckxg | GRP_2 | add role to access e-recruit hi,\n\nplease als... | English |
| 6398 | skype login issue | \n\nreceived from: crkdjbot.qiztrxne@gmail.com... | crkdjbot qiztrxne | GRP_0 | skype login issue \n\nreceived from: crkdjbot.... | English |
| 6399 | HostName_184: volume: /dev/software on server:... | HostName_184: volume: /dev/software on server:... | rkupnshb gsmzfojw | GRP_47 | HostName_184: volume: /dev/software on server:... | English |
| 6400 | HostName_1132:oracle finance_app financial man... | HostName_1132:oracle finance_app financial man... | rkupnshb gsmzfojw | GRP_12 | HostName_1132:oracle finance_app financial man... | English |
| 6401 | a link on an e-mail says i am "forbidden" | an e-mail from it training has email hints an... | mfvkxghn mzjasxqd | GRP_70 | a link on an e-mail says i am "forbidden" an e... | English |
| 6402 | there were 3 undeliverable e-mails returned wi... | there were 3 undeliverable e-mails returned wi... | crkdjbot qiztrxne | GRP_0 | there were 3 undeliverable e-mails returned wi... | English |
| 6403 | erp round off on total | we entered so 35941677, total of order should ... | iqbyrtop izpmvgfq | GRP_13 | erp round off on total we entered so 35941677,... | English |
| 6404 | scrap reason code (two issues) | two issues:\r\n1. mii asks for a reason code w... | entuakhp xrnhtdmk | GRP_41 | scrap reason code (two issues) two issues:\r\n... | English |
| 6405 | instalação guardião (banco hsbc) | gentileza, instalar o guardião do banco hsbc ... | btxfwisc mapbkflt | GRP_62 | instalação guardião (banco hsbc) gentileza,... | English |
| 6406 | user called to know if there was an outage in usa | user called to know if there was an outage in usa | fumkcsji sarmtlhy | GRP_0 | user called to know if there was an outage in ... | English |
| 6407 | job jobuacyltoe hxgaycze failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job jobuacyltoe hxgaycze failed in job_schedul... | English |
| 6408 | job jobuacyltoe hxgaycze failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job jobuacyltoe hxgaycze failed in job_schedul... | English |
| 6409 | job HostName_1019failagain_1 failed in job_sch... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job HostName_1019failagain_1 failed in job_sch... | English |
| 6410 | svc-now ticket found... doing nothing | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | svc-now ticket found... doing nothing receiv... | English |
| 6411 | svc-now ticket found... doing nothing | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | svc-now ticket found... doing nothing receiv... | English |
| 6412 | svc-now ticket found... doing nothing | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | svc-now ticket found... doing nothing receiv... | English |
| 6413 | unlocked all accounts on password manager | unlocked all accounts on password manager | ghfvmpqi fehkscza | GRP_0 | unlocked all accounts on password manager unl... | English |
| 6414 | unable to open originals from engineering tool | when opening originals from engineering tool, ... | tfyhebmk elywjuvm | GRP_11 | unable to open originals from engineering tool... | English |
| 6415 | cannot get access to email | same issue as yesterday, it called and fixed t... | rqnxlkce nvrzduyk | GRP_0 | cannot get access to email same issue as yeste... | English |
| 6416 | unable to log in to netweaver | unable to log in to netweaver | ghfvmpqi fehkscza | GRP_0 | unable to log in to netweaver unable to log in... | English |
| 6417 | request to reset microsoft online services pas... | request to reset microsoft online services pas... | jcsmxrgl ibhsnket | GRP_0 | request to reset microsoft online services pas... | English |
| 6418 | ticket update on ticket_no0409509 | ticket update on ticket_no0409509 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0409509 ticket updat... | English |
| 6419 | ticket update on inplant_853640 | ticket update on inplant_853640 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_853640 ticket update ... | English |
| 6420 | reset the password for igkqpndy swqndxhl on ot... | hello,\r\n\r\nplease reset password for user d... | igkqpndy swqndxhl | GRP_7 | reset the password for igkqpndy swqndxhl on ot... | English |
| 6421 | ticket update inplant_853261 | ticket update inplant_853261 | olckhmvx pcqobjnd | GRP_0 | ticket update inplant_853261 ticket update inp... | English |
| 6422 | request to reset microsoft online services pas... | request to reset microsoft online services pas... | rovsabyl idpvbjtw | GRP_0 | request to reset microsoft online services pas... | English |
| 6423 | we are currently unable to post inwarehouse_to... | we are currently unable to post inwarehouse_to... | dmlnpgkv ophsnmbr | GRP_10 | we are currently unable to post inwarehouse_to... | English |
| 6424 | job HostName_1019failagain failed in job_sched... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job HostName_1019failagain failed in job_sched... | English |
| 6425 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job HostName_1019fail failed in job_scheduler ... | English |
| 6426 | ticket update on ticket_no0433651 | ticket update on ticket_no0433651 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0433651 ticket updat... | English |
| 6427 | mailbox configuration | \n\nreceived from: sylvthryia.sidor@company.co... | aqmwpyxk alebcyor | GRP_0 | mailbox configuration \n\nreceived from: sylv... | English |
| 6428 | user unable to log onto ticketing_tool! | \n\nreceived from: kxsceyzo.naokumlb@gmail.com... | kxsceyzo naokumlb | GRP_0 | user unable to log onto ticketing_tool! \n\nre... | English |
| 6429 | tool repoter | from: nwfodmhc exurcwkm \nsent: wednesday, aug... | vxhyftae tbkyfdli | GRP_0 | tool repoter from: nwfodmhc exurcwkm \nsent: w... | English |
| 6430 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_60 | job HostName_1019fail failed in job_scheduler ... | English |
| 6431 | computer lrrw8514654 - us_plant location252 | \n\nreceived from: dpuifqeo.eglwsfkn@gmail.com... | dpuifqeo eglwsfkn | GRP_0 | computer lrrw8514654 - us_plant location252 \... | English |
| 6432 | password reset | from: nwfodmhc exurcwkm \r\nsent: wednesday, a... | jdeoycaq geqctmlh | GRP_0 | password reset from: nwfodmhc exurcwkm \r\nsen... | English |
| 6433 | usa print check | usa print check | rdfjsawg zpmxgdcw | GRP_15 | usa print check usa print check | Kinyarwanda |
| 6434 | urgent: only the highlighted (attachment) are ... | only the highlighted (attachment) are showing ... | vupmctne ylnsweao | GRP_40 | urgent: only the highlighted (attachment) are ... | English |
| 6435 | HostName_145 (erp SID_28): volume: /dev/hd3 on... | HostName_145 (erp SID_28): volume: /dev/hd3 on... | dkmcfreg anwmfvlg | GRP_47 | HostName_145 (erp SID_28): volume: /dev/hd3 on... | English |
| 6436 | job Job_1953b failed in job_scheduler at: 08/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953b failed in job_scheduler at: 08/2... | English |
| 6437 | outlook is continuously asking for password. | outlook is continuously asking for password. | ouymgzat jfzmeaoy | GRP_0 | outlook is continuously asking for password. o... | English |
| 6438 | unable to attach a document in erp | unable to attach a document in erp | pbfscenq qvaylkne | GRP_0 | unable to attach a document in erp unable to a... | English |
| 6439 | netweaver is locked out. | netweaver is locked out. | pbdtxowu yfqzibtv | GRP_0 | netweaver is locked out. netweaver is locked out. | English |
| 6440 | account unlock | account unlock | dhraxivp enmfvuqb | GRP_0 | account unlock account unlock | English |
| 6441 | telephony_software software not configured | telephony_software software not configured | zylaexnv pvkzbduh | GRP_0 | telephony_software software not configured tel... | English |
| 6442 | ticket update on ticket_no0432827 | ticket update on ticket_no0432827 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0432827 ticket updat... | English |
| 6443 | unable to log in to skype | cleared skype cache files | ybplwrez lqcyehbf | GRP_0 | unable to log in to skype cleared skype cache ... | English |
| 6444 | unknown request for guest wireless access | hello,\r\ni had never used the guest wireless ... | yabnljgs cjlgetqz | GRP_0 | unknown request for guest wireless access hell... | English |
| 6445 | fi/co issue - sto 5019143086 | please review sto 5019143086 . user is receiv... | wgothrzl iokdftgn | GRP_29 | fi/co issue - sto 5019143086 please review st... | English |
| 6446 | install engineering_tool | install engineering_tool | jvpkulxw ovuweygj | GRP_0 | install engineering_tool install engineering_tool | English |
| 6447 | der netweaver business client 5.0 kann nicht g... | der netweaver business client 5.0 kann nicht g... | ejcylstw gdvzkihe | GRP_0 | der netweaver business client 5.0 kann nicht g... | German |
| 6448 | EU_tool -> sinterleitstand (sls) -> beilagepro... | currently it is impossible to enter data of cy... | howfanzi siavgtby | GRP_25 | EU_tool -> sinterleitstand (sls) -> beilagepro... | English |
| 6449 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | jhunextz zorxpwkt | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 6450 | account getting locked on windows | account getting locked on windows | ybplwrez lqcyehbf | GRP_0 | account getting locked on windows account get... | English |
| 6451 | supply_chain_software password reset | supply_chain_software password reset | mtukbcow xfdtukjm | GRP_0 | supply_chain_software password reset supply_ch... | English |
| 6452 | lunch rm computer down | the employee computer in mfg #1 lunch rm. is down | pbrmgyzo hzoxdijn | GRP_3 | lunch rm computer down the employee computer i... | English |
| 6453 | delivery notes - unable to inwarehouse_tool fo... | deliveries mentioned below are not invoicing. ... | ibtvlfah dtlwscma | GRP_13 | delivery notes - unable to inwarehouse_tool fo... | English |
| 6454 | HostName_108 (plm conversion server - kirty): ... | HostName_108 (plm conversion server - kirty): ... | dkmcfreg anwmfvlg | GRP_14 | HostName_108 (plm conversion server - kirty): ... | English |
| 6455 | unable to access n drive | unable to access n drive | yqshfmvi jwyrmlbz | GRP_0 | unable to access n drive unable to access n d... | English |
| 6456 | job Job_1314 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/24... | English |
| 6457 | background jobs in erp inbox will not export i... | sa38 reports that are scheduled to run as a ba... | hzpmalgo xpvugeyr | GRP_0 | background jobs in erp inbox will not export i... | English |
| 6458 | attendance_tool intouch clocks - shows as down... | attendance_tool intouch clocks - shows as down... | noscwdpm akiowsmp | GRP_4 | attendance_tool intouch clocks - shows as down... | English |
| 6459 | keine verbindung zum server | keine verbindung zum server, kein zugriff auf ... | wyotidgu nydzrtuw | GRP_0 | keine verbindung zum server keine verbindung z... | German |
| 6460 | laptop crash | laptop crash | pqizlhkx adbyhglu | GRP_0 | laptop crash laptop crash | English |
| 6461 | Israel, israel - (company):company-eu-isr--mai... | EMEA, israel - (company):company-eu-isr--mains... | jyoqwxhz clhxsoqy | GRP_8 | Israel, israel - (company):company-eu-isr--mai... | English |
| 6462 | server for public folder in germany is not ava... | \\HostName_598\public is not available.\r\nis ... | skocrqdw pexcdfao | GRP_0 | server for public folder in germany is not ava... | English |
| 6463 | tengigabitethernet1/5 · connection to tech-45... | tengigabitethernet1/5 · connection to tech-45... | dkmcfreg anwmfvlg | GRP_4 | tengigabitethernet1/5 · connection to tech-45... | English |
| 6464 | completed order 32079269 form 2014 for vw is v... | hello,\r\nthere is completed order 32079269 fo... | vgmbxkji jukplihz | GRP_6 | completed order 32079269 form 2014 for vw is v... | English |
| 6465 | audio not working laptop - error no device ins... | computer name : agvl8325581\n\nservice tag : ... | oirxvhbp zltpgvbk | GRP_33 | audio not working laptop - error no device ins... | English |
| 6466 | collaboration_platform is not openning. | collaboration_platform is not openning. | fmorwhip jidvlbtp | GRP_0 | collaboration_platform is not openning. collab... | English |
| 6467 | folder access | \n\nreceived from: qhvspezr.fvluqczd@gmail.com... | qhvspezr fvluqczd | GRP_12 | folder access \n\nreceived from: qhvspezr.fvlu... | English |
| 6468 | reparo pdf creator | favor reparar o pdf creator, quando vou imprim... | frjpkuwq rtznexbq | GRP_62 | reparo pdf creator favor reparar o pdf creator... | Portuguese |
| 6469 | top urgent request les team: change back kis i... | subject: wrong address on kis inwarehouse_tool... | qgopxabz xnuieqjr | GRP_13 | top urgent request les team: change back kis i... | English |
| 6470 | job SID_41arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_41arc2 failed in job_scheduler at: 08/... | English |
| 6471 | job SID_41arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_41arc2 failed in job_scheduler at: 08/... | English |
| 6472 | not able to save files on HostName_776 | not able to save files on HostName_776. there ... | yolktfas fyoxqgvh | GRP_0 | not able to save files on HostName_776 not abl... | English |
| 6473 | job SID_26arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_26arc2 failed in job_scheduler at: 08/... | English |
| 6474 | job Job_1953a failed in job_scheduler at: 08/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1953a failed in job_scheduler at: 08/2... | English |
| 6475 | vpn not accepting password | \r\n\r\nreceived from: vfoyenlw.ntpbdeyf@gmail... | vfoyenlw ntpbdeyf | GRP_0 | vpn not accepting password \r\n\r\nreceived fr... | English |
| 6476 | job Job_1953a failed in job_scheduler at: 08/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953a failed in job_scheduler at: 08/2... | English |
| 6477 | job Job_714 failed in job_scheduler at: 08/24/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_714 failed in job_scheduler at: 08/24/... | English |
| 6478 | HostName_521: alwaysupservice.exe: wrong numbe... | HostName_521: alwaysupservice.exe: wrong numbe... | mnlazfsr mtqrkhnx | GRP_14 | HostName_521: alwaysupservice.exe: wrong numbe... | English |
| 6479 | job SID_44arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_44arc2 failed in job_scheduler at: 08/... | English |
| 6480 | job SID_35arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_35arc2 failed in job_scheduler at: 08/... | English |
| 6481 | cert notification - network outage at germany ... | what is the issue? unplanned network outage at... | ayrhcfxi zartupsw | GRP_0 | cert notification - network outage at germany ... | English |
| 6482 | job Job_3049 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3049 failed in job_scheduler at: 08/24... | English |
| 6483 | job SID_23arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_23arc2 failed in job_scheduler at: 08/... | English |
| 6484 | job SID_31arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_31arc2 failed in job_scheduler at: 08/... | English |
| 6485 | job SID_31arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_31arc2 failed in job_scheduler at: 08/... | English |
| 6486 | no access to bobs | \r\n\r\nreceived from: ufebvyzx.gzahomlv@gmail... | ufebvyzx gzahomlv | GRP_0 | no access to bobs \r\n\r\nreceived from: ufebv... | English |
| 6487 | interface fastethernet0/27-vlan 51-lhqwx402189... | interface fastethernet0/27-vlan 51-lhqwx402189... | dkmcfreg anwmfvlg | GRP_8 | interface fastethernet0/27-vlan 51-lhqwx402189... | English |
| 6488 | zugriff auf netzlaufwerke | \r\n\r\nreceived from: sthqwdpj.lpnigfyq@gmail... | sthqwdpj lpnigfyq | GRP_0 | zugriff auf netzlaufwerke \r\n\r\nreceived fro... | German |
| 6489 | login error | \r\n\r\nreceived from: nbdljruw.axcrspyh@gmail... | nbdljruw axcrspyh | GRP_0 | login error \r\n\r\nreceived from: nbdljruw.ax... | German |
| 6490 | ticket update - inplant_852115 | ic\r\n welcome, our next available agent will ... | ayrhcfxi zartupsw | GRP_0 | ticket update - inplant_852115 ic\r\n welcome,... | English |
| 6491 | we need to change the title for cuibfgna cbmqu... | we need to change the title for cuibfgna cbmqu... | nwhurdte bldifgck | GRP_2 | we need to change the title for cuibfgna cbmqu... | English |
| 6492 | distributor_tool überblick / schulung | hallo\r\ndanke für ihre antwort.\r\nich habe ... | elivbznp tynvpcfk | GRP_0 | distributor_tool überblick / schulung hallo\r... | German |
| 6493 | issue with attendance_tool | \r\n\r\nreceived from: bajrpckl.cevtiuob@gmail... | bajrpckl cevtiuob | GRP_0 | issue with attendance_tool \r\n\r\nreceived fr... | English |
| 6494 | material in q for complaints shipped to dfrt ... | we are having an issue with materials from com... | vwpxjtof vmidzswj | GRP_18 | material in q for complaints shipped to dfrt ... | English |
| 6495 | exel file is not openning as the default progr... | exel file is not openning as the default progr... | gmneclxj czqthmrs | GRP_0 | exel file is not openning as the default progr... | English |
| 6496 | installing cutview | installing cutview | sgqthwuf cyahpdfu | GRP_66 | installing cutview installing cutview | Latvian |
| 6497 | probleme mit vpn stöhrmann \niptbwdq csenjruz | probleme mit vpn stöhrmann \niptbwdq csenjruz | niptbwdq csenjruz | GRP_24 | probleme mit vpn stöhrmann \niptbwdq csenjru... | Hungarian |
| 6498 | add user nuksytoh whovmtez (sbcheyu) to ad gro... | add user nuksytoh whovmtez (sbcheyu) to ad gro... | skocrqdw pexcdfao | GRP_0 | add user nuksytoh whovmtez (sbcheyu) to ad gro... | English |
| 6499 | no email synchro after windows 10 update on my... | \r\n\r\nreceived from: bmudkpie.qolrvbip@gmail... | bmudkpie qolrvbip | GRP_0 | no email synchro after windows 10 update on my... | English |
| 6500 | probleme mit schichtplanung \xpugntjv zcaermdt | probleme mit schichtplanung \xpugntjv zcaermdt | xpugntjv zcaermdt | GRP_24 | probleme mit schichtplanung \xpugntjv zcaermdt... | German |
| 6501 | sales order 35944817: committed date = sunday | hello it,\r\n\r\nplease check, why the system ... | jwqyxbzs adpvilqu | GRP_13 | sales order 35944817: committed date = sunday ... | English |
| 6502 | your company guest account credentials | wie kann ich die gäste freischalten ?\r\n\r\n... | gqhyzpxm ztpomxbe | GRP_0 | your company guest account credentials wie kan... | German |
| 6503 | job Job_1388 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1388 failed in job_scheduler at: 08/24... | English |
| 6504 | not able to open powerpoint | \r\n\r\nreceived from: tpflxnhz.bdjiosrp@gmail... | tpflxnhz bdjiosrp | GRP_0 | not able to open powerpoint \r\n\r\nreceived f... | English |
| 6505 | probleme mit archiving_tool\bfqnvezs vwkasnxe | probleme mit archiving_tool\bfqnvezs vwkasnxe | bfqnvezs vwkasnxe | GRP_24 | probleme mit archiving_tool\bfqnvezs vwkasnxe ... | English |
| 6506 | probleme mit erpgui \sqlmtixr urhbvfgd | probleme mit erpgui \sqlmtixr urhbvfgd | sqlmtixr urhbvfgd | GRP_24 | probleme mit erpgui \sqlmtixr urhbvfgd problem... | Danish |
| 6507 | probleme mit java \xmlbfjpg yegzbvru | probleme mit java \xmlbfjpg yegzbvru | xmlbfjpg yegzbvru | GRP_24 | probleme mit java \xmlbfjpg yegzbvru probleme ... | Danish |
| 6508 | error log on vpn server | \r\n\r\nreceived from: nbdljruw.axcrspyh@gmail... | nbdljruw axcrspyh | GRP_0 | error log on vpn server \r\n\r\nreceived from:... | English |
| 6509 | request for access to server HostName_1036 and... | with respect to ticket_no1543729, i have recei... | sholvcmf bjtpomrl | GRP_2 | request for access to server HostName_1036 and... | English |
| 6510 | ticket update on ticket_no1544198 from wqfzjy... | ticket update on ticket_no1544198 from wqfzjy... | efbwiadp dicafxhv | GRP_0 | ticket update on ticket_no1544198 from wqfzjy... | English |
| 6511 | please move stock from sales order to unrestri... | please move stock from sales order to unrestri... | tqfnalpj qyoscnge | GRP_6 | please move stock from sales order to unrestri... | English |
| 6512 | messsgeraete alkoana pdf datein kann nicht ged... | messsgeraete alkoana pdf datein kann nicht ged... | thnrqxlc yczjdxwk | GRP_42 | messsgeraete alkoana pdf datein kann nicht ged... | German |
| 6513 | account lock out ; ad | account lock out ; ad | hzetqwba tmsbnfkh | GRP_0 | account lock out ; ad account lock out ; ad | English |
| 6514 | engineering_tool, business_client, vpn and eng... | engineering_tool, business_client, vpn and eng... | jvpkulxw ovuweygj | GRP_0 | engineering_tool, business_client, vpn and eng... | English |
| 6515 | engineering tool loin | engineering tool loin | jzksvdtb czvlsmqx | GRP_0 | engineering tool loin engineering tool loin | English |
| 6516 | outlook is prompting for passwords again & again | outlook is prompting for passwords again & again | pkzthgea kgvsdmpj | GRP_0 | outlook is prompting for passwords again & aga... | English |
| 6517 | need your support | \n\nreceived from: ehfvwltg.eakjbtoi@gmail.com... | ehfvwltg eakjbtoi | GRP_29 | need your support \n\nreceived from: ehfvwltg... | English |
| 6518 | wifi for company guest issue in apac.refer ... | it,\r\n\r\nplease kindly help resolve this tic... | przndfbo pldqbhtn | GRP_4 | wifi for company guest issue in apac.refer ... | English |
| 6519 | received call , hold music was playing on othe... | received call , hold music was playing on othe... | efbwiadp dicafxhv | GRP_0 | received call , hold music was playing on othe... | English |
| 6520 | job Job_3028 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/24... | English |
| 6521 | job Job_3028 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/24... | English |
| 6522 | job Job_3028 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/24... | English |
| 6523 | job Job_3028 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/24... | English |
| 6524 | job Job_3028 failed in job_scheduler at: 08/24... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/24... | English |
| 6525 | price error between goods receipt and po in SI... | \r\n\r\nreceived from: tuqrvowp.fxmzkvqo@gmail... | tuqrvowp fxmzkvqo | GRP_29 | price error between goods receipt and po in SI... | English |
| 6526 | account locked out ; password expired | account locked out ; password expired | aguxobqs upgtdafh | GRP_0 | account locked out ; password expired account ... | English |
| 6527 | no response from other side | no response from other side | efbwiadp dicafxhv | GRP_0 | no response from other side no response from o... | English |
| 6528 | erp login account is locked | requesting to unlock erp login account | wjsfbpuv lcpdfihr | GRP_0 | erp login account is locked requesting to unlo... | English |
| 6529 | job Job_3028 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/23... | English |
| 6530 | email address not picking up automatic | email address not picking up automatic | cvqnstgu ofnimlwx | GRP_0 | email address not picking up automatic email ... | English |
| 6531 | would you please help change the email of ship... | from: north service \nsent: wednesday, august ... | hnpbcfsz qmvbycax | GRP_18 | would you please help change the email of ship... | English |
| 6532 | unable to login to erp SID_34 | unable to login to erp SID_34 | wjsfbpuv lcpdfihr | GRP_0 | unable to login to erp SID_34 unable to login ... | English |
| 6533 | pls help to create delivery note for sto 49080... | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_6 | pls help to create delivery note for sto 49080... | English |
| 6534 | 涂层ã€ç®¡ä¸è½¦é—´ç”µè¯æ•…éšœ | 涂层ã€ç®¡ä¸è½¦é—´ç”µè¯æ•…障,40634943ã€... | vrmpysoz qkiucpdx | GRP_48 | 涂层ã€ç®¡ä¸è½¦é—´ç”µè¯æ•…éšœ 涂层ã€ç®¡... | English |
| 6535 | 网络ä¸é€š | 网络ä¸é€šï¼Œå³ä¸‹è§’ç½‘ç»œå›¾æ ‡æ˜¾ç¤ºæœªè... | neovalui kabpfvic | GRP_48 | 网络ä¸é€š 网络ä¸é€šï¼Œå³ä¸‹è§’网络图... | English |
| 6536 | inc1544491 fwd: collaboration_platform | \r\n\r\nreceived from: mdbegvct.dbvichlg@gmail... | mdbegvct dbvichlg | GRP_0 | inc1544491 fwd: collaboration_platform \r\n\r\... | English |
| 6537 | ms excel file not opening -error procted view ... | ms excel file not opening -error procted view ... | unslcdbo jfwqcira | GRP_0 | ms excel file not opening -error procted view ... | English |
| 6538 | this morning i could not log in to my computer... | this morning i could not log in to my computer... | svuboezf wegtszum | GRP_0 | this morning i could not log in to my computer... | English |
| 6539 | user unable to hotel wi-fi | user unable to hotel wi-fi \r\n-advised the us... | sgheqbly mcboawld | GRP_0 | user unable to hotel wi-fi user unable to hot... | English |
| 6540 | symantec endpoint encryption (see) agent deplo... | \r\n\r\nreceived from: hkrecpfv.kgwpbexv@gmail... | hkrecpfv kgwpbexv | GRP_65 | symantec endpoint encryption (see) agent deplo... | English |
| 6541 | wfnbtpkg ixecamwrs email : inplant_843772 | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_26 | wfnbtpkg ixecamwrs email : inplant_843772 \n\n... | English |
| 6542 | job Job_1953d running longer than 30 minutes k... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953d running longer than 30 minutes k... | English |
| 6543 | erp login SID_34 missing. | erp login SID_34 missing.\r\n-connected to the... | pnwcubqr qdlocnzt | GRP_0 | erp login SID_34 missing. erp login SID_34 mis... | English |
| 6544 | erp SID_39 account unlock | erp SID_39 account unlock | elivbznp tynvpcfk | GRP_0 | erp SID_39 account unlock erp SID_39 account u... | English |
| 6545 | solidworks simulation | hi,\r\n\r\nwe request you to provide the detai... | mtkpwcxz vxouhram | GRP_19 | solidworks simulation hi,\r\n\r\nwe request y... | English |
| 6546 | unable to access sales and markhtyeting tab | unable to access sales and markhtyeting tab | hpakdzyj lkrtvosz | GRP_0 | unable to access sales and markhtyeting tab un... | English |
| 6547 | skype screen share issue | when shatryung my screen the other person is o... | pfzxecbo ptygkvzl | GRP_0 | skype screen share issue when shatryung my scr... | English |
| 6548 | receiving the following notification in erp-SI... | my inbox is being overwhelmed with notificatio... | dctviemg muapxkns | GRP_10 | receiving the following notification in erp-SI... | English |
| 6549 | errror submitting discount request form in col... | \r\n\r\nreceived from: zfburidj.jmilguev@gmail... | zfburidj jmilguev | GRP_0 | errror submitting discount request form in col... | English |
| 6550 | power outage : cantabria site is hard down at ... | what type of outage: _x____network _____c... | rkupnshb gsmzfojw | GRP_8 | power outage : cantabria site is hard down at ... | English |
| 6551 | unable to load outlook | unable to load outlook | obanjrhg rnafleys | GRP_0 | unable to load outlook unable to load outlook | English |
| 6552 | request to reset microsoft online services pas... | request to reset microsoft online services pas... | mdbegvct dbvichlg | GRP_0 | request to reset microsoft online services pas... | English |
| 6553 | help to change the windows password using pass... | help to change the windows password using pass... | ewvugfcy nxbdajgh | GRP_0 | help to change the windows password using pass... | English |
| 6554 | blank call // no number // no warehouse_tool | blank call // no number // no warehouse_tool | rbozivdq gmlhrtvp | GRP_0 | blank call // no number // no warehouse_tool b... | English |
| 6555 | erp plm - change bom plant_248 | please, change in mass, the mm below at plant_... | zuyimtsf qjtimdsp | GRP_45 | erp plm - change bom plant_248 please, change ... | English |
| 6556 | message:HostName_1147.company.com.is connected... | received reporting_tool alert at 2:53 pm on 08... | jloygrwh acvztedi | GRP_8 | message:HostName_1147.company.com.is connected... | English |
| 6557 | employee owned mobility agreement | \r\n\r\nreceived from: oqvwgnkc.gkjylpzx@gmail... | oqvwgnkc gkjylpzx | GRP_0 | employee owned mobility agreement \r\n\r\nrece... | English |
| 6558 | stock transfer order errors - pricing and tran... | user is attempting to create a stock transfer ... | wgothrzl iokdftgn | GRP_29 | stock transfer order errors - pricing and tran... | English |
| 6559 | erp login error message | error message states "the specified path does ... | oqvwgnkc gkjylpzx | GRP_0 | erp login error message error message states "... | English |
| 6560 | cannot get access to email | ext.117\nsince yesterday i'm unable to get on... | rqnxlkce nvrzduyk | GRP_0 | cannot get access to email ext.117\nsince yes... | English |
| 6561 | import device type settings from s12 to d & q ... | import device type settings from s12 to d & q ... | rdfjsawg zpmxgdcw | GRP_14 | import device type settings from s12 to d & q ... | English |
| 6562 | collaboration_platform login issue. | ess login issue\r\n-verified user details.(emp... | bnphimjq osmwbjva | GRP_0 | collaboration_platform login issue. ess login ... | English |
| 6563 | erp SID_34 account unlock | erp SID_34 account unlock | vbgmdxuc egflrbou | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 6564 | the same material was posted in two different ... | sometimes we need to send some material to the... | yjcxvrhu mlqfuapc | GRP_13 | the same material was posted in two different ... | English |
| 6565 | job SID_53hotf failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_1 | job SID_53hotf failed in job_scheduler at: 08/... | English |
| 6566 | unlocked erp password | unlocked erp password | fyjivxud ztasbivg | GRP_0 | unlocked erp password unlocked erp password | English |
| 6567 | job SID_41hotf failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_1 | job SID_41hotf failed in job_scheduler at: 08/... | English |
| 6568 | job SID_53hotf failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_1 | job SID_53hotf failed in job_scheduler at: 08/... | English |
| 6569 | job SID_44hotf failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_1 | job SID_44hotf failed in job_scheduler at: 08/... | English |
| 6570 | user called in for an update | user called in for an update | rbozivdq gmlhrtvp | GRP_0 | user called in for an update user called in fo... | English |
| 6571 | login + password very urgent for esprit | \r\n\r\nreceived from: ufzxpadv.hnxmotwu@gmail... | ufzxpadv hnxmotwu | GRP_0 | login + password very urgent for esprit \r\n\r... | English |
| 6572 | need to create a partial delivery today on so ... | when creating the delivery note it reflects th... | qtrmxlgv dfruzvam | GRP_18 | need to create a partial delivery today on so ... | English |
| 6573 | lead form component not working in prod | i have just discovered the lead forms for both... | lenxvcbq vwnhjtoi | GRP_51 | lead form component not working in prod i have... | English |
| 6574 | computer loading temp profile whenever user is... | computer loading temp profile whenever user is... | fmjwzstr yjotleqg | GRP_19 | computer loading temp profile whenever user is... | English |
| 6575 | erp plm - engineering tool programdnty start e... | post login screen receiving attached error\r\n... | hiqkujla vwkdmntg | GRP_11 | erp plm - engineering tool programdnty start e... | English |
| 6576 | printer not kicking out delivery notes | \r\n\r\nreceived from: rtpmlwnk.unpambrv@gmail... | rtpmlwnk unpambrv | GRP_18 | printer not kicking out delivery notes \r\n\r\... | English |
| 6577 | unable to launch hr_tool etime | unable to launch hr_tool etime | dcqsolkx kmsijcuz | GRP_0 | unable to launch hr_tool etime unable to launc... | English |
| 6578 | i cannot open a pptx file that was attached to... | i cannot open a pptx file that was attached to... | xdabnget wryuikgd | GRP_3 | i cannot open a pptx file that was attached to... | English |
| 6579 | unable to see fioghtna wightygins emails | unable to see fioghtna wightygins emails | iqcylpok ascpqvni | GRP_0 | unable to see fioghtna wightygins emails unabl... | English |
| 6580 | vip 2: unable to login to the hub | vip 2: unable to login to the hub | qdilorms feayhdmu | GRP_0 | vip 2: unable to login to the hub vip 2: unabl... | English |
| 6581 | frequent account lockout | frequent account lockout | jusenflm sufbehom | GRP_0 | frequent account lockout frequent account lockout | English |
| 6582 | create delivery note 2053495 / plant plant_12... | \r\n\r\nreceived from: tkuivxrn.urdgitsv@gmail... | qgopxabz xnuieqjr | GRP_6 | create delivery note 2053495 / plant plant_12... | English |
| 6583 | ticket update inplant_852304 | ticket update inplant_852304 | fumkcsji sarmtlhy | GRP_0 | ticket update inplant_852304 ticket update inp... | English |
| 6584 | unable to login to dell 7350 tablet | unable to login to dell 7350 tablet | bycusxji qeafbkro | GRP_0 | unable to login to dell 7350 tablet unable to ... | English |
| 6585 | internet through telecom_vendor_3 now working | \r\n\r\nreceived from: ywfhcuki.dajkmxcl@gmail... | ywfhcuki dajkmxcl | GRP_0 | internet through telecom_vendor_3 now working ... | English |
| 6586 | unable to download a software | unable to download a software | csmhykge mpxbjudw | GRP_0 | unable to download a software unable to downlo... | English |
| 6587 | access to drawings | name:mikhghytr karaffa\nlanguage:\nbrowser:mic... | vfrdxtqw jfbmsenz | GRP_0 | access to drawings name:mikhghytr karaffa\nlan... | English |
| 6588 | password reset | from: nwfodmhc exurcwkm \r\nsent: tuesday, aug... | mkjubdti fbusqrlt | GRP_0 | password reset from: nwfodmhc exurcwkm \r\nsen... | English |
| 6589 | ticket update on inplant_853211 | ticket update on inplant_853211 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_853211 ticket update ... | English |
| 6590 | re: please take this survey related to ticket_... | \r\n\r\nreceived from: cowqyjzm.fzsxgapt@gmail... | cowqyjzm fzsxgapt | GRP_0 | re: please take this survey related to ticket_... | English |
| 6591 | delivery notes has generated delivery-with wro... | delivery notes has generated delivery-with wro... | mtwzniyh orbjskip | GRP_18 | delivery notes has generated delivery-with wro... | English |
| 6592 | unable to log in to skype | unable to log in to skype | hdfcwmag plxstkad | GRP_0 | unable to log in to skype unable to log in to ... | English |
| 6593 | german call // caller disconnected after heari... | german call // caller disconnected after heari... | rbozivdq gmlhrtvp | GRP_0 | german call // caller disconnected after heari... | English |
| 6594 | outlook not responding | outlook not responding | hdfcwmag plxstkad | GRP_0 | outlook not responding outlook not responding | English |
| 6595 | software installation | software installation | mfeyouli ndobtzpw | GRP_0 | software installation software installation | English |
| 6596 | the caller id display on users desk phone does... | from: cwuospin nbhoxqpe \nsent: tuesday, augus... | ciszbkoh xozqjavr | GRP_37 | the caller id display on users desk phone does... | English |
| 6597 | need to add additional mailboxes | need to add additional mailboxes | tqpbazxm jhbkycgd | GRP_0 | need to add additional mailboxes need to add a... | English |
| 6598 | ticket_no1544198 - ticket update | ticket_no1544198 - ticket update | olckhmvx pcqobjnd | GRP_0 | ticket_no1544198 - ticket update ticket_no1544... | English |
| 6599 | job Job_1314 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/23... | English |
| 6600 | erp connections issue | erp connections issue | kslhobgj cyhvefna | GRP_0 | erp connections issue erp connections issue | English |
| 6601 | reset the password for gülperi aköz on erp /... | on erp SID_34, SID_37 i want to reset my pass... | plbwhxqt tqzdygxw | GRP_0 | reset the password for gülperi aköz on erp /... | English |
| 6602 | kiosk user - account expired // onjzqptl kgxmisbj | kiosk user - account expired // onjzqptl kgxmisbj | rbozivdq gmlhrtvp | GRP_0 | kiosk user - account expired // onjzqptl kgxmi... | English |
| 6603 | account unlock | account unlock | jusenflm sufbehom | GRP_0 | account unlock account unlock | English |
| 6604 | cannot open attachments in owa, shows a white ... | cannot open attachments in owa, shows a white ... | ufixygtn yuoxcmek | GRP_3 | cannot open attachments in owa, shows a white ... | English |
| 6605 | cannot access crm | cannot access crm - my contact info is | xioapjvd yiqubxmz | GRP_0 | cannot access crm cannot access crm - my conta... | English |
| 6606 | logon balancing error on erp | logon balancing error on erp | jrzpcesm oznigwvj | GRP_0 | logon balancing error on erp logon balancing ... | English |
| 6607 | performance improvement for supervisor dashban... | performance improvement for supervisor dashban... | entuakhp xrnhtdmk | GRP_41 | performance improvement for supervisor dashban... | English |
| 6608 | reset the password for chkmejsn lvidgknc on er... | please unlock my erp account. i know the pass... | chkmejsn lvidgknc | GRP_0 | reset the password for chkmejsn lvidgknc on er... | English |
| 6609 | skype will not let me sign in. says "the addr... | skype will not let me sign in. says "the addr... | wjtzrmqc ikqpbflg | GRP_0 | skype will not let me sign in. says "the addr... | English |
| 6610 | erp SID_34 password reset. | erp SID_34 password reset. | nbdljruw axcrspyh | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 6611 | job SID_24arc1 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_24arc1 failed in job_scheduler at: 08/... | English |
| 6612 | user id locked | \r\n\r\nreceived from: bqyfwclo.osjklifb@gmail... | bqyfwclo osjklifb | GRP_0 | user id locked \r\n\r\nreceived from: bqyfwclo... | English |
| 6613 | job SID_30arc1 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_30arc1 failed in job_scheduler at: 08/... | English |
| 6614 | collaboration_platform cloud ordner gelöscht | \n\nreceived from: uwncfovt.vxjbunfi@gmail.com... | uwncfovt vxjbunfi | GRP_0 | collaboration_platform cloud ordner gelöscht ... | German |
| 6615 | job SID_23arc1 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_23arc1 failed in job_scheduler at: 08/... | English |
| 6616 | job Job_711 failed in job_scheduler at: 08/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_711 failed in job_scheduler at: 08/23/... | English |
| 6617 | job Job_2021a failed in job_scheduler at: 08/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2021a failed in job_scheduler at: 08/2... | English |
| 6618 | job SID_23arc2 failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job SID_23arc2 failed in job_scheduler at: 08/... | English |
| 6619 | need erp access to user vv180822 for erp incid... | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | svdefgwl sgtmurfh | GRP_2 | need erp access to user vv180822 for erp incid... | English |
| 6620 | job Job_714 failed in job_scheduler at: 08/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_714 failed in job_scheduler at: 08/23/... | English |
| 6621 | please run job jb_cust_db_file. please assign ... | hello,\r\n\r\ncould you please run the job jb_... | rcbdyslq zuspjbtw | GRP_20 | please run job jb_cust_db_file. please assign ... | English |
| 6622 | cross company in erp not allowed | on transactions f-43 and f-60, user can no lon... | wifevnpm bkcixfjd | GRP_10 | cross company in erp not allowed on transactio... | English |
| 6623 | npc 311104334 mm6283517 | hello it service,\nmy manager serthyei needs t... | vlymsnej whlqxcst | GRP_11 | npc 311104334 mm6283517 hello it service,\nmy ... | English |
| 6624 | erp hcm: zpd_upload_time | \n\nreceived from: jywvemun.qngschtz@gmail.com... | jywvemun qngschtz | GRP_20 | erp hcm: zpd_upload_time \n\nreceived from: j... | German |
| 6625 | account locked. | account locked. | vfoyenlw ntpbdeyf | GRP_0 | account locked. account locked. | English |
| 6626 | job Job_3028 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_3028 failed in job_scheduler at: 08/23... | English |
| 6627 | fehler wie gehabt - inplant_852536 | datenbanken lassen sich noch nicht öffnen\r\n... | djilqgmw bidchqsg | GRP_12 | fehler wie gehabt - inplant_852536 datenbanke... | German |
| 6628 | zugriff auf betriebsmittedatenbank ce_cs funkt... | zugriff auf betriebsmittedatenbank ce_cs funkt... | tiefszyh sfujdlgv | GRP_0 | zugriff auf betriebsmittedatenbank ce_cs funkt... | German |
| 6629 | for error message "inwarehouse_tool document s... | can't posting in t-code miro. error message i... | cthaborg cahbxlmr | GRP_10 | for error message "inwarehouse_tool document s... | English |
| 6630 | job Job_3028 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_45 | job Job_3028 failed in job_scheduler at: 08/23... | English |
| 6631 | def. montitor wechseln | bitte den def. monitor von der lüftungssteuer... | ndkrcxjb hpormqtx | GRP_42 | def. montitor wechseln bitte den def. monitor ... | German |
| 6632 | access requited for vl02n for post goods issues | \r\n\r\nreceived from: wrelsfqa.qfwosjkh@gmail... | wrelsfqa qfwosjkh | GRP_2 | access requited for vl02n for post goods issue... | English |
| 6633 | outlook hangs / does not open | outlook hangs / does not open | mvhcoqed konjdmwq | GRP_0 | outlook hangs / does not open outlook hangs / ... | English |
| 6634 | circuit outage vogelfontein :company-eu-zaf-v... | what type of outage: _____network ___x__c... | uxgrdjfc kqxdjeov | GRP_8 | circuit outage vogelfontein :company-eu-zaf-v... | English |
| 6635 | job Job_512 failed in job_scheduler at: 08/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_512 failed in job_scheduler at: 08/23/... | English |
| 6636 | job Job_495 failed in job_scheduler at: 08/23/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_495 failed in job_scheduler at: 08/23/... | English |
| 6637 | r216 maus defekt | r216 maus defekt | mhvbnqri sacvgzxf | GRP_33 | r216 maus defekt r216 maus defekt | English |
| 6638 | pc an reinecker wzs60 wahrscheinlich defekt. m... | pc an reinecker wzs60 wahrscheinlich defekt. m... | jcgzqndm hukibzqa | GRP_33 | pc an reinecker wzs60 wahrscheinlich defekt. m... | German |
| 6639 | erp SID_34 account locked. | erp SID_34 account locked. | emjalxih bcetgmhr | GRP_0 | erp SID_34 account locked. erp SID_34 account ... | English |
| 6640 | outlook is prompting for password | outlook is prompting for password | urxvagbn sibmvrqc | GRP_0 | outlook is prompting for password outlook is ... | English |
| 6641 | drucker geht nach tonerwechsel nicht mehr | drucker geht nach tonerwechsel nicht mehr | ijsptgkh giojsnqz | GRP_33 | drucker geht nach tonerwechsel nicht mehr druc... | German |
| 6642 | job Job_2662 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_18 | job Job_2662 failed in job_scheduler at: 08/23... | English |
| 6643 | lüfter defekt \rechner für videoüberwachung | lüfter defekt \rechner für videoüberwachung | niptbwdq csenjruz | GRP_24 | lüfter defekt \rechner für videoüberwachung... | Waray |
| 6644 | usb keybankr/monitor | requested for usb keybankrd and external monit... | vwaliogd dviwuzhm | GRP_19 | usb keybankr/monitor requested for usb keybank... | English |
| 6645 | user cwfzldts dlmukhyn cannot create purchasin... | he get the error "documenttype no available fo... | rhinvtua aquyjfbs | GRP_29 | user cwfzldts dlmukhyn cannot create purchasin... | English |
| 6646 | setup rechner ewew8323869 \wrcktgbd wzrgyunp | setup rechner ewew8323869 \wrcktgbd wzrgyunp | wrcktgbd wzrgyunp | GRP_24 | setup rechner ewew8323869 \wrcktgbd wzrgyunp s... | Luxembourgish |
| 6647 | ich benötige netzwerkkabel für den teleservi... | hallo herr bghakch,\r\nich benötige netzwerkk... | qidgvtwa qvbutayx | GRP_24 | ich benötige netzwerkkabel für den teleservi... | German |
| 6648 | probleme mit lan Ãn beschprechungsraum \puxsv... | probleme mit lan Ãn beschprechungsraum \puxsv... | puxsvfwr cwkjruni | GRP_24 | probleme mit lan Ãn beschprechungsraum \puxsv... | German |
| 6649 | account names not seems on crm | i have issue when i try to create oppurtunitie... | fhcmnxat geazkjcs | GRP_40 | account names not seems on crm i have issue wh... | English |
| 6650 | conversion issue with the drawing nxd/71880207... | 1.) only pdf got converted and accessible,... | ahmfwdxp frkmcqhg | GRP_0 | conversion issue with the drawing nxd/71880207... | English |
| 6651 | attendance_tool issue | \r\n\r\nreceived from: ufgkybsh.ijswtdve@gmail... | ufgkybsh ijswtdve | GRP_0 | attendance_tool issue \r\n\r\nreceived from: u... | English |
| 6652 | account locked in ad | account locked in ad | ofwxjriq rwcxkflq | GRP_0 | account locked in ad account locked in ad | English |
| 6653 | after changing my login id password in passwor... | name:wnorzsyv mdflqwxg\nlanguage:\nbrowser:mic... | wnorzsyv mdflqwxg | GRP_0 | after changing my login id password in passwor... | English |
| 6654 | unable to send or receive email | unable to send or receive email | iowkrcpd snrvlhyc | GRP_0 | unable to send or receive email unable to sen... | English |
| 6655 | windows account locked | windows account locked | vmbltjsf gwryhfbe | GRP_0 | windows account locked windows account locked | English |
| 6656 | unable to login into attendance_tool | i am unable to login to attendance_tool using ... | iqpuxcbj nbaztpms | GRP_0 | unable to login into attendance_tool i am unab... | English |
| 6657 | job Job_3028 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/23... | English |
| 6658 | job Job_3028 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_3028 failed in job_scheduler at: 08/23... | English |
| 6659 | job Job_3028 failed in job_scheduler at: 08/23... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/23... | English |
| 6660 | job hr_tooldplcmmaninp failed in job_scheduler... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job hr_tooldplcmmaninp failed in job_scheduler... | English |
| 6661 | windows account locked | windows account locked | khgfbrdo vjxopikc | GRP_0 | windows account locked windows account locked | English |
| 6662 | unable to login to engineering tool | unable to login to engineering tool | pkzthgea kgvsdmpj | GRP_0 | unable to login to engineering tool unable to ... | English |
| 6663 | unable to open outlook | unable to open outlook | tqemuawj mvcqrbaz | GRP_0 | unable to open outlook unable to open outlook | English |
| 6664 | unable to login to engineering tool | unable to login to engineering tool | jtaronux xvurkcbi | GRP_0 | unable to login to engineering tool unable to... | English |
| 6665 | awyw7217971 | \n\nreceived from: utgszjrf.pacfvxzk@gmail.com... | utgszjrf pacfvxzk | GRP_19 | awyw7217971 \n\nreceived from: utgszjrf.pacfvx... | English |
| 6666 | microsoft office software have problem, couldn... | contact phone: +86\nsystem: windows 7\nerror m... | htzauevc nhxlvkta | GRP_0 | microsoft office software have problem, couldn... | English |
| 6667 | shipping notification | \r\n\r\nreceived from: bfckamsg.tzdkbmfe@gmail... | bfckamsg tzdkbmfe | GRP_18 | shipping notification \r\n\r\nreceived from: ... | English |
| 6668 | network outage :: company-eu-che-company-swit... | what type of outage: ___x__network _____c... | uxgrdjfc kqxdjeov | GRP_8 | network outage :: company-eu-che-company-swit... | English |
| 6669 | job Job_3028 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_45 | job Job_3028 failed in job_scheduler at: 08/22... | English |
| 6670 | ksem / wzs60 / m1 (m07.15360) | pc defekt, ist selbstständig runter gefahren ... | zxopwyak zrbfkimx | GRP_33 | ksem / wzs60 / m1 (m07.15360) pc defekt, ist s... | German |
| 6671 | advanced search does not use the material fiel... | the same set of results is returned regardless... | esntuago kwxrdhuv | GRP_25 | advanced search does not use the material fiel... | English |
| 6672 | not able to open jpg image files. | \r\n\r\nreceived from: ulroqsyf.wctpnarb@gmail... | ulroqsyf wctpnarb | GRP_0 | not able to open jpg image files. \r\n\r\nrece... | English |
| 6673 | lorw8327797sf(usa robot):outlook did not compl... | lorw8327797sf(usa robot):outlook did not compl... | jloygrwh acvztedi | GRP_8 | lorw8327797sf(usa robot):outlook did not compl... | English |
| 6674 | job Job_1953d failed in job_scheduler at: 08/2... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_1953d failed in job_scheduler at: 08/2... | English |
| 6675 | job Job_1953d :was running longer than 30 minutes | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953d :was running longer than 30 minu... | English |
| 6676 | usa has 2 unresolved mii password lockouts-emp... | hi all, \n \nwe had 3-4 occurences where peopl... | epivntxc fdrxmuga | GRP_0 | usa has 2 unresolved mii password lockouts-emp... | English |
| 6677 | job hr_tooldplcmmaninp failed in job_scheduler... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job hr_tooldplcmmaninp failed in job_scheduler... | English |
| 6678 | dell 7350: blue screen error.urgent | dell 7350: blue screen error\n-user has tried ... | qjiutmel fgvtxeoy | GRP_3 | dell 7350: blue screen error.urgent dell 7350... | English |
| 6679 | unable to launch outlook | unable to launch outlook | dalhjmcn fisvztuy | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 6680 | distributor_tool page error | distributor_tool page error | iefgkray zdyksvpw | GRP_0 | distributor_tool page error distributor_tool p... | Waray |
| 6681 | did we send out automatic erp gui upgrade | name:stefdgthyo\nlanguage:\nbrowser:microsoft ... | ejpvuxrg tryaibcx | GRP_0 | did we send out automatic erp gui upgrade name... | English |
| 6682 | network outage :india, india - (company) hard ... | what type of outage: ___x__network _____c... | jloygrwh acvztedi | GRP_8 | network outage :india, india - (company) hard ... | English |
| 6683 | vpn connection issues. | vpn connection issues.\r\n-connected to the us... | gbwviklo ukwijqtm | GRP_0 | vpn connection issues. vpn connection issues.\... | English |
| 6684 | job HostName_1019fail2 failed in job_scheduler... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail2 failed in job_scheduler... | English |
| 6685 | mobile device activation for the new iphone | mobile device activation for the new iphone | hvjmxkcp pvzlgeyw | GRP_0 | mobile device activation for the new iphone mo... | English |
| 6686 | decimal values in "daily qty confirmed" | usa plant, work center preeco showing 4840.1 i... | entuakhp xrnhtdmk | GRP_41 | decimal values in "daily qty confirmed" usa pl... | English |
| 6687 | otd to frozen date alert issue | in supervisor dashbankrd the "otd to frozen da... | entuakhp xrnhtdmk | GRP_41 | otd to frozen date alert issue in supervisor d... | English |
| 6688 | setup time not calculated properly | email from kanchi (usa) on how confirmation ti... | entuakhp xrnhtdmk | GRP_41 | setup time not calculated properly email from ... | English |
| 6689 | global erp crm: please investigate why agbigh... | global erp crm: please investigate why agbigh... | aoyrspjv hctgfeal | GRP_15 | global erp crm: please investigate why agbigh... | English |
| 6690 | can't search work center # in machine # field ... | erp-mii\r\n\r\nwe can search machine numbers b... | entuakhp xrnhtdmk | GRP_41 | can't search work center # in machine # field ... | English |
| 6691 | job HostName_1019fail1 failed in job_scheduler... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail1 failed in job_scheduler... | English |
| 6692 | cannot change in conditions tab | \r\n\r\nreceived from: nuhfwplj.ojcwxser@gmail... | nuhfwplj ojcwxser | GRP_13 | cannot change in conditions tab \r\n\r\nreceiv... | English |
| 6693 | reset passwords for pzjelyxg vstyaouc using pa... | the | pzjelyxg vstyaouc | GRP_17 | reset passwords for pzjelyxg vstyaouc using pa... | English |
| 6694 | ticket update on ticket_no0432805 | ticket update on ticket_no0432805 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0432805 ticket updat... | English |
| 6695 | quadra chek pc in the eaymvrzj bumzwtco will n... | quadra chek pc in the eaymvrzj bumzwtco will n... | nwgcbfdt ahmbnsoi | GRP_3 | quadra chek pc in the eaymvrzj bumzwtco will n... | English |
| 6696 | collaboration_platform site ownership | \r\n\r\nreceived from: unrbafjx.reyshakw@gmail... | unrbafjx reyshakw | GRP_16 | collaboration_platform site ownership \r\n\r\... | English |
| 6697 | vip 2 // unable to open any files from collabo... | stdezpqw bkmeuhfz has never been able to open ... | stdezpqw bkmeuhfz | GRP_16 | vip 2 // unable to open any files from collabo... | English |
| 6698 | cannot access to company collaboration_platform | \r\n\r\nreceived from: zywoxerf.paqxtrfk@gmail... | zywoxerf paqxtrfk | GRP_0 | cannot access to company collaboration_platfor... | English |
| 6699 | erp order acknowledgement weight difference | \r\n\r\nreceived from: nuhfwplj.ojcwxser@gmail... | nuhfwplj ojcwxser | GRP_13 | erp order acknowledgement weight difference \r... | English |
| 6700 | unable to load collaboration_platform | unable to load collaboration_platform | shpnkgir mpsycbxl | GRP_0 | unable to load collaboration_platform unable t... | English |
| 6701 | india company: tcl circuit intermittently flap... | intermittent flap in tcl link.. tcl#3740oc220816. | mnlazfsr mtqrkhnx | GRP_4 | india company: tcl circuit intermittently flap... | English |
| 6702 | having to approve the same credit memo several... | please review the approver level for stefyty r... | sghamujc shompueb | GRP_13 | having to approve the same credit memo several... | English |
| 6703 | unable to login to the replacement laptop as i... | unable to login to the replacement laptop as i... | eocvkuxw eqfsphnd | GRP_0 | unable to login to the replacement laptop as i... | English |
| 6704 | job Job_1374 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1374 failed in job_scheduler at: 08/22... | English |
| 6705 | account locked | account locked | cvjdqazg ejdnpytr | GRP_0 | account locked account locked | English |
| 6706 | skype connectivity is flickering: automaticall... | network team,\r\n\r\nkindly look into the belo... | qasouhlc xkhsirtd | GRP_4 | skype connectivity is flickering: automaticall... | English |
| 6707 | unable access - net weaver | \r\n\r\nreceived from: rhwvpmlq.zuwhpqrc@gmail... | rhwvpmlq zuwhpqrc | GRP_0 | unable access - net weaver \r\n\r\nreceived fr... | English |
| 6708 | team sproc is not assigning indirect revenue | the tam sproc is incorrectly inner joining pre... | fqxnplkb cqhnavfp | GRP_25 | team sproc is not assigning indirect revenue t... | English |
| 6709 | pikosa cannot log into work station | hello,\r\nxepcsrvh tbsokfyl for several days c... | ahydmrbu fjymgtvo | GRP_7 | pikosa cannot log into work station hello,\r\n... | English |
| 6710 | download drawing response is error even though... | when i send the input to download a drawing, i... | tskwevno sjhpoakl | GRP_20 | download drawing response is error even though... | English |
| 6711 | unable to login to erp SID_34 | unable to login to erp SID_34 | afslkeui qgzfptjw | GRP_0 | unable to login to erp SID_34 unable to login ... | English |
| 6712 | network outage :kingston, pa :site is hard dow... | what type of outage: __x___network _____c... | oldrctiu bxurpsyi | GRP_4 | network outage :kingston, pa :site is hard dow... | English |
| 6713 | circuit outage:usa, nv - divestiture site:seco... | what type of outage: _____network _x____c... | oldrctiu bxurpsyi | GRP_8 | circuit outage:usa, nv - divestiture site:seco... | English |
| 6714 | emails | \n\nreceived from: raifstow.gfeymtql@gmail.com... | raifstow gfeymtql | GRP_0 | emails \n\nreceived from: raifstow.gfeymtql@gm... | English |
| 6715 | circuit outage:vogelfontein, south africa , sa... | what type of outage: _____network __x___c... | oldrctiu bxurpsyi | GRP_8 | circuit outage:vogelfontein, south africa , sa... | English |
| 6716 | roadking features | the features on the road king page are not exp... | lenxvcbq vwnhjtoi | GRP_51 | roadking features the features on the road kin... | English |
| 6717 | erp SID_34 password reset | erp SID_34 password reset | rzglsoma qkjfwmnz | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 6718 | probleme mit vpn client | \r\n\r\nreceived from: fmhlugqk.dpraethi@gmail... | fmhlugqk dpraethi | GRP_0 | probleme mit vpn client \r\n\r\nreceived from:... | German |
| 6719 | unable to log in to erp SID_34 | unable to log in to erp SID_34 | varldgiw hfyogqnj | GRP_0 | unable to log in to erp SID_34 unable to log i... | English |
| 6720 | require access to canadian legal reporting web... | \n\nreceived from: wznkpjis.rantlypb@gmail.com... | wznkpjis rantlypb | GRP_0 | require access to canadian legal reporting web... | English |
| 6721 | user not able to connect to t drive | user not able to connect to t drive | crkdjbot qiztrxne | GRP_0 | user not able to connect to t drive user not ... | English |
| 6722 | request to reset microsoft online services pas... | \r\n\r\nfrom: nwfodmhc exurcwkm \r\nsent: mond... | aedzqlvj mkosyxgh | GRP_34 | request to reset microsoft online services pas... | English |
| 6723 | collaboration_platform issue | collaboration_platform issue | crqonkxm ipyazqjx | GRP_0 | collaboration_platform issue collaboration_pla... | English |
| 6724 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | tmbxvipy knsdqlbx | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 6725 | request to reset microsoft online services pa... | \r\n\r\nfrom: nwfodmhc exurcwkm \r\nsent: mond... | bmhxwvys tdmgolwn | GRP_0 | request to reset microsoft online services pa... | English |
| 6726 | skype calls not working | \r\n\r\nreceived from: pyrtfdxu.nxfkqmoy@gmail... | pyrtfdxu nxfkqmoy | GRP_0 | skype calls not working \r\n\r\nreceived from:... | English |
| 6727 | logon missing in erp | name:mitctdrh whaley\nlanguage:\nbrowser:micro... | trhuymvb egpcwrkj | GRP_0 | logon missing in erp name:mitctdrh whaley\nlan... | English |
| 6728 | symantec software message | \r\n\r\nreceived from: doxmlcpr.xjheyscu@gmail... | doxmlcpr xjheyscu | GRP_0 | symantec software message \r\n\r\nreceived fro... | English |
| 6729 | windows account lockout | windows account lockout | wbgxieyh zvasjtdc | GRP_0 | windows account lockout windows account lockout | English |
| 6730 | unable to boot system to windows | unable to boot system to windows | fhiauwkz vwcqrohl | GRP_0 | unable to boot system to windows unable to boo... | English |
| 6731 | netweaver password is not working. | netweaver password is not working. | lqxhoyic ojxkuftc | GRP_0 | netweaver password is not working. netweaver p... | English |
| 6732 | bluetooth mouse is not working. | bluetooth mouse is not working. | ubqiygva zdkfxyel | GRP_0 | bluetooth mouse is not working. bluetooth mous... | English |
| 6733 | unable to login past see | unable to login past see | bkzcfmse naslrwdb | GRP_0 | unable to login past see unable to login past see | English |
| 6734 | security incidents - ( dsw incident no ) : sus... | ========================\nincident overview\n=... | gzhapcld fdigznbk | GRP_12 | security incidents - ( dsw incident no ) : sus... | English |
| 6735 | downgrade to ie10 | downgrade to ie10 | lduqxywt wcydjgvl | GRP_0 | downgrade to ie10 downgrade to ie10 | English |
| 6736 | ess password reset | ess password reset | tmbxvipy knsdqlbx | GRP_0 | ess password reset ess password reset | English |
| 6737 | warehouse_tool quality issues when high link u... | warehouse_tool quality issues when high link u... | jvhqyamt wodzrcjg | GRP_4 | warehouse_tool quality issues when high link u... | English |
| 6738 | account locked out | account locked out | qoiyjcah zxevofwn | GRP_0 | account locked out account locked out | English |
| 6739 | blank call // gso | blank call // gso | rbozivdq gmlhrtvp | GRP_0 | blank call // gso blank call // gso | English |
| 6740 | unable to connect to wifi | unable to connect to wifi | lrbjqcmh jbiwtzqr | GRP_0 | unable to connect to wifi unable to connect to... | English |
| 6741 | monitor orientation error | monitor orientation error | ihozauxs ohdqmipz | GRP_0 | monitor orientation error monitor orientation ... | English |
| 6742 | company owned iphone stolen | company owned iphone stolen | tskvmwag awkrdqzb | GRP_0 | company owned iphone stolen company owned ipho... | English |
| 6743 | microsoft password reset | microsoft password reset | rdwpangu lybaxonw | GRP_0 | microsoft password reset microsoft password r... | English |
| 6744 | qlhmawgi sgwipoxn password not working | name:inhekdol anvqzdif\nlanguage:\nbrowser:mic... | inhekdol anvqzdif | GRP_0 | qlhmawgi sgwipoxn password not working name:in... | English |
| 6745 | please get some ramdnty for me. | please get some ramdnty for me. | qnvjhgmc nicvbrzg | GRP_3 | please get some ramdnty for me. please get s... | English |
| 6746 | etime is not working | etime is not working | nhixruet elnjqdwg | GRP_3 | etime is not working etime is not working | English |
| 6747 | please check josh's % in the phones | please check josh's % in the phones | anpwcmdh tjsgualn | GRP_3 | please check josh's % in the phones please che... | English |
| 6748 | setup access for ethics | setup access for ethics | vfrdxtqw jfbmsenz | GRP_0 | setup access for ethics setup access for ethics | English |
| 6749 | server migration germany - we are not able to ... | server migration germany - we are not able to ... | xpcunegv eyxwmzgk | GRP_0 | server migration germany - we are not able to ... | English |
| 6750 | security incidents - ( #in33669678 ) : possibl... | source ip: 93.115.241.50\nsource hostname: 93.... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33669678 ) : possibl... | English |
| 6751 | server migration germany; contactperson: cioeh... | no access to data on the server! can't proceed... | gbtshxqn nbvmceyx | GRP_12 | server migration germany; contactperson: cioeh... | English |
| 6752 | erp won't allow me to create an attachment to ... | when trying to attach tax exemption forms to t... | bixvmnar glakoprc | GRP_0 | erp won't allow me to create an attachment to ... | English |
| 6753 | user has questions on the use of password_mana... | user has questions on the use of password_mana... | tskvmwag awkrdqzb | GRP_0 | user has questions on the use of password_mana... | English |
| 6754 | everytime i click something in erp i hear an a... | at the header i get this pop up erp gui se... | nibaotpy vmxathog | GRP_0 | everytime i click something in erp i hear an a... | English |
| 6755 | replacing current laptop | thomklmas is replacing current laptop. | xioapjvd yiqubxmz | GRP_3 | replacing current laptop thomklmas is replacin... | English |
| 6756 | will not come up | not showixepyfbga wtqdyoin drive at all | hdfcwmag plxstkad | GRP_3 | will not come up not showixepyfbga wtqdyoin dr... | English |
| 6757 | my email isn't updating in the morning | \r\n\r\nreceived from: pjxclyhs.fcniljtu@gmail... | pjxclyhs fcniljtu | GRP_0 | my email isn't updating in the morning \r\n\r\... | English |
| 6758 | ticket update on inplant_852749 | ticket update on inplant_852749 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_852749 ticket update ... | English |
| 6759 | password problem | hello,\r\n\r\nmy password is locked when i log... | wmrozfpt ltgcofqp | GRP_0 | password problem hello,\r\n\r\nmy password is ... | English |
| 6760 | audio not working | audio not working | sbvlxuwm yanbikrx | GRP_0 | audio not working audio not working | English |
| 6761 | erp blank screen | erp blank screen | wvqgbdhm fwchqjor | GRP_0 | erp blank screen erp blank screen | English |
| 6762 | unable to start the computer. its showing star... | unable to start the computer. its showing star... | yhzdtkla ncobgtdm | GRP_0 | unable to start the computer. its showing star... | English |
| 6763 | job Job_1314 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/22... | English |
| 6764 | reset passwords for horeduca ogrhivnm using pa... | the | horeduca ogrhivnm | GRP_17 | reset passwords for horeduca ogrhivnm using pa... | English |
| 6765 | erp SID_34 password reset (requested by ughzil... | erp SID_34 password reset (requested by ughzil... | sqlmtixr urhbvfgd | GRP_0 | erp SID_34 password reset (requested by ughzil... | English |
| 6766 | i am trying to open a file attached to a crm a... | the is a file attached to a crm i am trying to... | iljahycm cknjzewf | GRP_3 | i am trying to open a file attached to a crm a... | English |
| 6767 | read and write access for m drive folder | \n\nreceived from: nrbgctwm.kfwdhrmt@gmail.com... | nrbgctwm kfwdhrmt | GRP_12 | read and write access for m drive folder \n\nr... | English |
| 6768 | unable to outlook | unable to outlook | nsqwfchp eqgoitdn | GRP_0 | unable to outlook unable to outlook | English |
| 6769 | reset the password for mfvkxghn mzjasxqd on ot... | i need my password set for the quality assuran... | mfvkxghn mzjasxqd | GRP_0 | reset the password for mfvkxghn mzjasxqd on ot... | English |
| 6770 | bitte einen arbeitszeitplan erstellen für die... | bitte einen arbeitszeitplan erstellen für die... | ltxzfcgm sxvigclz | GRP_52 | bitte einen arbeitszeitplan erstellen für die... | German |
| 6771 | account locked in ad | account locked in ad | aglsimtd ovnyhizx | GRP_0 | account locked in ad account locked in ad | English |
| 6772 | ticket update on ticket_no0428491 | ticket update on ticket_no0428491 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0428491 ticket updat... | English |
| 6773 | job Job_746w failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_746w failed in job_scheduler at: 08/22... | English |
| 6774 | skype -disconnecting of skype calls- more then... | skype - disconnecting of skype calls - more th... | qdxyifhj zbwtunpy | GRP_0 | skype -disconnecting of skype calls- more then... | English |
| 6775 | account getting locked each monday | account getting locked each monday | xmebhckt yrnwqfbp | GRP_0 | account getting locked each monday account get... | English |
| 6776 | atualização programdntya ted | preciso entregar as declarações e o programd... | frjpkuwq rtznexbq | GRP_62 | atualização programdntya ted preciso entrega... | Portuguese |
| 6777 | vip 2 symantec login does not synch passwords ... | vip 2 symantec login does not synch passwords ... | stdezpqw bkmeuhfz | GRP_0 | vip 2 symantec login does not synch passwords ... | English |
| 6778 | account locked in ad | account locked in ad | voalfshq eihcmgnl | GRP_0 | account locked in ad account locked in ad | English |
| 6779 | job Job_3028 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/22... | English |
| 6780 | zugriffsrechte auf den ordner ce-teamleiter | freigabe durch hr. grergtger | wfbkucds qaxhbois | GRP_0 | zugriffsrechte auf den ordner ce-teamleiter fr... | German |
| 6781 | set back document | t: +49\nplease set back this document to statu... | pjrhqkne ewruqyds | GRP_12 | set back document t: +49\nplease set back thi... | German |
| 6782 | unable to login to erp | SID_34 - erp production account locked out | krutjqwp qomksnhd | GRP_0 | unable to login to erp SID_34 - erp production... | English |
| 6783 | job Job_3028 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/22... | English |
| 6784 | reset password for erp - vvkthyiska account bl... | \n\nreceived from: krutjqwp.qomksnhd@gmail.com... | krutjqwp qomksnhd | GRP_0 | reset password for erp - vvkthyiska account bl... | English |
| 6785 | help with excel that updates from crm | \n\nreceived from: eqwaiphc.qxwfeuth@gmail.com... | eqwaiphc qxwfeuth | GRP_0 | help with excel that updates from crm \n\nrece... | English |
| 6786 | missing archive email | \r\n\r\nreceived from: rcbdyslq.zuspjbtw@gmail... | rcbdyslq zuspjbtw | GRP_0 | missing archive email \r\n\r\nreceived from: r... | English |
| 6787 | job Job_3028 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/22... | English |
| 6788 | misplaced password | password misplaced | djwkpmhl kbgjnywa | GRP_0 | misplaced password password misplaced | English |
| 6789 | edi bestellungen der ksb ag | sehr geehrte damen und herren,\r\n\r\nkönnen ... | pxsghrjd wiehqmka | GRP_32 | edi bestellungen der ksb ag sehr geehrte damen... | German |
| 6790 | re: deployment notification | telephony_softwa... | \r\n\r\nreceived from: urvitans.laqdwvgo@gmail... | urvitans laqdwvgo | GRP_0 | re: deployment notification | telephony_softwa... | English |
| 6791 | reset password - karnos | \r\n\r\nreceived from: zrpemyab.xvzwcbha@gmail... | bmhxwvys tdmgolwn | GRP_0 | reset password - karnos \r\n\r\nreceived from:... | English |
| 6792 | i'm no more able to find a folder in outlook. | ic\r\n welcome, our next available agent will ... | gxuvbcpr libcktnm | GRP_0 | i'm no more able to find a folder in outlook. ... | English |
| 6793 | delete the charm- 7000006672 | delete the charm 8111117783 as the configurati... | rujteoza mcoswhju | GRP_38 | delete the charm- 7000006672 delete the charm ... | English |
| 6794 | job Job_3028 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/22... | English |
| 6795 | unable to login to citrix | unable to login to citrix | zthxyfpn ctsgrafo | GRP_0 | unable to login to citrix unable to login to c... | English |
| 6796 | probleme mit login \ypladjeu wzfryxav | probleme mit login \ypladjeu wzfryxav | ypladjeu wzfryxav | GRP_24 | probleme mit login \ypladjeu wzfryxav probleme... | Danish |
| 6797 | probleme mit outlook \dtlmbcrx mwuateyx | probleme mit outlook \dtlmbcrx mwuateyx | dtlmbcrx mwuateyx | GRP_24 | probleme mit outlook \dtlmbcrx mwuateyx proble... | English |
| 6798 | drucker funktioniert nicht \puxsvfwr cwkjruni | drucker funktioniert nicht \puxsvfwr cwkjruni | puxsvfwr cwkjruni | GRP_24 | drucker funktioniert nicht \puxsvfwr cwkjruni ... | German |
| 6799 | confirmations in bls (beschichtungsleitstand) ... | location: germany, coating department cvd\r\n\... | xsjqhdgp ymstzudl | GRP_25 | confirmations in bls (beschichtungsleitstand) ... | English |
| 6800 | unable to open the order confirmation from the... | \r\n\r\nreceived from: rslvwpnh.emkfpqiy@gmail... | rslvwpnh emkfpqiy | GRP_13 | unable to open the order confirmation from the... | English |
| 6801 | erp SID_34 account locked | erp SID_34 account locked | gmneclxj czqthmrs | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 6802 | system disk of server HostName_698 is full | \r\n\r\nreceived from: fbyusmxz.kxvmcbly@gmail... | fbyusmxz kxvmcbly | GRP_12 | system disk of server HostName_698 is full \r... | English |
| 6803 | persönliches laufwerk "adelhmk" nicht mehr ve... | bitte scghhnellstmöglich persönliches laufwe... | wtxvqngf nxjivlmr | GRP_12 | persönliches laufwerk "adelhmk" nicht mehr ve... | German |
| 6804 | job Job_3028 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_3028 failed in job_scheduler at: 08/22... | English |
| 6805 | crm problems | \r\n\r\nreceived from: rugdyxqh.aqvocmuy@gmail... | rugdyxqh aqvocmuy | GRP_0 | crm problems \r\n\r\nreceived from: rugdyxqh.a... | English |
| 6806 | when i double click on a production order in e... | i have no where to insert an amount to allow m... | jyrzqhgt xwasiehc | GRP_45 | when i double click on a production order in e... | English |
| 6807 | drucker findet scan-adresse nicht | \r\n\r\nreceived from: fdqjsygx.aivdjqtr@gmail... | fdqjsygx aivdjqtr | GRP_12 | drucker findet scan-adresse nicht \r\n\r\nrece... | English |
| 6808 | 5 pos cannot be posed in miro as the same message | the attachements are each of the 5 pos error ... | dizquolf hlykecxa | GRP_10 | 5 pos cannot be posed in miro as the same mess... | English |
| 6809 | sound issue | sound not working | svdefgwl sgtmurfh | GRP_19 | sound issue sound not working | English |
| 6810 | engineering_tool advance search-issue | \n\nreceived from: sihtvocw.yspnqxgw@gmail.com... | sihtvocw yspnqxgw | GRP_25 | engineering_tool advance search-issue \n\nrece... | English |
| 6811 | telephony_software input issue-- enter one nu... | since telephony_software software upgrading , ... | hmutkgze ngilcqky | GRP_7 | telephony_software input issue-- enter one nu... | English |
| 6812 | öffnen von exel_anhängen ( 0043 664 4688892) | \r\n\r\nreceived from: soldfnbq.uhnbsvqd@gmail... | soldfnbq uhnbsvqd | GRP_0 | öffnen von exel_anhängen ( 0043 664 4688892)... | German |
| 6813 | erp and network access limitation | \n\nreceived from: pzybmcqd.fxtemlyg@gmail.com... | pzybmcqd fxtemlyg | GRP_0 | erp and network access limitation \n\nreceived... | English |
| 6814 | job Job_593 failed in job_scheduler at: 08/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_593 failed in job_scheduler at: 08/22/... | English |
| 6815 | kpm not working | hours punched on task are not visible in kpm | mbkxwcav wsfvmpzg | GRP_25 | kpm not working hours punched on task are not ... | English |
| 6816 | ebhsm004: e:/ is now 91% utilized. | e:\ label:dat1-ebhsm004 dc16126c on server: eb... | uvrbhlnt bjrmalzi | GRP_8 | ebhsm004: e:/ is now 91% utilized. e:\ label:d... | English |
| 6817 | rqxsm004 : f:/ is now 96% utilized. | f:\ label:dat2-rqxsm004 dc86ed35 on server: rq... | uvrbhlnt bjrmalzi | GRP_1 | rqxsm004 : f:/ is now 96% utilized. f:\ label... | English |
| 6818 | HostName_30 : g:\ label:wsp e26ca13a is now 96... | g:\ label:wsp e26ca13a on server: HostName_30 ... | uvrbhlnt bjrmalzi | GRP_8 | HostName_30 : g:\ label:wsp e26ca13a is now 96... | English |
| 6819 | reset passwords for wvdxnkhf jirecvta using pa... | the | wvdxnkhf jirecvta | GRP_17 | reset passwords for wvdxnkhf jirecvta using pa... | English |
| 6820 | job Job_403 failed in job_scheduler at: 08/22/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_403 failed in job_scheduler at: 08/22/... | English |
| 6821 | setup new laptop für roboworker \qidgvtwa qvb... | setup new laptop für roboworker \qidgvtwa qvb... | qidgvtwa qvbutayx | GRP_24 | setup new laptop für roboworker \qidgvtwa qvb... | English |
| 6822 | bad printing quality at rn33 | \n\nreceived from: yfmaqovp.wdonhbez@gmail.com... | yfmaqovp wdonhbez | GRP_33 | bad printing quality at rn33 \n\nreceived from... | English |
| 6823 | setup new ws \sqlmtixr urhbvfgd | setup new ws \sqlmtixr urhbvfgd | sqlmtixr urhbvfgd | GRP_24 | setup new ws \sqlmtixr urhbvfgd setup new ws \... | un |
| 6824 | awysv004 esxi host down | \r\nc:\users\virakv>ping awysv004\r\n\r\npingi... | tkbuhcnq kdheauqo | GRP_12 | awysv004 esxi host down \r\nc:\users\virakv>pi... | English |
| 6825 | mb5b download | \r\n\r\nreceived from: azovgeck.zuwnxdbt@gmail... | azovgeck zuwnxdbt | GRP_29 | mb5b download \r\n\r\nreceived from: azovgeck.... | English |
| 6826 | job Job_1390 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1390 failed in job_scheduler at: 08/22... | English |
| 6827 | data backup profile update | help to update the profile and data backup fro... | vwaliogd dviwuzhm | GRP_19 | data backup profile update help to update the ... | English |
| 6828 | bildschirm im rückmeldeterminal 6 (gegenüber... | bildschirm im rückmeldeterminal 6 (gegenüber... | frzjtmyk wzacvhki | GRP_33 | bildschirm im rückmeldeterminal 6 (gegenüber... | German |
| 6829 | customer master | \r\n\r\nreceived from: rgtarthi.erjgypa@compan... | xqoljzbh aydcwkxt | GRP_0 | customer master \r\n\r\nreceived from: rgtarth... | English |
| 6830 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 6831 | carcau michthey my password expires in 1 day | \r\n\r\nreceived from: vlcexqpg.vjrtqobx@gmail... | vlcexqpg vjrtqobx | GRP_0 | carcau michthey my password expires in 1 day ... | English |
| 6832 | tablet - dell 7350 - windows系统å¯åЍåŽé»‘... | please provide details of the issue.\r\nwindow... | hymjicru ckrxqfes | GRP_31 | tablet - dell 7350 - windows系统å¯åЍåŽé»‘... | English |
| 6833 | please add office printer in my new laptop | \r\n\r\nreceived from: qrnusygw.amiebrlf@gmail... | qrnusygw amiebrlf | GRP_19 | please add office printer in my new laptop \r\... | English |
| 6834 | vvthuenka | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | vvthuenka \n\nreceived from: aksthyuhath.shett... | English |
| 6835 | hr_tool java doesn't work | hr_tool java doesn't work | pwksivmq dbxajims | GRP_31 | hr_tool java doesn't work hr_tool java doesn't... | English |
| 6836 | wegen file-server austausch kein zugriff auf d... | wegen file-server austausch kein zugriff auf d... | tiefszyh sfujdlgv | GRP_12 | wegen file-server austausch kein zugriff auf d... | German |
| 6837 | kein zugriff von abteilung ce abstech eemw8144... | kein zugriff von abteilung ce abstech eemw8144... | djilqgmw bidchqsg | GRP_12 | kein zugriff von abteilung ce abstech eemw8144... | German |
| 6838 | password changes | \r\n\r\nreceived from: brhlcpqv.sfozwkyx@gmail... | brhlcpqv sfozwkyx | GRP_0 | password changes \r\n\r\nreceived from: brhlcp... | English |
| 6839 | job Job_1148 failed in job_scheduler at: 08/22... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_57 | job Job_1148 failed in job_scheduler at: 08/22... | English |
| 6840 | am not able to open any dash bankrd and hr_too... | am not able to open any dash bankrd and hr_too... | uwoqzmah jrzslmaf | GRP_0 | am not able to open any dash bankrd and hr_too... | English |
| 6841 | windows account locked | windows account locked | gdnshtzv lqrygnob | GRP_0 | windows account locked windows account locked | English |
| 6842 | unable to open permission protected mails | unable to open permission protected mails | cqargubj krdxbfqh | GRP_19 | unable to open permission protected mails unab... | English |
| 6843 | kpm time sheet is not submitting. please resol... | employee id-210667827 | kdfnaytr pudqfmtc | GRP_0 | kpm time sheet is not submitting. please resol... | English |
| 6844 | erp miro cannot pose the two pos with error me... | as the two attachment shown, when i pose this ... | dizquolf hlykecxa | GRP_10 | erp miro cannot pose the two pos with error me... | English |
| 6845 | can not do z_chk for t/o# 606627 with dn 80579... | \r\n\r\nreceived from: gjtyswkb.dpvaymxr@gmail... | gjtyswkb dpvaymxr | GRP_18 | can not do z_chk for t/o# 606627 with dn 80579... | English |
| 6846 | password | \r\n\r\nreceived from: rgtarthi.erjgypa@compan... | xqoljzbh aydcwkxt | GRP_2 | password \r\n\r\nreceived from: rgtarthi.erjgy... | English |
| 6847 | need to be able to create pr under xzn004 and ... | i used to be able to create pr for cost center... | ckitashy dnqojbwi | GRP_29 | need to be able to create pr under xzn004 and ... | English |
| 6848 | engineering tool not working. | my engineering tool shows a error message as "... | xwcpkysq jydxhczm | GRP_0 | engineering tool not working. my engineering t... | English |
| 6849 | windows password expired | windows password expired | olevkypn vogiadqs | GRP_0 | windows password expired windows password exp... | English |
| 6850 | windows account locked | windows account locked | ihlguasz agnwcqiz | GRP_0 | windows account locked windows account locked | English |
| 6851 | job Job_3028 failed in job_scheduler at: 08/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3028 failed in job_scheduler at: 08/21... | English |
| 6852 | apps | \r\n\r\nreceived from: anpocezt.qturbxsg@gmail... | anpocezt qturbxsg | GRP_0 | apps \r\n\r\nreceived from: anpocezt.qturbxsg@... | English |
| 6853 | job Job_3028 failed in job_scheduler at: 08/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_12 | job Job_3028 failed in job_scheduler at: 08/21... | English |
| 6854 | tablet - dell 7350 - windows 8.1 系统被还å... | please provide details of the issue.\r\n windo... | ybjgecfx nxzuseac | GRP_31 | tablet - dell 7350 - windows 8.1 系统被还å... | English |
| 6855 | ess login issue. | ess login issue\r\n-verified user details.(emp... | pxfgoniv qhpkebgt | GRP_0 | ess login issue. ess login issue\r\n-verified ... | English |
| 6856 | login issue | login issue\r\n-verified user details.(employe... | vxlymbpz tysnumva | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 6857 | job Job_594 failed in job_scheduler at: 08/21/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_594 failed in job_scheduler at: 08/21/... | English |
| 6858 | job Job_1306 failed in job_scheduler at: 08/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1306 failed in job_scheduler at: 08/21... | English |
| 6859 | usa:dnb-vpn-rtr(10.38.1.11) is down since 8:39... | usa: dnb-vpn-rtr(10.38.1.11) is down since 8:3... | jloygrwh acvztedi | GRP_4 | usa:dnb-vpn-rtr(10.38.1.11) is down since 8:39... | English |
| 6860 | gigabitethernet1/0/14 on company-eu-deu-ds-ger... | gigabitethernet1/0/14 on company-eu-deu-ds-ger... | jloygrwh acvztedi | GRP_4 | gigabitethernet1/0/14 on company-eu-deu-ds-ger... | English |
| 6861 | HostName_979(plm wwi uacyltoe hxgaycze):wwisvc... | HostName_979(plm wwi uacyltoe hxgaycze):wwisvc... | jloygrwh acvztedi | GRP_14 | HostName_979(plm wwi uacyltoe hxgaycze):wwisvc... | English |
| 6862 | job snp_heu_5_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_5_regen failed in job_scheduler at... | English |
| 6863 | job bwhrattr failed in job_scheduler at: 08/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrattr failed in job_scheduler at: 08/21... | English |
| 6864 | job Job_1314 failed in job_scheduler at: 08/21... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/21... | English |
| 6865 | job Job_511 failed in job_scheduler at: 08/21/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_511 failed in job_scheduler at: 08/21/... | English |
| 6866 | job Job_511 failed in job_scheduler at: 08/21/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_511 failed in job_scheduler at: 08/21/... | English |
| 6867 | Israel, israel - (company):company-eu-isr--mai... | EMEA, israel - (company):company-eu-isr--mains... | oldrctiu bxurpsyi | GRP_8 | Israel, israel - (company):company-eu-isr--mai... | English |
| 6868 | job snp_heu_1_regen failed in job_scheduler at... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job snp_heu_1_regen failed in job_scheduler at... | English |
| 6869 | india india kirty : interface: gigabitethernet... | india india kirty : interface: gigabitethernet... | spxqmiry zpwgoqju | GRP_4 | india india kirty : interface: gigabitethernet... | English |
| 6870 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job mm_zscr0099_wkly_rollfgyuej1 failed in job... | English |
| 6871 | no connection to t drive in na | \n\nreceived from: blktuiae.jzakfmhw@gmail.com... | blktuiae jzakfmhw | GRP_0 | no connection to t drive in na \n\nreceived fr... | English |
| 6872 | weekly reboot of csqe prod servers | weekly reboot of csqe prod servers \r\n\r\nHos... | uvrbhlnt bjrmalzi | GRP_8 | weekly reboot of csqe prod servers weekly reb... | English |
| 6873 | HostName_768:chkdsk is still running after the... | after the monthly reboot of HostName_768 chkds... | jloygrwh acvztedi | GRP_12 | HostName_768:chkdsk is still running after the... | English |
| 6874 | company-ap-chn-apac-company-psf-2960s-access-s... | company-ap-chn-apac-company-psf-2960s-access-s... | jloygrwh acvztedi | GRP_8 | company-ap-chn-apac-company-psf-2960s-access-s... | English |
| 6875 | ess login issue | ess login issue\r\n-verified user details.(emp... | qjfgkvln wzbngayp | GRP_0 | ess login issue ess login issue\r\n-verified u... | English |
| 6876 | user unable to login to erp. | user unable to login to erp. | skrxopnw zjasxphv | GRP_0 | user unable to login to erp. user unable to lo... | English |
| 6877 | HostName_30(sms & sep server-company-india ind... | observing below alert in monitoring_tool since... | jloygrwh acvztedi | GRP_65 | HostName_30(sms & sep server-company-india ind... | English |
| 6878 | germany vrtx HostName_597 down / urgent | \r\n\r\nreceived from: ecwtrjnq.jpecxuty@gmail... | ecwtrjnq jpecxuty | GRP_12 | germany vrtx HostName_597 down / urgent \r\n\r... | English |
| 6879 | mtd revenue detail report | \n\nreceived from: qwijaspo.ukynmfig@gmail.com... | qwijaspo ukynmfig | GRP_9 | mtd revenue detail report \n\nreceived from: q... | English |
| 6880 | vmax alert:a symmetrix power subsystem ac line... | observing these alerts since 5:37 am on 08/20 ... | jloygrwh acvztedi | GRP_8 | vmax alert:a symmetrix power subsystem ac line... | English |
| 6881 | user mentioned that the internet gets disconne... | user mentioned that the internet gets disconne... | cqlehowf aosqelnr | GRP_0 | user mentioned that the internet gets disconne... | English |
| 6882 | job Job_480 failed in job_scheduler at: 08/20/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_480 failed in job_scheduler at: 08/20/... | English |
| 6883 | space utilization :: e:\ label:dat1-ebhsm004 d... | volume: e:\ label:dat1-ebhsm004 dc16126c on se... | uxgrdjfc kqxdjeov | GRP_65 | space utilization :: e:\ label:dat1-ebhsm004 d... | English |
| 6884 | HostName_1132:oracle finance_app financial man... | HostName_1132:oracle finance_app financial man... | oldrctiu bxurpsyi | GRP_12 | HostName_1132:oracle finance_app financial man... | English |
| 6885 | outlook problems. outlook doesn't start. | name:uprmwlgb kirvecja\nlanguage:\nbrowser:mic... | uprmwlgb kirvecja | GRP_0 | outlook problems. outlook doesn't start. name:... | English |
| 6886 | outlook not opening in laptop | \r\n\r\nreceived from: vrjwyqtf.qoxkapfw@gmail... | vrjwyqtf qoxkapfw | GRP_0 | outlook not opening in laptop \r\n\r\nreceived... | English |
| 6887 | job Job_1314 failed in job_scheduler at: 08/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1314 failed in job_scheduler at: 08/20... | English |
| 6888 | security incidents - (#in33655554) : errata se... | =========================\nincident overview\n... | gzhapcld fdigznbk | GRP_2 | security incidents - (#in33655554) : errata se... | English |
| 6889 | job Job_1392 failed in job_scheduler at: 08/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1392 failed in job_scheduler at: 08/20... | English |
| 6890 | job Job_1995 failed in job_scheduler at: 08/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1995 failed in job_scheduler at: 08/20... | English |
| 6891 | job Job_2042 failed in job_scheduler at: 08/20... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2042 failed in job_scheduler at: 08/20... | English |
| 6892 | lean tracker error - repeated | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_0 | lean tracker error - repeated \r\n\r\nreceived... | English |
| 6893 | owa installation in mobile device | hi, i'm using personal android mobile phone an... | uvjpaeli bnphqsxr | GRP_0 | owa installation in mobile device hi, i'm usin... | English |
| 6894 | abend batch job : Job_1315 | abend batch job : Job_1315 | spxqmiry zpwgoqju | GRP_9 | abend batch job : Job_1315 abend batch job :... | English |
| 6895 | job bwhrertran failed in job_scheduler at: 08/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job bwhrertran failed in job_scheduler at: 08/... | English |
| 6896 | interface: fastethernet0/27 · vlan 51: lhqwx4... | interface: fastethernet0/27 · vlan 51: lhqwx4... | jloygrwh acvztedi | GRP_4 | interface: fastethernet0/27 · vlan 51: lhqwx4... | English |
| 6897 | extended monitor in the cube 3k-20(nvyjtmca xj... | extended monitor in the cube 3k-20(nvyjtmca xj... | spxqmiry zpwgoqju | GRP_19 | extended monitor in the cube 3k-20(nvyjtmca xj... | English |
| 6898 | job Job_3186 failed in job_scheduler at: 08/19... | job Job_3186 failed in job_scheduler at: 08/19... | vbwszcqn nlbqsuyv | GRP_10 | job Job_3186 failed in job_scheduler at: 08/19... | English |
| 6899 | ebhsm004: volume: e:\ label:dat1-ebhsm004 dc... | ebhsm004: volume: e:\ label:dat1-ebhsm004 dc... | vbwszcqn nlbqsuyv | GRP_12 | ebhsm004: volume: e:\ label:dat1-ebhsm004 dc... | English |
| 6900 | monitoring_tool alerts & activity page was not... | monitoring_tool alerts & activity page was not... | jloygrwh acvztedi | GRP_60 | monitoring_tool alerts & activity page was not... | English |
| 6901 | job Job_460 failed in job_scheduler at: 08/19/... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_5 | job Job_460 failed in job_scheduler at: 08/19/... | English |
| 6902 | unable to login to company engineering_tool | unable to login to company engineering_tool | tqvpohwj tbkywpqz | GRP_0 | unable to login to company engineering_tool u... | English |
| 6903 | ms crm app on desktop | ms crm app on desktop | pytmhcxq cswovnax | GRP_0 | ms crm app on desktop ms crm app on desktop | English |
| 6904 | erp limited | \r\n\r\nreceived from: liedzaft.lvnbzktj@gmail... | liedzaft lvnbzktj | GRP_9 | erp limited \r\n\r\nreceived from: liedzaft.lv... | English |
| 6905 | problem with configurator | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_12 | problem with configurator \n\nreceived from: v... | English |
| 6906 | china(apac): interface: gigabitethernet0/33 ·... | china(apac): interface: gigabitethernet0/33 ·... | vbwszcqn nlbqsuyv | GRP_4 | china(apac): interface: gigabitethernet0/33 ·... | English |
| 6907 | collaboration_platform query | collaboration_platform query | pytmhcxq cswovnax | GRP_0 | collaboration_platform query collaboration_pl... | English |
| 6908 | access to engineering_tool | access to engineering_tool | sjhrytwn yakzbslm | GRP_0 | access to engineering_tool access to engineeri... | English |
| 6909 | job Job_1953d was running longer than 30 minut... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1953d was running longer than 30 minut... | English |
| 6910 | 47.95.91.3482 - unable to login | unable to login to the switch 47.95.91.3482 - ... | wczegmok bgqoclvs | GRP_4 | 47.95.91.3482 - unable to login unable to logi... | English |
| 6911 | call from external user | call from external user | rbozivdq gmlhrtvp | GRP_0 | call from external user call from external user | English |
| 6912 | spam | \n\nreceived from: qfcxbpht.oiykfzlr@gmail.com... | qfcxbpht oiykfzlr | GRP_27 | spam \n\nreceived from: qfcxbpht.oiykfzlr@gmai... | English |
| 6913 | it issue | \r\n\r\nreceived from: zwirhcol.narzlmfw@gmail... | zwirhcol narzlmfw | GRP_3 | it issue \r\n\r\nreceived from: zwirhcol.narzl... | English |
| 6914 | want to check the email if it is spam | want to check the email if it is spam | wvngzrca sfmrzdth | GRP_0 | want to check the email if it is spam want to... | English |
| 6915 | an intern has moved from the markhtyeting grou... | name:callie pollaurid\nlanguage:\nbrowser:micr... | xzupryaf vlbikhsm | GRP_0 | an intern has moved from the markhtyeting grou... | English |
| 6916 | re: ticket_no1530897 -- comments added | \n\nreceived from: afkstcev.utbnkyop@gmail.com... | afkstcev utbnkyop | GRP_0 | re: ticket_no1530897 -- comments added \n\nrec... | English |
| 6917 | re: ticket_no1530897 -- comments added | \n\nreceived from: afkstcev.utbnkyop@gmail.com... | afkstcev utbnkyop | GRP_0 | re: ticket_no1530897 -- comments added \n\nrec... | English |
| 6918 | ticket update on this ticket_no0428491 | ticket update on this ticket_no0428491 | fumkcsji sarmtlhy | GRP_0 | ticket update on this ticket_no0428491 ticket ... | English |
| 6919 | request for access to crm system | \r\n\r\nreceived from: ntuhoafg.bzwefjvk@gmail... | ntuhoafg bzwefjvk | GRP_22 | request for access to crm system \r\n\r\nrece... | English |
| 6920 | distributor_tool entry | \r\n\r\nreceived from: brhlcpqv.sfozwkyx@gmail... | brhlcpqv sfozwkyx | GRP_0 | distributor_tool entry \r\n\r\nreceived from: ... | English |
| 6921 | password reset | password reset | ulhpwzki awhjlbcp | GRP_0 | password reset password reset | English |
| 6922 | issue when updating vv32 | \r\n\r\nreceived from: rhwsmefo.tvphyura@gmail... | rhwsmefo tvphyura | GRP_13 | issue when updating vv32 \r\n\r\nreceived from... | English |
| 6923 | vip 2 : pls usa access to russ hall to site re... | vip 2 : pls usa access to russ hall to site re... | doxemspb utabejmq | GRP_16 | vip 2 : pls usa access to russ hall to site re... | English |
| 6924 | account lock out and password reset instructions | account lock out and password reset instructions | ibcsejvn denhyvmr | GRP_0 | account lock out and password reset instructio... | English |
| 6925 | company email accounts tzrekwqf homwadbs! | dear support team,\r\n\r\ncan you give me an s... | tzrekwqf homwadbs | GRP_0 | company email accounts tzrekwqf homwadbs! dear... | English |
| 6926 | can't open outlook | can't open outlook, same problem twice this we... | ufxdkqbc uehvxmfy | GRP_0 | can't open outlook can't open outlook, same pr... | English |
| 6927 | collaboration_platform on phone does not sync | collaboration_platform on phone does not sync | xpzsygkb vbualmpr | GRP_0 | collaboration_platform on phone does not sync ... | English |
| 6928 | update to office | update to office | kjeqxayu bpwkdazl | GRP_0 | update to office update to office | English |
| 6929 | spam email queries | spam email queries | tjlizqgc ngvwoukp | GRP_0 | spam email queries spam email queries | English |
| 6930 | job Job_1967c failed in job_scheduler at: 08/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_1967c failed in job_scheduler at: 08/1... | English |
| 6931 | '51551 vid67965 microsoft windows httpsys rce ... | dsw in33568767\n\nincident overview\n=========... | afkstcev utbnkyop | GRP_12 | '51551 vid67965 microsoft windows httpsys rce ... | English |
| 6932 | 54.96.80.216/att-singapore-asa.company.com-1 d... | dsw in33572131\r\n\r\nincident overview\r\n===... | afkstcev utbnkyop | GRP_33 | 54.96.80.216/att-singapore-asa.company.com-1 d... | English |
| 6933 | 18.79.63.203/company-internal-asa.company.com-... | dsw in33574596\r\n\r\nwe are seeing your 18.79... | afkstcev utbnkyop | GRP_31 | 18.79.63.203/company-internal-asa.company.com-... | English |
| 6934 | 18.79.63.203/company-internal-asa.company.com-... | dsw in33401594\r\n\r\nincident overview\r\n===... | afkstcev utbnkyop | GRP_3 | 18.79.63.203/company-internal-asa.company.com-... | English |
| 6935 | 114 occurrences of your firewall company-europ... | dsw in32075851\r\n\r\n========================... | afkstcev utbnkyop | GRP_12 | 114 occurrences of your firewall company-europ... | English |
| 6936 | unable to load hr_tool etime application | \nrecently got a new computer and ever since h... | pxwhlnse hjfzvsoa | GRP_0 | unable to load hr_tool etime application \nre... | English |
| 6937 | [hw] filesystem near capacity - h:(HostName_894) | dsw in33644259\r\n\r\nrelated events: \r\neven... | afkstcev utbnkyop | GRP_39 | [hw] filesystem near capacity - h:(HostName_89... | English |
| 6938 | login failure | \r\n\r\nreceived from: jashyht.usa@company.com... | rzvtduoj vsxefcub | GRP_0 | login failure \r\n\r\nreceived from: jashyht.u... | English |
| 6939 | connected the default printer | connected the default printer | esmvgkhb crybuied | GRP_0 | connected the default printer connected the de... | English |
| 6940 | job Job_1315 failed in job_scheduler at: 08/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1315 failed in job_scheduler at: 08/19... | English |
| 6941 | new prospect accounts within the crm system | \nthe issue is...\ni have created some new pro... | obanjrhg rnafleys | GRP_40 | new prospect accounts within the crm system \n... | English |
| 6942 | call came and got disconnected | call came and got disconnected | rbozivdq gmlhrtvp | GRP_0 | call came and got disconnected call came and g... | English |
| 6943 | blue screen error. | blue screen error. | njcxmlbf svlmrqjd | GRP_0 | blue screen error. blue screen error. | English |
| 6944 | outlook not responding due to crm error | outlook not responding due to crm error | esmvgkhb crybuied | GRP_0 | outlook not responding due to crm error outloo... | English |
| 6945 | account information updated | from: nwfodmhc exurcwkm \nsent: friday, august... | ynsqjehx kqgrsawl | GRP_0 | account information updated from: nwfodmhc exu... | English |
| 6946 | user locked out of erp SID_34 erp | user locked out of erp SID_34 erp | fdnohtiy hxdfuplb | GRP_0 | user locked out of erp SID_34 erp user locked ... | English |
| 6947 | spam or not ? | your user account has been updated in ancile u... | stvpxkbf gqchobaj | GRP_0 | spam or not ? your user account has been updat... | English |
| 6948 | erp SID_34 account lockout | erp SID_34 account lockout | mdbegvct dbvichlg | GRP_0 | erp SID_34 account lockout erp SID_34 account ... | English |
| 6949 | new user id | new user id | mcpgwduj swvpgiaq | GRP_0 | new user id new user id | English |
| 6950 | erp SID_34 account locked. | erp SID_34 account locked. | lwbchnga axpqctfr | GRP_0 | erp SID_34 account locked. erp SID_34 account ... | English |
| 6951 | mobile device activation | from: shhkioaprhkuoash ms \r\nsent: friday, au... | peuckbvr tjihmgsv | GRP_0 | mobile device activation from: shhkioaprhkuoas... | English |
| 6952 | e4 license activated. office has to be upgrade... | e4 license activated. office has to be upgrade... | fwypxqcs twsqoimy | GRP_0 | e4 license activated. office has to be upgrade... | English |
| 6953 | audio not working | \n\ncontact number . pc service tag h52gv32\n... | ndaoxbvi szxlciue | GRP_0 | audio not working \n\ncontact number . pc ser... | English |
| 6954 | query regarding leaves | query regarding leaves | ktsulemz wsgoykba | GRP_0 | query regarding leaves query regarding leaves | English |
| 6955 | unable to scroll down ie pages | unable to scroll down ie pages | dskcobqa tujrvsbc | GRP_0 | unable to scroll down ie pages unable to scrol... | English |
| 6956 | job pp_EU_tool_netch_ap1 failed in job_schedul... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job pp_EU_tool_netch_ap1 failed in job_schedul... | English |
| 6957 | engineering tool does not open. | engineering tool does not open.\r\nerror log a... | ajdcnwtb bvijwxko | GRP_46 | engineering tool does not open. engineering to... | English |
| 6958 | outlook not responding | outlook not responding | nqdyowsm yqerwtna | GRP_0 | outlook not responding outlook not responding | English |
| 6959 | ticket update inplant_851643 | ticket update inplant_851643 | fumkcsji sarmtlhy | GRP_0 | ticket update inplant_851643 ticket update inp... | English |
| 6960 | when opening business_client, getting the "mic... | see attachment | ernczpho qkmgvoys | GRP_0 | when opening business_client, getting the "mic... | English |
| 6961 | skype does not open. | skype does not open. | qftpazns fxpnytmk | GRP_0 | skype does not open. skype does not open. | English |
| 6962 | telephony_software phone system | since the new telephony_software update i am n... | dtwuqpmo otupcawz | GRP_0 | telephony_software phone system since the new ... | English |
| 6963 | reset passwords for patrcja szpilewska using p... | the | lmsxcvoz vzhkdpfn | GRP_17 | reset passwords for patrcja szpilewska using p... | English |
| 6964 | company-ap-chn-apac-2960-access-sw01 at apac -... | company-ap-chn-apac-2960-access-sw01 at apac -... | dkmcfreg anwmfvlg | GRP_8 | company-ap-chn-apac-2960-access-sw01 at apac -... | English |
| 6965 | telephony_software didn't full update. an't fi... | need telephony_software to log into phone syst... | hdfcwmag plxstkad | GRP_3 | telephony_software didn't full update. an't fi... | English |
| 6966 | new password does not work after password change. | new password does not work after password change. | qftpazns fxpnytmk | GRP_0 | new password does not work after password chan... | English |
| 6967 | ticket update on inplant_852167 | ticket update on inplant_852167 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_852167 ticket update ... | English |
| 6968 | ticket update | \r\n\r\nreceived from: qcxivzag.vyucbagx@gmail... | qcxivzag vyucbagx | GRP_0 | ticket update \r\n\r\nreceived from: qcxivzag.... | English |
| 6969 | password reset request. | password reset request. | pdujfybc bvfdnale | GRP_0 | password reset request. password reset request. | English |
| 6970 | khspqlnj npgxuzeq called for engineering tool ... | khspqlnj npgxuzeq called for engineering tool ... | rbozivdq gmlhrtvp | GRP_0 | khspqlnj npgxuzeq called for engineering tool ... | English |
| 6971 | email spam query | email spam query | hgzjtkxn xekushwi | GRP_0 | email spam query email spam query | English |
| 6972 | in erp's md04 for 6999065 it show a delivery n... | calling from plant plant_35. in erp's md04 for... | dsyzveju ivmprauh | GRP_6 | in erp's md04 for 6999065 it show a delivery n... | English |
| 6973 | password reset alert from o365 | password reset alert from o365 | bfgtnyow dahqfpns | GRP_0 | password reset alert from o365 password reset ... | English |
| 6974 | power surge on hub port prompts | i am getting frequent notification of power su... | ujsyzrvw vjuyzcih | GRP_0 | power surge on hub port prompts i am getting f... | English |
| 6975 | mobile device activation ; company provided | mobile device activation ; company provided | qhvspezr fvluqczd | GRP_0 | mobile device activation ; company provided mo... | English |
| 6976 | erp log-in update needed urgently please! | \r\n\r\nreceived from: oslzvpgk.nhwsxgpb@gmail... | oslzvpgk nhwsxgpb | GRP_0 | erp log-in update needed urgently please! \r\n... | English |
| 6977 | emails not routing from outlook into telephony... | i am entering this ticket to confirm that emai... | vpnxjtyz wmakhpci | GRP_7 | emails not routing from outlook into telephony... | English |
| 6978 | support für osterwalder \niptbwdq csenjruz | support für osterwalder \niptbwdq csenjruz | niptbwdq csenjruz | GRP_24 | support für osterwalder \niptbwdq csenjruz su... | English |
| 6979 | ess login issue : password issue. | ess login issue : password issue. | mzqgobhv pebimhfz | GRP_0 | ess login issue : password issue. ess login is... | English |
| 6980 | unlock account email in cell phone the users... | hello team,\r\n\r\ncould you please unlock acc... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the users... | English |
| 6981 | ref#prb1151148 - cannot connect to dynamic exc... | \r\n\r\nreceived from: vndwmyiz.cjwqtzai@gmail... | vndwmyiz cjwqtzai | GRP_0 | ref#prb1151148 - cannot connect to dynamic exc... | English |
| 6982 | vpn is not connecting. | vpn is not connecting. | pfmcnahv ofzlusri | GRP_0 | vpn is not connecting. vpn is not connecting. | English |
| 6983 | switch "company-eu-deu-germany-e-b16-gf-3550-a... | switch "company-eu-deu-germany-e-b16-gf-3550-a... | uvrbhlnt bjrmalzi | GRP_8 | switch "company-eu-deu-germany-e-b16-gf-3550-a... | English |
| 6984 | \r\n\r\nreceived from: qdbmspxf.nqdyiclk@gmail... | qdbmspxf nqdyiclk | GRP_0 | email \r\n\r\nreceived from: qdbmspxf.nqdyiclk... | English | |
| 6985 | outlook email update issue | outlook email update issue | qrnusygw amiebrlf | GRP_0 | outlook email update issue outlook email updat... | English |
| 6986 | spam email query | spam email query | ibtfxemv roezcnmg | GRP_0 | spam email query spam email query | English |
| 6987 | userid cccplant_119 cannot reset password. p... | userid cccplant_119 cannot reset password. p... | hbmwlprq ilfvyodx | GRP_21 | userid cccplant_119 cannot reset password. p... | English |
| 6988 | hub, business_client, not working suddenly | \r\n\r\nreceived from: cowsvzel.ryhkefwv@gmail... | cowsvzel ryhkefwv | GRP_0 | hub, business_client, not working suddenly \r\... | English |
| 6989 | outlook issue. | : cannot open the item. text formatheywting co... | ouxtpbcy vimzawtg | GRP_0 | outlook issue. : cannot open the item. text fo... | English |
| 6990 | collaboration_platform not synching . | collaboration_platform not synching . | vkufbxrd zbghvyio | GRP_0 | collaboration_platform not synching . collabor... | English |
| 6991 | erp access issue | system SID_34\r\n\r\nproduction employee pevok... | brjkmwvo odxwcpie | GRP_2 | erp access issue system SID_34\r\n\r\nproducti... | English |
| 6992 | probleme mit erpgui \tmqfjard qzhgdoua | probleme mit erpgui \tmqfjard qzhgdoua | tmqfjard qzhgdoua | GRP_24 | probleme mit erpgui \tmqfjard qzhgdoua problem... | Danish |
| 6993 | alte it equipment abholen . \qvncizuf ueiybanz | alte it equipment abholen . \qvncizuf ueiybanz | qvncizuf ueiybanz | GRP_24 | alte it equipment abholen . \qvncizuf ueiybanz... | English |
| 6994 | monitor defekt \ewew8323542 \pvd1 \bur am orde | monitor defekt \ewew8323542 \pvd1 \bur am orde | xwirzvda okhyipgr | GRP_24 | monitor defekt \ewew8323542 \pvd1 \bur am orde... | English |
| 6995 | please have a look at po. the terms and condit... | please have a look at po. the terms and condit... | idlupnzr nkxylwrc | GRP_29 | please have a look at po. the terms and condit... | English |
| 6996 | HostName_973 : : wrong number of instances of ... | HostName_973 : : wrong number of instances of ... | spxqmiry zpwgoqju | GRP_8 | HostName_973 : : wrong number of instances of ... | English |
| 6997 | emails from common mailbox k-uk.moe@company.co... | although there are emails in outlook mailbox, ... | kerbmgdu yhbcquwd | GRP_7 | emails from common mailbox k-uk.moe@company.co... | English |
| 6998 | received new laptop. need outlook configuratio... | received new laptop. need outlook configuratio... | qrnusygw amiebrlf | GRP_0 | received new laptop. need outlook configuratio... | English |
| 6999 | reimbursement amount: usd 293,34 | i need to approve a travel expense...the foll... | dkinobsv wymgzcrh | GRP_0 | reimbursement amount: usd 293,34 i need to... | English |
| 7000 | job Job_3053 failed in job_scheduler at: 08/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job Job_3053 failed in job_scheduler at: 08/19... | English |
| 7001 | job Job_1388 failed in job_scheduler at: 08/19... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1388 failed in job_scheduler at: 08/19... | English |
| 7002 | need access to HostName_768 imts2012 folder | \r\n\r\nreceived from: ybhazlqp.zfghsxiw@gmail... | ybhazlqp zfghsxiw | GRP_34 | need access to HostName_768 imts2012 folder \r... | English |
| 7003 | tel. 416 prüfen | tel. 416 prüfen | swfdvezh fpjybetd | GRP_33 | tel. 416 prüfen tel. 416 prüfen | Waray |
| 7004 | picking request cannot print | hi it-team\r\n\r\n\r\nwe have problem picking ... | nkiopevt gufwhdky | GRP_18 | picking request cannot print hi it-team\r\n\r\... | English |
| 7005 | please change to the japanese. | hi,\r\n\r\nit is a screen of the sales order.\... | uxndyfrs vahxnfgl | GRP_13 | please change to the japanese. hi,\r\n\r\nit i... | English |
| 7006 | account information updated | hi,\r\n\r\none more spam mail. please check.\r... | vrjwyqtf qoxkapfw | GRP_0 | account information updated hi,\r\n\r\none mor... | English |
| 7007 | disable mail functionality of payment advice | \nfrom: gnasmtvx cwxtsvkm \nsent: friday, augu... | gnasmtvx cwxtsvkm | GRP_10 | disable mail functionality of payment advice \... | English |
| 7008 | msd crm-6500072137 | i can not change the qty in crm syatem, would ... | hrqvkemg dmcxbrqj | GRP_15 | msd crm-6500072137 i can not change the qty in... | English |
| 7009 | nigktly erp download for germany, plant_170 is... | job hangs at step 2, this step waits for 4 fil... | iewnguxv bufwxeiy | GRP_59 | nigktly erp download for germany, plant_170 is... | English |
| 7010 | credit component is not working in prod author | credit component is not working in prod author... | lenxvcbq vwnhjtoi | GRP_51 | credit component is not working in prod author... | English |
| 7011 | laptop screen flickering | hello team,\r\n\r\nmy laptop monitor screen fl... | nvxkdqfi slkojtcg | GRP_19 | laptop screen flickering hello team,\r\n\r\nm... | English |
| 7012 | business_client SID_1 search_server not working | hi, i can find documents in engineering tool S... | aqourvgz mkehgcdu | GRP_14 | business_client SID_1 search_server not workin... | English |
| 7013 | job bkbackup_tool_reporting_tool_prod_inc fail... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_reporting_tool_prod_inc fail... | English |
| 7014 | job bkbackup_tool_HostName_771_prod_full faile... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job bkbackup_tool_HostName_771_prod_full faile... | English |
| 7015 | change payment terms for emea vendors - only ... | \r\n\r\nreceived from: blktuiae.jzakfmhw@gmail... | blktuiae jzakfmhw | GRP_10 | change payment terms for emea vendors - only ... | English |
| 7016 | loan switch | help to install the loan switch and lan cable ... | nawkpdtx gwcvmbhn | GRP_19 | loan switch help to install the loan switch an... | English |
| 7017 | keybankrd/accident damage hinge cover | windows key and q key is not working and also ... | kflqpite gbeoqsnc | GRP_19 | keybankrd/accident damage hinge cover windows ... | English |
| 7018 | unable to download files from gpts | unable to download files from gpts | janivrtg hstolemu | GRP_0 | unable to download files from gpts unable to d... | English |
| 7019 | need uasername and password of .telephony_sof... | emails of australia team not polling into tele... | zupifghd vdqxepun | GRP_7 | need uasername and password of .telephony_sof... | English |
| 7020 | windows locked | \n\nreceived from: nmgesubf.wugbalmy@gmail.com... | nmgesubf wugbalmy | GRP_0 | windows locked \n\nreceived from: nmgesubf.wug... | English |
| 7021 | the finance_app application is reporting a : d... | the finance_app hfm server is reporting a : do... | spxqmiry zpwgoqju | GRP_12 | the finance_app application is reporting a : d... | English |
| 7022 | why the changed weight of the mm hasn't been c... | we met the weight problem when make shipment t... | urfdkvei bfiulzto | GRP_13 | why the changed weight of the mm hasn't been c... | English |
| 7023 | 转å‘: 申请退æ¢è´§ï¼Œè´¨é‡æŠ•诉, exte... | \n\nreceived from: pkdavqwt.tafrmxsh@gmail.com... | pkdavqwt tafrmxsh | GRP_15 | 转å‘: 申请退æ¢è´§ï¼Œè´¨é‡æŠ•诉, exte... | English |
| 7024 | need access to global t drive | \r\n\r\nreceived from: uycravzn.feqlznyg@gmail... | uycravzn feqlznyg | GRP_34 | need access to global t drive \r\n\r\nreceived... | English |
| 7025 | ticket update info provided to vksfrhdx njhaqk... | from: rakthyesh ramdntythanjesh \nsent: friday... | eqzibjhw ymebpoih | GRP_0 | ticket update info provided to vksfrhdx njhaqk... | English |
| 7026 | uacyltoe hxgaycze phishing email-account infor... | from: rakthyesh ramdntythanjesh \nsent: friday... | lomzfqns htznsgdf | GRP_0 | uacyltoe hxgaycze phishing email-account infor... | English |
| 7027 | uacyltoe hxgaycze phishing email-account infor... | from: rakthyesh ramdntythanjesh \r\nsent: frid... | ulroqsyf wctpnarb | GRP_0 | uacyltoe hxgaycze phishing email-account infor... | English |
| 7028 | see attachment discritpion does not show | the discription shows correctly for mmaster bu... | lzspyjki smdbqnef | GRP_29 | see attachment discritpion does not show the d... | English |
| 7029 | HostName_1003: average (4 samples) disk free o... | HostName_1003: average (4 samples) disk free o... | vbwszcqn nlbqsuyv | GRP_12 | HostName_1003: average (4 samples) disk free o... | English |
| 7030 | HostName_898: average (4 samples) disk free on... | HostName_898: average (4 samples) disk free on... | vbwszcqn nlbqsuyv | GRP_39 | HostName_898: average (4 samples) disk free on... | English |
| 7031 | emails are not being sent from the .net system... | end-users are submitting security requests, bu... | mwegknsq xzgskryv | GRP_25 | emails are not being sent from the .net system... | English |
| 7032 | solicito imagens da frente do cd visando avali... | perÃodo: das 12h00 de 15/08 até 12h00 de 18/... | dughqrnf mebofqhz | GRP_62 | solicito imagens da frente do cd visando avali... | Portuguese |
| 7033 | unable to log in to skype | unable to log in to skype | klsrmzvq otsdnmzk | GRP_0 | unable to log in to skype unable to log in to... | English |
| 7034 | blank call | blank call | fumkcsji sarmtlhy | GRP_0 | blank call blank call | English |
| 7035 | printer driver update | printer driver update | cgqfdotb wtefjknd | GRP_0 | printer driver update printer driver update | English |
| 7036 | usa: interfacetengigabitethernet1/1/1 is down ... | usa: interfacetengigabitethernet1/1/1, dr l3 c... | vbwszcqn nlbqsuyv | GRP_4 | usa: interfacetengigabitethernet1/1/1 is down ... | English |
| 7037 | engineering tool icon on the desktop | engineering tool icon on the desktop | rolcgqhx ehndjmlv | GRP_0 | engineering tool icon on the desktop engineeri... | English |
| 7038 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | recsynqt byoezmla | GRP_0 | request to reset microsoft online services pas... | English |
| 7039 | i'm trying to access crm through ess but getti... | i'm trying to access crm through ess but getti... | pzrskcon pobsajnx | GRP_0 | i'm trying to access crm through ess but getti... | English |
| 7040 | HostName_106: c:\ on server: HostName_106 is o... | HostName_106: volume: c:\ label:sys-HostName_1... | vbwszcqn nlbqsuyv | GRP_12 | HostName_106: c:\ on server: HostName_106 is o... | English |
| 7041 | unable to get the sales org in distributor_tool | unable to get the sales org in distributor_tool | bonwcpea cwfbjptn | GRP_0 | unable to get the sales org in distributor_too... | English |
| 7042 | while trying to invoke the method java.util.li... | when i try to look at a configuration for a rq... | iauqlrjk nijdaukz | GRP_14 | while trying to invoke the method java.util.li... | English |
| 7043 | telephony_software login issue - yakimp & staszk | two users have a problem with logging into tel... | ahydmrbu fjymgtvo | GRP_7 | telephony_software login issue - yakimp & stas... | English |
| 7044 | team sproc is not converting direct team reven... | team sproc is not converting direct team reven... | aofextgk tugywidl | GRP_25 | team sproc is not converting direct team reven... | English |
| 7045 | unlock erp SID_34 account | unlock erp SID_34 account | sazowuft htjrunsz | GRP_0 | unlock erp SID_34 account unlock erp SID_34 a... | English |
| 7046 | unable to login to collaboration_platform | unable to login to collaboration_platform | zliatqeo nrukzxit | GRP_0 | unable to login to collaboration_platform unab... | English |
| 7047 | unable to login to the pc | unable to login to the pc | pqkthilr uitfqsen | GRP_0 | unable to login to the pc unable to login to ... | English |
| 7048 | businessobjects_cms : cms server watcher: serv... | businessobjects_cms: cms server watcher: serve... | dkmcfreg anwmfvlg | GRP_14 | businessobjects_cms : cms server watcher: serv... | English |
| 7049 | my erp login appears not to be working | my erp login appears not to be working usernam... | mrduhsci xmvkzqja | GRP_0 | my erp login appears not to be working my erp ... | English |
| 7050 | telephony_software update | :803\nsummary:telephony_software update did no... | nxgutvrb pdsvfack | GRP_0 | telephony_software update :803\nsummary:teleph... | English |
| 7051 | unlock account email in cell phone the users... | hello team,\n\ncould you please unlock account... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the users... | English |
| 7052 | sales org tab does not show up the field | sales org tab does not show up the field | qftpazns fxpnytmk | GRP_0 | sales org tab does not show up the field sales... | English |
| 7053 | job Job_1387 failed in job_scheduler at: 08/18... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_9 | job Job_1387 failed in job_scheduler at: 08/18... | English |
| 7054 | ms crm online dash bankrd /opportunities issue. | ms crm online dash bankrd /opportunities issue. | mdbegvct dbvichlg | GRP_0 | ms crm online dash bankrd /opportunities issue... | English |
| 7055 | unable to open attachments in erp | unable to open attachments in erp | ubqiygva zdkfxyel | GRP_0 | unable to open attachments in erp unable to op... | English |
| 7056 | unable to create dn | hi it \r\n\r\nplease assist o to create dn as ... | biwcuadk pvrgtzox | GRP_6 | unable to create dn hi it \r\n\r\nplease assis... | English |
| 7057 | to help jdamieul fandyhgg | \n\nreceived from: ztdgvclp.gzcalstq@gmail.com... | ztdgvclp gzcalstq | GRP_3 | to help jdamieul fandyhgg \n\nreceived from: ... | English |
| 7058 | account is locked | account is locked | jartombc ghnxkmsl | GRP_0 | account is locked account is locked | English |
| 7059 | job Job_2063b failed in job_scheduler at: 08/1... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_6 | job Job_2063b failed in job_scheduler at: 08/1... | English |
| 7060 | reset the password for aliuytre j love-lewis o... | i would like to reset my caas applications (re... | ethwnzfb roqytnjk | GRP_7 | reset the password for aliuytre j love-lewis o... | English |
| 7061 | ms outlook issue: ms crm dynamics issue | ms outlook issue: ms crm dynamics issue | ubkgydpw pqljsube | GRP_0 | ms outlook issue: ms crm dynamics issue ms out... | English |
| 7062 | outlook issue | 440 \nsummary:i don't think i am receiving my ... | fyigcxnm utgeyfsm | GRP_0 | outlook issue 440 \nsummary:i don't think i am... | English |
| 7063 | dev/software file system on HostName_184 has c... | dev/software file system on HostName_184 has c... | dkmcfreg anwmfvlg | GRP_47 | dev/software file system on HostName_184 has c... | English |
| 7064 | virus detected on pc | virus detected on pc. please see attachment. | nrugzxkl lohqkvry | GRP_50 | virus detected on pc virus detected on pc. ple... | English |
| 7065 | erp ecs tracking is not working resp. compute... | erp ecs tracking is not working resp. compute... | bsglvkdz twoibenz | GRP_49 | erp ecs tracking is not working resp. compute... | English |
| 7066 | account unlock request from herr schmidt : dnc430 | account unlock request from herr schmidt : dnc430 | aorthyme rnsuipbk | GRP_0 | account unlock request from herr schmidt : dnc... | English |
| 7067 | unable to access the lunch menu on the hub | email:\nfrom: renyhtuee a meayhtger \nsent: th... | wqxzleky uwjchqor | GRP_27 | unable to access the lunch menu on the hub ema... | English |
| 7068 | not able to login to hub | not able to login to hub\r\n\r\nhelped with em... | feavxrlb krdhzfgc | GRP_0 | not able to login to hub not able to login to ... | English |
| 7069 | windows password reset | windows password reset | zjkqxsye bcsdlfuj | GRP_0 | windows password reset windows password reset | English |
| 7070 | unable to access collaboration_platform it hom... | error: access denied (screenshot attached).\r\... | ayrhcfxi zartupsw | GRP_16 | unable to access collaboration_platform it hom... | English |
| 7071 | can´t do pgi for mm 5316075 | +49 \nSID_34 \nerror: item category is not de... | qpiojxcl dxkcljew | GRP_18 | can´t do pgi for mm 5316075 +49 \nSID_34 \ner... | English |
| 7072 | snipping tool shortcut | snipping tool shortcut | xzupryaf vlbikhsm | GRP_0 | snipping tool shortcut snipping tool shortcut | English |
| 7073 | uacyltoe hxgaycze chat | ic: welcome, our next available agent will be ... | aorthyme rnsuipbk | GRP_0 | uacyltoe hxgaycze chat ic: welcome, our next a... | English |
| 7074 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 7075 | unable to login to skype | unable to login to skype | uyjglskh lhurepnw | GRP_0 | unable to login to skype unable to login to skype | English |
| 7076 | job HostName_1019fail failed in job_scheduler ... | received from: monitoring_tool@company.com\r\n... | bpctwhsn kzqsbmtp | GRP_8 | job HostName_1019fail failed in job_scheduler ... | English |
| 7077 | job HostName_1019fail failed in job_scheduler ... | \r\n\r\nreceived from: monitoring_tool@company... | bpctwhsn kzqsbmtp | GRP_60 | job HostName_1019fail failed in job_scheduler ... | English |
| 7078 | HostName_173(erp - SID_8): average (1 samples... | HostName_173(erp - SID_8): average (1 samples)... | dkmcfreg anwmfvlg | GRP_47 | HostName_173(erp - SID_8): average (1 samples... | English |
| 7079 | business_client & erp gui issue | a couple of users (nmzfdlar whzbrusx, uwdqtrnx... | ctvaejbo mjcerqwo | GRP_11 | business_client & erp gui issue a couple of us... | English |
| 7080 | qlhmawgi sgwipoxn unlock request : nk_prod | qlhmawgi sgwipoxn unlock request : nk_prod | bedzliqs xazbjvmc | GRP_0 | qlhmawgi sgwipoxn unlock request : nk_prod qlh... | English |
| 7081 | possible bash command injection attempt | dsw in33637966\r\n\r\nwe are seeing '50990 vid... | afkstcev utbnkyop | GRP_47 | possible bash command injection attempt dsw i... | English |
| 7082 | 'internal outbreak for 7/udp' | dsw in33638260\r\n\r\nincident overview\r\n===... | afkstcev utbnkyop | GRP_50 | 'internal outbreak for 7/udp' dsw in33638260\r... | English |
| 7083 | 'repeat outbound connection for 135/tcp' | dsw in33638700\r\n\r\nincident overview\r\n===... | afkstcev utbnkyop | GRP_3 | 'repeat outbound connection for 135/tcp' dsw ... | English |
| 7084 | machine stuck on welcome screen | machine stuck on welcome screen | umkpayhc adflvbxg | GRP_0 | machine stuck on welcome screen machine stuck... | English |
| 7085 | rma customer return error | billing 0158655822 , inwarehouse_tool 415464 \... | cxfrvtyn rapoejyb | GRP_13 | rma customer return error billing 0158655822 ,... | English |
| 7086 | urgent : user : vvspecmfrt : please reactivate... | user : vvspecmfrt : please reactivate account.... | xmlbfjpg yegzbvru | GRP_2 | urgent : user : vvspecmfrt : please reactivate... | English |
| 7087 | monitor on rqxw8515251 is out. | monitor on rqxw8515251 is out. | xdabnget wryuikgd | GRP_3 | monitor on rqxw8515251 is out. monitor on rqxw... | English |
| 7088 | very urgent: reset windows password | \n\nreceived from: oslzvpgk.nhwsxgpb@gmail.com... | oslzvpgk nhwsxgpb | GRP_0 | very urgent: reset windows password \n\nreceiv... | English |
| 7089 | skype does not open. | skype does not open. | qicmfaoe hdrysife | GRP_0 | skype does not open. skype does not open. | English |
| 7090 | outlook does not open. | outlook does not open. | qicmfaoe hdrysife | GRP_0 | outlook does not open. outlook does not open. | English |
| 7091 | password cannot changed | \r\n\r\nreceived from: tbukjcyl.lxncwqbj@gmail... | tbukjcyl lxncwqbj | GRP_0 | password cannot changed \r\n\r\nreceived from:... | English |
| 7092 | tess installation | tess installation | qxmujhwg rsgqidxw | GRP_0 | tess installation tess installation | English |
| 7093 | attendance_tool password | \n\nreceived from: dwafrmth.oabwzitv@gmail.com... | dwafrmth oabwzitv | GRP_0 | attendance_tool password \n\nreceived from: dw... | English |
| 7094 | issue in business_client | \r\n\r\nreceived from: eakhgxbw.pfyadjmb@gmail... | eakhgxbw pfyadjmb | GRP_0 | issue in business_client \r\n\r\nreceived from... | English |
| 7095 | mitarbeiter reichenberg philipp benötigt bere... | mitarbeiter reichenberg philipp benötigt bere... | egklxsoy hivwzjcf | GRP_34 | mitarbeiter reichenberg philipp benötigt bere... | German |
| 7096 | printer not working | printer not working | vncowmbd hyfzcqpi | GRP_0 | printer not working printer not working | English |
| 7097 | reset the password for fniqhjtg qrfuetpw on wi... | please reset users windows password to welcome... | fniqhjtg qrfuetpw | GRP_0 | reset the password for fniqhjtg qrfuetpw on wi... | English |
| 7098 | drucker an messmaschine r173 in halle b hat st... | drucker an messmaschine r173 in halle b hat st... | frzjtmyk wzacvhki | GRP_33 | drucker an messmaschine r173 in halle b hat st... | English |
| 7099 | access new payroll site | \r\n\r\nreceived from: cvqnstgu.ofnimlwx@gmail... | cvqnstgu ofnimlwx | GRP_0 | access new payroll site \r\n\r\nreceived from:... | English |
| 7100 | not able to see drawings in business_client | not able to view/download tool drawings over b... | qxmujhwg rsgqidxw | GRP_0 | not able to see drawings in business_client no... | English |
| 7101 | please help | \r\n\r\nreceived from: iqmhjlwr.jqmxaybi@gmail... | iqmhjlwr jqmxaybi | GRP_0 | please help \r\n\r\nreceived from: iqmhjlwr.jq... | English |
| 7102 | win installation image for russia office | \n\nreceived from: koahsriq.wdugqatr@gmail.com... | koahsriq wdugqatr | GRP_65 | win installation image for russia office \n\nr... | English |
| 7103 | mail access in mobile | \r\n\r\nreceived from: rsvminjz.tcpqvbae@gmail... | rsvminjz tcpqvbae | GRP_0 | mail access in mobile \r\n\r\nreceived from: r... | English |
| 7104 | the attached 7 initiatives in "director approv... | per subject, i have changed the status to "dir... | mqzirjkb umbgreyq | GRP_15 | the attached 7 initiatives in "director approv... | English |
| 7105 | erp login issue | \r\n\r\nreceived from: csmtowqn.ulpjtgfo@gmail... | csmtowqn ulpjtgfo | GRP_0 | erp login issue \r\n\r\nreceived from: csmtowq... | English |
| 7106 | purchasing zitec catalogue does not work in SI... | whenn accessing the catalog the company logon ... | rhinvtua aquyjfbs | GRP_29 | purchasing zitec catalogue does not work in SI... | English |
| 7107 | installation of engineering tool/engineering_t... | \r\n\r\nreceived from: irqpwgtn.dpautgeh@gmail... | irqpwgtn dpautgeh | GRP_0 | installation of engineering tool/engineering_t... | English |
| 7108 | sipppr routing to demand planners not working ... | as of this morning, the routing for sippprs to... | ftnijxup sbltduco | GRP_20 | sipppr routing to demand planners not working ... | English |
| 7109 | netzteil an der docking station ohne funktion. | netzteil an der docking station ohne funktion.... | shkwgxln ikpvtjgn | GRP_28 | netzteil an der docking station ohne funktion.... | German |
| 7110 | browserproblem mit hub | \n\nreceived from: mnakehrf.mvunqihf@gmail.com... | mnakehrf mvunqihf | GRP_0 | browserproblem mit hub \n\nreceived from: mna... | German |
| 7111 | not able to sign in collaboration_platform, | \n\nreceived from: qubywmgf.jouickqx@gmail.com... | qubywmgf jouickqx | GRP_0 | not able to sign in collaboration_platform, \n... | English |
| 7112 | telephony_software-software upgrade funktionie... | telephony_software-software upgrade funktionie... | bqyfwclo osjklifb | GRP_33 | telephony_software-software upgrade funktionie... | English |
| 7113 | abended job in job_scheduler: Job_1338 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1338 receive... | English |
| 7114 | abended job in job_scheduler: Job_1388 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1388 receive... | English |
| 7115 | tess issue | \r\n\r\nreceived from: ufgkybsh.ijswtdve@gmail... | ufgkybsh ijswtdve | GRP_0 | tess issue \r\n\r\nreceived from: ufgkybsh.ijs... | English |
| 7116 | abended job in job_scheduler: Job_1332 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1332 receive... | English |
| 7117 | engineering_tool not opening | \r\n\r\nreceived from: qmpyjfbn.zlyiwtch@gmail... | qmpyjfbn zlyiwtch | GRP_0 | engineering_tool not opening \r\n\r\nreceived ... | English |
| 7118 | wireless access point prüfen geb.14 ,geb16 un... | wireless access point prüfen geb.14 ,geb16 un... | xmlbfjpg yegzbvru | GRP_24 | wireless access point prüfen geb.14 ,geb16 un... | English |
| 7119 | business_client error | \r\n\r\nreceived from: zcyueotq.ehvpaqnf@gmail... | zcyueotq ehvpaqnf | GRP_0 | business_client error \r\n\r\nreceived from: z... | English |
| 7120 | probleme mit lan \ewew8323735 \xwirzvda okhyipgr | probleme mit lan \ewew8323735 \xwirzvda okhyipgr | xwirzvda okhyipgr | GRP_24 | probleme mit lan \ewew8323735 \xwirzvda okhyip... | Danish |
| 7121 | probleme mit lan \ewew8323862 \xwirzvda okhyipgr | probleme mit lan \ewew8323862 \xwirzvda okhyipgr | xwirzvda okhyipgr | GRP_24 | probleme mit lan \ewew8323862 \xwirzvda okhyi... | Danish |
| 7122 | wireless access point funktioniert nicht \jxph... | wireless access point funktioniert nicht \jxph... | jxphgfmb gjbtuwek | GRP_24 | wireless access point funktioniert nicht \jxph... | English |
| 7123 | vnc-zugriff auf empwx000189 (sk-presserei germ... | fehlermeldung "failed to connect to server". l... | ozphysqw pgcmwqze | GRP_33 | vnc-zugriff auf empwx000189 (sk-presserei germ... | German |
| 7124 | goods movement mb11 | hello,\n\n\nplease let me know how to conduct ... | iwazgesl ydgqtpbo | GRP_29 | goods movement mb11 hello,\n\n\nplease let me ... | English |
| 7125 | cancel migo entry for po5018096568 (5321) | \r\n\r\nreceived from: neokfwiy.ufriscym@gmail... | neokfwiy ufriscym | GRP_18 | cancel migo entry for po5018096568 (5321) \r... | English |
| 7126 | 电脑å¡ä¸”连ä¸ä¸Šå†…网 | \n\nreceived from: tuqrvowp.fxmzkvqo@gmail.com... | tuqrvowp fxmzkvqo | GRP_30 | 电脑å¡ä¸”连ä¸ä¸Šå†…网 \n\nreceived from:... | English |
| 7127 | fe08 doesn't work in erp | when i print oa in erp and choose the fe08, fe... | xqyjztnm onfusvlz | GRP_0 | fe08 doesn't work in erp when i print oa in er... | English |
| 7128 | abended job in job_scheduler: Job_1148 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1148 receive... | English |
| 7129 | configuration of knowledge center | \r\n\r\nreceived from: rnueobcz.lwhcbati@gmail... | rnueobcz lwhcbati | GRP_0 | configuration of knowledge center \r\n\r\nrec... | English |
| 7130 | interface down ::usa switch :: bottom-6509-msf... | interface down ::bottom-6509-msfc720 switch ... | uxgrdjfc kqxdjeov | GRP_4 | interface down ::usa switch :: bottom-6509-msf... | English |
| 7131 | reset passwords for ezrsdgfc hofgvwel using pa... | the | ezrsdgfc hofgvwel | GRP_17 | reset passwords for ezrsdgfc hofgvwel using pa... | English |
| 7132 | reset passwords for ezrsdgfc hofgvwel using pa... | the | ezrsdgfc hofgvwel | GRP_17 | reset passwords for ezrsdgfc hofgvwel using pa... | English |
| 7133 | abended job in job_scheduler: Job_1141 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1141 receive... | English |
| 7134 | printer setup | help to install the network printer on the laptop | kilywpuo dcksxjeq | GRP_19 | printer setup help to install the network prin... | English |
| 7135 | telephony_software 软件å‡çº§åŽ, æ‰“å°æ–‡ä... | telephony_software 软件å‡çº§åŽ, æ‰“å°æ–‡ä... | tdsmnuib entgzrhy | GRP_31 | telephony_software 软件å‡çº§åŽ, æ‰“å°æ–‡ä... | English |
| 7136 | account locked in erp SID_34 | account locked in erp SID_34 | lqzrgsko yaixmtqs | GRP_0 | account locked in erp SID_34 account locked in... | English |
| 7137 | inquiry for adding digital signature in pdf | inquiry for adding digital signature in pdf | qftpazns fxpnytmk | GRP_0 | inquiry for adding digital signature in pdf in... | English |
| 7138 | unable to sign in to skype | unable to sign in to skype | zxlhkpfi zylaghei | GRP_0 | unable to sign in to skype unable to sign in t... | English |
| 7139 | unable to launch business_client, getting micr... | unable to launch business_client, getting micr... | nesmdkpr dcaqoxsy | GRP_0 | unable to launch business_client, getting micr... | English |
| 7140 | HostName_1045: average (4 samples) disk free o... | HostName_1045: average (4 samples) disk free o... | rkupnshb gsmzfojw | GRP_12 | HostName_1045: average (4 samples) disk free o... | English |
| 7141 | HostName_973: total cpu is now 100.00%, which ... | HostName_973: average (5 samples) total cpu is... | vbwszcqn nlbqsuyv | GRP_12 | HostName_973: total cpu is now 100.00%, which ... | English |
| 7142 | lhqsm518: hrsync sync failed! no sync detecte... | lhqsm518: hrsync sync failed! no sync detecte... | vbwszcqn nlbqsuyv | GRP_12 | lhqsm518: hrsync sync failed! no sync detecte... | English |
| 7143 | email contacts issue | email contacts issue\r\n-connected to the user... | klsrmzvq otsdnmzk | GRP_0 | email contacts issue email contacts issue\r\n-... | English |
| 7144 | dell 7350: monitor display issue. | dell 7350: monitor display issue. | mwjcsiug fbwthoca | GRP_0 | dell 7350: monitor display issue. dell 7350: m... | English |
| 7145 | abended job in job_scheduler: Job_1852 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_1852 receive... | English |
| 7146 | ess problems - expense report | \r\n\r\nreceived from: jnqmvard.jiazxvcl@gmail... | jnqmvard jiazxvcl | GRP_0 | ess problems - expense report \r\n\r\nreceived... | English |
| 7147 | i cannot receive calls through telephony_softw... | name:tfgtodd panelfgt\nlanguage:\nbrowser:micr... | lwbchnga axpqctfr | GRP_7 | i cannot receive calls through telephony_softw... | English |
| 7148 | please reset your security to the collaboratio... | please reset your security to the collaboratio... | gylicjpx owlrismj | GRP_16 | please reset your security to the collaboratio... | English |
| 7149 | cannot see receipts for travel reimbursement | the link to see receipts and reimbursement for... | xidbvzsk yrlsnxio | GRP_0 | cannot see receipts for travel reimbursement t... | English |
| 7150 | i need access to netweaver drawings. i also n... | unable to access drawings in erp. need access... | oqvwgnkc gkjylpzx | GRP_0 | i need access to netweaver drawings. i also n... | English |
| 7151 | security incidents - ( in33426117 ) : correlat... | related events: \r\n__________________________... | gzhapcld fdigznbk | GRP_2 | security incidents - ( in33426117 ) : correlat... | English |
| 7152 | need to get the expense reports direct deposit... | ic\n welcome, our next available agent will be... | uazkjifp dhtnevcq | GRP_52 | need to get the expense reports direct deposit... | English |
| 7153 | erp SID_34 password locked | erp SID_34 password locked | cyhiwbru nsfroezg | GRP_0 | erp SID_34 password locked erp SID_34 password... | English |
| 7154 | security incidents - ( #in33417637 ) : repeat ... | source ip :10.16.143.221\ndestination ip: 31.1... | gzhapcld fdigznbk | GRP_69 | security incidents - ( #in33417637 ) : repeat ... | English |
| 7155 | erp SID_34 account unlock | erp SID_34 account unlock | ybplwrez lqcyehbf | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 7156 | our server is getting full again. i have found... | name:schtrtgoyht\nlanguage:\nbrowser:microsoft... | shpnkgir mpsycbxl | GRP_12 | our server is getting full again. i have found... | English |
| 7157 | can't open outlook | can't open outlook , i had same issues earlier... | ufxdkqbc uehvxmfy | GRP_0 | can't open outlook can't open outlook , i had ... | English |
| 7158 | HostName_108: disk free on c:\ is now 15%, whi... | HostName_108: average (4 samples) disk free on... | vbwszcqn nlbqsuyv | GRP_12 | HostName_108: disk free on c:\ is now 15%, whi... | English |
| 7159 | it assistance. need access usaed to collaborat... | \r\n\r\nreceived from: mgcivbtx.bshmfxya@gmail... | mgcivbtx bshmfxya | GRP_16 | it assistance. need access usaed to collaborat... | English |
| 7160 | blade chassis HostName_1170 (ip 79.40.48.896) ... | hi team, \r\n\r\nwith the new functionality an... | boxrlpec fnkhwytl | GRP_12 | blade chassis HostName_1170 (ip 79.40.48.896) ... | English |
| 7161 | blade chassis HostName_1170 (ip 79.40.48.896) ... | blade chassis HostName_1170 (ip 79.40.48.896) ... | boxrlpec fnkhwytl | GRP_12 | blade chassis HostName_1170 (ip 79.40.48.896) ... | English |
| 7162 | abended job in job_scheduler: archive_idocs_da... | received from: monitoring_tool@company.com\n\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: archive_idocs_da... | English |
| 7163 | symantec endpoint encryption (see) agent roll ... | \n\nreceived from: yqlvfkih.folbpugd@gmail.com... | yqlvfkih folbpugd | GRP_0 | symantec endpoint encryption (see) agent roll ... | English |
| 7164 | abended job in job_scheduler: Job_1379 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1379 receive... | English |
| 7165 | unable to restore pc from hibernation after re... | pc fails to restore from hibernation after re ... | ayrhcfxi zartupsw | GRP_19 | unable to restore pc from hibernation after re... | English |
| 7166 | unable to execute job_scheduler jobs post clie... | unable to execute job_scheduler jobs post clie... | dkmcfreg anwmfvlg | GRP_47 | unable to execute job_scheduler jobs post clie... | English |
| 7167 | i do not have access to ethics training module | error message: welcome to the company business... | fhbvisgc cbxpgkwl | GRP_23 | i do not have access to ethics training module... | English |
| 7168 | help to change the windows password using pass... | help to change the windows password using pass... | deaokmqp oruitnmx | GRP_0 | help to change the windows password using pass... | English |
| 7169 | reset passwords for andrdgrtew p taneghrty usi... | the | tjzohmve wusgaozx | GRP_17 | reset passwords for andrdgrtew p taneghrty usi... | English |
| 7170 | account is locked | account is locked | wvdxnkhf jirecvta | GRP_0 | account is locked account is locked | English |
| 7171 | erp consignment zkea issue with creating dupli... | order 35867766 zkea was created and erp genera... | zsulhnxd gexdzoqy | GRP_13 | erp consignment zkea issue with creating dupli... | English |
| 7172 | o drive missing in machine. | o drive missing | xzupryaf vlbikhsm | GRP_0 | o drive missing in machine. o drive missing | English |
| 7173 | unable to log in to ess | unable to log in to ess | dtapgezb hezmtdgo | GRP_0 | unable to log in to ess unable to log in to ess | English |
| 7174 | laptop damaged as it fell in flight | from: prarthyr jha \nsent: wednesday, august 1... | jtqaplhs yjmpiqcu | GRP_19 | laptop damaged as it fell in flight from: pra... | English |
| 7175 | lhqsl909 and HostName_899 needs to be added to... | lhqsl909 and HostName_899 needs to be added to... | ekjobdiz ktelzwvg | GRP_34 | lhqsl909 and HostName_899 needs to be added to... | English |
| 7176 | abended job in job_scheduler: Job_1387 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1387 receive... | English |
| 7177 | gwkdsmfx.ntorypsd@gmail.com password reset | gwkdsmfx.ntorypsd@gmail.com password reset | ughzilfm cfibdamq | GRP_0 | gwkdsmfx.ntorypsd@gmail.com password reset gwk... | English |
| 7178 | problem with wlan in germany, germany for the ... | problem with wlan in germany, germany for the ... | yevirgnl ylhogjct | GRP_4 | problem with wlan in germany, germany for the ... | English |
| 7179 | usa - robot (server cabinet) pc lhnw8222138 is... | usa - robot (server cabinet) pc lhnw8222138 is... | dkmcfreg anwmfvlg | GRP_8 | usa - robot (server cabinet) pc lhnw8222138 is... | English |
| 7180 | re: erp SID_34 access rights | \n\nreceived from: vipqmdse.zkaowfrx@gmail.com... | vipqmdse zkaowfrx | GRP_0 | re: erp SID_34 access rights \n\nreceived from... | English |
| 7181 | password reset - erp | manually reset erp password as the password f... | yszectoh kqwljchg | GRP_0 | password reset - erp manually reset erp passwo... | English |
| 7182 | mobile device activation | have a new phone, my exchange server is blocke... | jvxtfhkg heptuizn | GRP_0 | mobile device activation have a new phone, my ... | English |
| 7183 | problem with wlan in germany, germany for the ... | problem with wlan in germany, germany for the ... | yevirgnl ylhogjct | GRP_4 | problem with wlan in germany, germany for the ... | English |
| 7184 | outlook freezing while opeyctrhbkm plvnuxmrils | outlook freezing while opeyctrhbkm plvnuxmrils | hfvuzmbs vjtsakfb | GRP_0 | outlook freezing while opeyctrhbkm plvnuxmrils... | English |
| 7185 | erp error mesg "order does not exist" when try... | erp error mesg "order does not exist" when try... | zsulhnxd gexdzoqy | GRP_6 | erp error mesg "order does not exist" when try... | English |
| 7186 | email access to mobile device. | email access to mobile device. | zpsoifea wvhilrpz | GRP_0 | email access to mobile device. email access to... | English |
| 7187 | HostName_891 backup server offline/missing vir... | physical backup server HostName_891 is down.\r... | kybgepnj idszleru | GRP_12 | HostName_891 backup server offline/missing vir... | English |
| 7188 | 202 occurrences of your firewall company-inter... | dsw in33627670\r\n\r\nincident overview\r\n===... | afkstcev utbnkyop | GRP_12 | 202 occurrences of your firewall company-inter... | English |
| 7189 | chat transfer | chat transfer | rbozivdq gmlhrtvp | GRP_0 | chat transfer chat transfer | English |
| 7190 | update my erp favorites | update my erp favorites | vfrdxtqw jfbmsenz | GRP_0 | update my erp favorites update my erp favorites | English |
| 7191 | company screensaver not on the computer | company screensaver not on the computer | mxifcasu cxsembup | GRP_0 | company screensaver not on the computer compa... | English |
| 7192 | unable to load webpage | unable to load webpage | mxifcasu cxsembup | GRP_0 | unable to load webpage unable to load webpage | English |
| 7193 | abended job in job_scheduler: Job_1853 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: Job_1853 receive... | English |
| 7194 | abended job in job_scheduler: Job_1402 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: Job_1402 receive... | English |
| 7195 | abended job in job_scheduler: Job_1403 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: Job_1403 receive... | English |
| 7196 | abended job in job_scheduler: Job_1417 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: Job_1417 receive... | English |
| 7197 | unable to change quotation. | unable to change quotation. | txjwyami fhlgpsim | GRP_13 | unable to change quotation. unable to change q... | English |
| 7198 | kis bug fixes and corrections | kis bug fixes and corrections | gzawrocy shbgwxep | GRP_18 | kis bug fixes and corrections kis bug fixes an... | English |
| 7199 | unable to access ms dynamics crm companyprod e... | error: insufficient access\r\n\r\nplease check... | rnueobcz lwhcbati | GRP_22 | unable to access ms dynamics crm companyprod e... | English |
| 7200 | not able to login to windows. | not able to login to windows. | vktxjamz whbdetvp | GRP_0 | not able to login to windows. not able to logi... | English |
| 7201 | erp SID_34 account unlock | erp SID_34 account unlock | lwbchnga axpqctfr | GRP_0 | erp SID_34 account unlock erp SID_34 account u... | English |
| 7202 | we are unable to clear this inwarehouse_tool f... | hello,\r\n\r\ncan you please support here.\r\n... | lkwspqce knxaipyj | GRP_10 | we are unable to clear this inwarehouse_tool f... | English |
| 7203 | account unlock. | account unlock. | vfrdxtqw jfbmsenz | GRP_0 | account unlock. account unlock. | English |
| 7204 | ı cant connect netviewer | ı connected at vpn after ı saw main screen o... | ouqwcehj amtqxvpg | GRP_0 | ı cant connect netviewer ı connected at vpn ... | English |
| 7205 | abended job in job_scheduler: Job_1854 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: Job_1854 receive... | English |
| 7206 | abended job in job_scheduler: hrp_SID_34_chg_p... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: hrp_SID_34_chg_p... | English |
| 7207 | erp SID_34 access rights | \n\nreceived from: npvmwszt.gzcpejxv@gmail.com... | npvmwszt gzcpejxv | GRP_0 | erp SID_34 access rights \n\nreceived from: np... | English |
| 7208 | material tax classifications zero | \r\n\r\nreceived from: hpmwliog.kqtnfvrl@gmail... | hpmwliog kqtnfvrl | GRP_29 | material tax classifications zero \r\n\r\nrece... | English |
| 7209 | email queries | email queries | skmdgnuh utgclesd | GRP_0 | email queries email queries | Scottish Gaelic |
| 7210 | no response on call | no response on call | rbozivdq gmlhrtvp | GRP_0 | no response on call no response on call | English |
| 7211 | password reset - ad | cyndy emailed requesting for password reset fo... | dxqwftir hbknpyzf | GRP_0 | password reset - ad cyndy emailed requesting f... | English |
| 7212 | mss access is missing | \n\nreceived from: omrsiqdv.iwhcpgoa@gmail.com... | omrsiqdv iwhcpgoa | GRP_0 | mss access is missing \n\nreceived from: omrsi... | English |
| 7213 | unable to login to erp | thomklmas contacted us during the outage when ... | anuxbyzg bvsqcjkw | GRP_0 | unable to login to erp thomklmas contacted us ... | English |
| 7214 | please delete calander meetings in kurtyar v1 ... | please delete calendar meetings in kurtyar v1 ... | ymapungc kzaintyu | GRP_26 | please delete calander meetings in kurtyar v1 ... | English |
| 7215 | account locked in ad | account locked in ad | upiyobvj lwohuizr | GRP_0 | account locked in ad account locked in ad | English |
| 7216 | no access to ethics training | hello,\r\n\r\ni can't accede to my ethics trai... | fywphaxc jacdqbks | GRP_23 | no access to ethics training hello,\r\n\r\ni c... | English |
| 7217 | outage - core swicth in usa dac went down | colin was unable to access some sql databases.... | tmjowelq ojvkxlyd | GRP_0 | outage - core swicth in usa dac went down coli... | English |
| 7218 | outlook is not opening. | outlook is not opening. | vitpjxgm zxiqkrns | GRP_0 | outlook is not opening. outlook is not opening. | English |
| 7219 | please unlock the SID_78user at sar r/3 | \r\n\r\nreceived from: cbupnjzo.daflthkw@gmail... | cbupnjzo daflthkw | GRP_2 | please unlock the SID_78user at sar r/3 \r\n\r... | English |
| 7220 | new windows 7 pc lpgw8517786 cannot connect to... | new windows 7 pc lpgw8517786 cannot connect to... | jdlxkygf wlzqaivr | GRP_3 | new windows 7 pc lpgw8517786 cannot connect to... | English |
| 7221 | zdsxmcwu thdjzolwronization issue | zdsxmcwu thdjzolwronization issue | smhepfdn aypgzieh | GRP_0 | zdsxmcwu thdjzolwronization issue zdsxmcwu th... | English |
| 7222 | account locked. | account locked. | pvlxjizg xzvlwqjc | GRP_0 | account locked. account locked. | English |
| 7223 | bitte precimat nr.2468 freischalten | bitte die maschine precimat 1 nr.2468 wieder f... | bejvhsfx dmvsclhp | GRP_25 | bitte precimat nr.2468 freischalten bitte die ... | German |
| 7224 | password reset to login to erp hcm to be able ... | password reset to login to erp hcm to be able ... | ewlmcqsh usdlfbkh | GRP_0 | password reset to login to erp hcm to be able ... | English |
| 7225 | erp is not working. error : log on balancing e... | inc1542327 : cert opened. \r\nwork around | wczrtsja crwioekx | GRP_0 | erp is not working. error : log on balancing e... | English |
| 7226 | erp is not working. error : log on balancing e... | inc1542327 : cert opened. \r\nwork around | btuqmzvs wscahikd | GRP_0 | erp is not working. error : log on balancing e... | English |
| 7227 | erp is not working. error : log on balancing e... | inc1542327 : cert opened. \r\nwork around | jcdewsuv mdipqhzx | GRP_0 | erp is not working. error : log on balancing e... | English |
| 7228 | abended job in job_scheduler: SID_32arc2 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_32arc2 recei... | English |
| 7229 | erp SID_34 log out | india cec are having issues with erp SID_34 pr... | hpmwliog kqtnfvrl | GRP_0 | erp SID_34 log out india cec are having issue... | English |
| 7230 | abended job in job_scheduler: Job_1142 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1142 receive... | English |
| 7231 | reset the password for on erp / production / erp | please reset password for SID_78user, old erp ... | qnstifeb hybrjfex | GRP_2 | reset the password for on erp / production / ... | English |
| 7232 | erp logon does not open | \r\n\r\nreceived from: qjtbrvfy.avwqmhsp@gmail... | qjtbrvfy avwqmhsp | GRP_0 | erp logon does not open \r\n\r\nreceived from:... | English |
| 7233 | erp down , internet down in usa pa location | erp down , internet down in usa pa location .\... | mknoeicg aziptqvu | GRP_0 | erp down , internet down in usa pa location e... | English |
| 7234 | server down | e00462 - error reading object details: the pro... | jdmwugop dklawfoy | GRP_0 | server down e00462 - error reading object deta... | English |
| 7235 | abended job in job_scheduler: Job_3049 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_3049 receive... | English |
| 7236 | server probleme | \r\n\r\nreceived from: jxlekivs.fwakmztv@gmail... | jxlekivs fwakmztv | GRP_0 | server probleme \r\n\r\nreceived from: jxlekiv... | English |
| 7237 | erp SID_34 - system doesn't work - no producti... | contact: +49-230877 | slbfmqpa qdroplyz | GRP_0 | erp SID_34 - system doesn't work - no producti... | English |
| 7238 | erp is not working | erp is not working | vaqsmniw dtgnkzvp | GRP_0 | erp is not working erp is not working | English |
| 7239 | no connection to the erp system | hello,\r\n\r\nwe have no connection to the erp... | qyndvmlw imcvznow | GRP_0 | no connection to the erp system hello,\r\n\r\n... | English |
| 7240 | connecting with erp not possible | \r\n\r\nreceived from: yfmaqovp.wdonhbez@gmail... | yfmaqovp wdonhbez | GRP_0 | connecting with erp not possible \r\n\r\nrecei... | English |
| 7241 | abended job in job_scheduler: pp_EU_tool_netch... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: pp_EU_tool_netch... | English |
| 7242 | erp not working : erp outage. | erp not working : erp outage.\n\naeophctw nvjy... | aeophctw nvjyhizu | GRP_0 | erp not working : erp outage. erp not working ... | English |
| 7243 | erp is broken down | \r\n\r\nreceived from: cbupnjzo.daflthkw@gmail... | cbupnjzo daflthkw | GRP_0 | erp is broken down \r\n\r\nreceived from: cbup... | English |
| 7244 | abended job in job_scheduler: mm_zscr0099_dly_... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_29 | abended job in job_scheduler: mm_zscr0099_dly_... | English |
| 7245 | erp not working | erp not connecting \n | nritedlm ihaufdol | GRP_0 | erp not working erp not connecting \n | English |
| 7246 | erp SID_34 is not working | plant germany can not log in.+ | mvwiygou rpkscnlv | GRP_0 | erp SID_34 is not working plant germany can no... | English |
| 7247 | erp logon not possible after the error , multi... | please see the error message attached | mcytlpva jutxbdor | GRP_0 | erp logon not possible after the error , multi... | English |
| 7248 | probleme mit scanner und drucker \zslugaxq dtw... | \r\nbei frau gödde ist der drucker nicht i.o.... | zslugaxq dtwlrofu | GRP_24 | probleme mit scanner und drucker \zslugaxq dtw... | German |
| 7249 | probleme mit office365 \ girnda | probleme mit office365 \ girnda | wnyeczkb eqpjcukv | GRP_24 | probleme mit office365 \ girnda probleme mit ... | English |
| 7250 | setup new ws \gonzales | setup new ws \gonzales | usalikfj lfmpxbcn | GRP_24 | setup new ws \gonzales setup new ws \gonzales | un |
| 7251 | hp alm triggered not shown up in inbox | :\nsummary:actually the emails from hp alm tri... | nftpwqsl hgmkrtqv | GRP_0 | hp alm triggered not shown up in inbox :\nsum... | English |
| 7252 | i cannot print out erp documents on zz_mails f... | i want to print out erp documents as pdf file ... | srpkmdcg skdubtnr | GRP_0 | i cannot print out erp documents on zz_mails f... | English |
| 7253 | alte it equipment abholen \wxstfouy isjzcotm | alte it equipment abholen \wxstfouy isjzcotm | wxstfouy isjzcotm | GRP_24 | alte it equipment abholen \wxstfouy isjzcotm a... | English |
| 7254 | probleme mit anmelden. \wxstfouy isjzcotm | leider kann ich mich nicht an meinem rechner a... | wxstfouy isjzcotm | GRP_24 | probleme mit anmelden. \wxstfouy isjzcotm lei... | German |
| 7255 | network outage at usa pa. location : plant | network outage at usa pa.\nintranet and intern... | svuxizgr mkynswqd | GRP_4 | network outage at usa pa. location : plant net... | English |
| 7256 | internet not working in usa location. | phone lines were down too but now its working... | mfixrouy dyifhcjt | GRP_4 | internet not working in usa location. phone li... | English |
| 7257 | engineering_drawing_tool rahmen kann nicht gel... | engineering_drawing_tool lädt keine zeichnung... | dknzygjt bscvykei | GRP_46 | engineering_drawing_tool rahmen kann nicht gel... | German |
| 7258 | laptop not switching on | laptop not starting | bcefayom lzhwcgvb | GRP_19 | laptop not switching on laptop not starting | English |
| 7259 | getting warning messages in outloo while sendi... | getting warning messages in outloo while sendi... | jkshpurg isjgbdch | GRP_28 | getting warning messages in outloo while sendi... | English |
| 7260 | dn#80579343999-sales org. 1322(plant_69) | \r\n\r\nreceived from: jvxmzteb.vsdcnfyr@gmail... | jvxmzteb vsdcnfyr | GRP_18 | dn#80579343999-sales org. 1322(plant_69) \r\n\... | English |
| 7261 | erp hana studio ( sidecar ) software is not w... | erp hana studio ( sidecar ) software is not w... | cubdsrml znewqgop | GRP_19 | erp hana studio ( sidecar ) software is not w... | English |
| 7262 | reset the password for szcbhvwe edpouqjl on er... | dear it team, \r\n\r\ncan you please be so kin... | szcbhvwe edpouqjl | GRP_0 | reset the password for szcbhvwe edpouqjl on er... | English |
| 7263 | zz_mails : unable to send quotations to custom... | \r\n\r\nreceived from: afwzehqs.jfbxegac@gmail... | afwzehqs jfbxegac | GRP_13 | zz_mails : unable to send quotations to custom... | English |
| 7264 | meeting inivation no skype åŠ è½½é¡¹ | meeting inivation no skype åŠ è½½é¡¹ 。 | ynmcplev qpgctajz | GRP_31 | meeting inivation no skype åŠ è½½é¡¹ meeting... | English |
| 7265 | erp logon SID_34 & SID_37 | \r\n\r\nreceived from: kbclinop.vsczklfp@gmail... | kbclinop vsczklfp | GRP_0 | erp logon SID_34 & SID_37 \r\n\r\nreceived fro... | English |
| 7266 | windows disk space utilization alert :: Host... | windows disk space utilization alert :: Host... | uxgrdjfc kqxdjeov | GRP_12 | windows disk space utilization alert :: Host... | English |
| 7267 | password not working for user : frgtyetij | \nfrom: qwvpgayb amniujsh \nsent: wednesday, a... | gaiopkun bvcdpxrt | GRP_0 | password not working for user : frgtyetij \nfr... | English |
| 7268 | abended job in job_scheduler: pp_EU_tool_netch... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: pp_EU_tool_netch... | English |
| 7269 | windows disk space utilization alert ::: lhbsm... | windows disk space utilization alert ::: lhbsm... | uxgrdjfc kqxdjeov | GRP_12 | windows disk space utilization alert ::: lhbsm... | English |
| 7270 | firewall company-internal-pix.company.com at l... | firewall company-internal-pix.company.com (10.... | uvrbhlnt bjrmalzi | GRP_4 | firewall company-internal-pix.company.com at l... | English |
| 7271 | windows disk space utilization alert for :: H... | windows disk space utilization alert for :: H... | uxgrdjfc kqxdjeov | GRP_12 | windows disk space utilization alert for :: H... | English |
| 7272 | scanners down (especially scn to email is not ... | server ip : 10.32.1.101 ( no reply to ping) sm... | wqfzjycu omleknjd | GRP_12 | scanners down (especially scn to email is not ... | English |
| 7273 | document sent out via zz_mails can't be receiv... | i made a uacyltoe hxgaycze as sent document 76... | zupifghd vdqxepun | GRP_13 | document sent out via zz_mails can't be receiv... | English |
| 7274 | password reset. | password reset. | yxmutzwf fxoidlku | GRP_0 | password reset. password reset. | English |
| 7275 | zz_mails is not working | dear it team, \r\ntoday our zz_mails is not wo... | fmqubnvs kcxpeyiv | GRP_13 | zz_mails is not working dear it team, \r\ntoda... | English |
| 7276 | mobile device activation. | mobile device activation. | uwncfovt vxjbunfi | GRP_0 | mobile device activation. mobile device activa... | English |
| 7277 | storage of 3d machine assembly models. | \r\n\r\nreceived from: cyxzfvtj.yklmvqxf@gmail... | cyxzfvtj yklmvqxf | GRP_12 | storage of 3d machine assembly models. \r\n\r\... | English |
| 7278 | keine azm-meldungen möglich | im EU_tool lassen sich keine azm-meldungen ein... | arkmtcig adpsrxjc | GRP_25 | keine azm-meldungen möglich im EU_tool lassen... | German |
| 7279 | the interface 'gi7/3';'te6/1;gi7/11 and gi8/15... | the interface 'gi7/3';'te6/1;gi7/11 and gi8/15... | uvrbhlnt bjrmalzi | GRP_8 | the interface 'gi7/3';'te6/1;gi7/11 and gi8/15... | English |
| 7280 | global it-germany-erp- "send output with email... | good day dear all,\r\nplease help me aerp, so ... | jdynzuim uapkdvgr | GRP_0 | global it-germany-erp- "send output with email... | English |
| 7281 | urgent : ordering from purchasing catalogue no... | ordering from purchasing catalogue not working... | uxpytsdk kyamilds | GRP_29 | urgent : ordering from purchasing catalogue no... | English |
| 7282 | log on erp, password need to change | \n\nreceived from: gvderpbx.udrzjxkm@gmail.com... | gvderpbx udrzjxkm | GRP_0 | log on erp, password need to change \n\nreceiv... | English |
| 7283 | issues when processing t&d requests - urgent | please help to look into the issues i got in a... | mqzirjkb umbgreyq | GRP_2 | issues when processing t&d requests - urgent p... | English |
| 7284 | urgent!! erp outputs not generated | all users in poland encounter issue with erp o... | djpwfxzt cfkwxlmq | GRP_13 | urgent!! erp outputs not generated all users i... | English |
| 7285 | my screen would beshryuout momentarily and ret... | i have just changed my laptop recently and aft... | qulnmvxa gznxlcts | GRP_19 | my screen would beshryuout momentarily and ret... | English |
| 7286 | robot lhqw8325925sf at usa is inactive since 1... | robot lhqw8325925sf at usa is inactive since 1... | uvrbhlnt bjrmalzi | GRP_8 | robot lhqw8325925sf at usa is inactive since 1... | English |
| 7287 | 20160816 plant_308 label error | \r\n\r\nreceived from: bjrtfeyi.fuqapwtv@gmail... | bjrtfeyi fuqapwtv | GRP_45 | 20160816 plant_308 label error \r\n\r\nreceive... | English |
| 7288 | HostName_755 EU_tool server restart required | please restart the server aerp and check if it... | qmhikdzl zatcorjd | GRP_12 | HostName_755 EU_tool server restart required p... | English |
| 7289 | connection to 'admin2-datacenter-switch04' ;sw... | connection to 'admin2-datacenter-switch04' (pi... | uvrbhlnt bjrmalzi | GRP_53 | connection to 'admin2-datacenter-switch04' ;sw... | English |
| 7290 | pls help to change the internal order number 7... | we jsut had a new company marocm apac cost cne... | ckitashy dnqojbwi | GRP_10 | pls help to change the internal order number 7... | English |
| 7291 | not able to find a folder in outlook | not able to find a folder in outlook | xckbimhl ymejrugf | GRP_0 | not able to find a folder in outlook not able... | English |
| 7292 | unable to send mail with forward restriction | unable to send mail with forward restriction | xjzcbgnp vfkwscao | GRP_19 | unable to send mail with forward restriction u... | English |
| 7293 | re: deployment notification | telephony_softwa... | \n\nreceived from: wqfzjycu.omleknjd@gmail.com... | wqfzjycu omleknjd | GRP_0 | re: deployment notification | telephony_softwa... | English |
| 7294 | problem mit festnetztelefon | \n\nreceived from: jctnelqs.lansuiwe@gmail.com... | jctnelqs lansuiwe | GRP_33 | problem mit festnetztelefon \n\nreceived from:... | German |
| 7295 | abended job in job_scheduler: Job_1148 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1148 receive... | English |
| 7296 | please advise damage dell laptop lit only 1 mi... | \n\nreceived from: bmhxwvys.tdmgolwn@gmail.com... | bmhxwvys tdmgolwn | GRP_19 | please advise damage dell laptop lit only 1 mi... | English |
| 7297 | demage laptop | \n\nreceived from: bmhxwvys.tdmgolwn@gmail.com... | bmhxwvys tdmgolwn | GRP_19 | demage laptop \n\nreceived from: bmhxwvys.tdmg... | English |
| 7298 | erp SID_37 account locked | erp SID_37 account locked | wqybuifo qlwfajcb | GRP_0 | erp SID_37 account locked erp SID_37 account ... | English |
| 7299 | need adobe reader to download . | need adobe reader to download . | vomtbcej lyiwqrct | GRP_0 | need adobe reader to download . need adobe rea... | English |
| 7300 | account activation | \n\nreceived from: nxlzpgfr.rlqowmyt@gmail.com... | nxlzpgfr rlqowmyt | GRP_2 | account activation \n\nreceived from: nxlzpgfr... | English |
| 7301 | virus has been found in my laptop | \r\n\r\nreceived from: gqwdslpc.clhgpqnb@gmail... | omLHxJVE PYudFZBW | GRP_0 | virus has been found in my laptop \r\n\r\nrece... | English |
| 7302 | skype会议时ä¸åŽ» | skype会议从邮箱里的链接进ä¸åŽ»ã€‚ | rekpvblc ufysatml | GRP_30 | skype会议时ä¸åŽ» skype会议从邮箱里çš... | Latin |
| 7303 | attendance_tool password | \r\n\r\nreceived from: xwertljy.zrmlhkyq@gmail... | xwertljy zrmlhkyq | GRP_0 | attendance_tool password \r\n\r\nreceived fro... | English |
| 7304 | reboot of lhqsm435, HostName_951, HostName_952... | reboot of lhqsm435, HostName_951, HostName_952... | uvrbhlnt bjrmalzi | GRP_8 | reboot of lhqsm435, HostName_951, HostName_952... | English |
| 7305 | po issue | \r\n\r\nreceived from: jrdafplx.fcnjmvts@gmail... | jrdafplx fcnjmvts | GRP_29 | po issue \r\n\r\nreceived from: jrdafplx.fcnjm... | English |
| 7306 | i can not connect to vpn. | name:pfzxecbo ptygkvzl\r\nlanguage:\r\nbrowser... | pfzxecbo ptygkvzl | GRP_0 | i can not connect to vpn. name:pfzxecbo ptygkv... | English |
| 7307 | å®žä¹ ç”Ÿç™»å½•office365下载邮件附件时æ... | å®žä¹ ç”Ÿç™»å½•office365下载邮件附件时æ... | kyagjxdh dmtjpbnz | GRP_30 | å®žä¹ ç”Ÿç™»å½•office365下载邮件附件时æ... | English |
| 7308 | lcow8327368 shows down since 8/16/2016 3:48 pm... | lcow8327368 shows down since 8/16/2016 3:48 pm... | uxgrdjfc kqxdjeov | GRP_8 | lcow8327368 shows down since 8/16/2016 3:48 pm... | English |
| 7309 | é¤åŽ…ç”µè§†æ— æ³•æ’æ”¾è§†é¢‘文件 | é¤åŽ…ç”µè§†æœºæ— æ³•æ’æ”¾è§†é¢‘文件,请å... | aeozwlch lkiocfbn | GRP_30 | é¤åŽ…ç”µè§†æ— æ³•æ’æ”¾è§†é¢‘文件 é¤åŽ…ç”µ... | English |
| 7310 | please help add e-mail box to my outlook | \n\nreceived from: pkdavqwt.tafrmxsh@gmail.com... | pkdavqwt tafrmxsh | GRP_0 | please help add e-mail box to my outlook \n\nr... | English |
| 7311 | network outage : , spain kenci site is hard do... | what type of outage: ___x__network _____c... | rkupnshb gsmzfojw | GRP_8 | network outage : , spain kenci site is hard do... | English |
| 7312 | login issue | login issue | toqcmkfw inwporqy | GRP_0 | login issue login issue | English |
| 7313 | company login issue. | company login issue. | wyjsbzda yfeuhtib | GRP_0 | company login issue. company login issue. | English |
| 7314 | 制粉电脑电æºçº¿ç‰æŸå | 制粉三楼控制室内电脑电æºçº¿ã€ç½‘ç... | agyvbnwz mxsonkdc | GRP_48 | 制粉电脑电æºçº¿ç‰æŸå 制粉三楼控... | English |
| 7315 | skype for businessæ•…éšœ | 系统ä¸çªç„¶æ‰¾ä¸åˆ°skype for business了 | uheflzgy cpaosbfz | GRP_48 | skype for businessæ•…éšœ 系统ä¸çªç„¶æ‰¾ä¸... | English |
| 7316 | æ‹¼å†™å’Œè¯æ³•错误 | 编辑ppt时,总是弹出"æ— æ³•æ£€æŸ¥æ‹¼å†™... | jtplaoui uvsihfpn | GRP_48 | æ‹¼å†™å’Œè¯æ³•错误 编辑ppt时,总是弹... | English |
| 7317 | 电脑故障 | 质控部拉力试验机控制电脑的æ“作ç... | kwpzbxvf cvuhoizx | GRP_48 | 电脑故障 质控部拉力试验机控制电... | English |
| 7318 | HostName_188: ora-00600: internal error code, ... | HostName_188 : ora-00600: internal error code... | rkupnshb gsmzfojw | GRP_1 | HostName_188: ora-00600: internal error code, ... | English |
| 7319 | unable to submit discount form | unable to submit discount form | skyrlznp rzgbmnyt | GRP_0 | unable to submit discount form unable to subm... | English |
| 7320 | reset erp SID_34 password for user soemec | reset erp SID_34 password for user soemec | qdbmspxf nqdyiclk | GRP_0 | reset erp SID_34 password for user soemec rese... | English |
| 7321 | abended job in job_scheduler: hr_tooldcvcgenratn | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: hr_tooldcvcgenra... | English |
| 7322 | user got a pop-up that displayed virus on the ... | user got a pop-up that displayed virus on the ... | lomzfqns htznsgdf | GRP_0 | user got a pop-up that displayed virus on the ... | English |
| 7323 | login issue | login issue\r\n-verified user details.(employe... | khufscza qoixpave | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 7324 | please extend wireless access from ticket_no14... | consultant vmhfteqo jpsfikow from schneider do... | wqxzleky uwjchqor | GRP_0 | please extend wireless access from ticket_no14... | English |
| 7325 | lcosm005(conformaclad shop_floor_app server):s... | lcosm005(conformaclad shop_floor_app server):s... | jloygrwh acvztedi | GRP_1 | lcosm005(conformaclad shop_floor_app server):s... | English |
| 7326 | unable to login to her microsoft 365 email acc... | unable to login to her microsoft 365 email acc... | scourghi luhsqbmy | GRP_0 | unable to login to her microsoft 365 email acc... | English |
| 7327 | power outage : usa - (company inc) vpn circui... | what type of outage: _____network ___x__c... | rkupnshb gsmzfojw | GRP_8 | power outage : usa - (company inc) vpn circui... | English |
| 7328 | vitalyst // unable to access to forecast to pl... | unable to access to forecast to plan in crm | anpocezt qturbxsg | GRP_22 | vitalyst // unable to access to forecast to pl... | English |
| 7329 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | aylrbosw gaeycbwd | GRP_0 | error login on to the SID_34 system. error log... | English |
| 7330 | abended job in job_scheduler: Job_1320 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1320 receive... | English |
| 7331 | security incidents - ( #in33505432 ) : repeat ... | source ip :10.16.140.231\nsystem name :evhl811... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33505432 ) : repeat ... | English |
| 7332 | password reset | name:mikhghytr karaffa\nlanguage:\nbrowser:mic... | vfrdxtqw jfbmsenz | GRP_0 | password reset name:mikhghytr karaffa\nlanguag... | English |
| 7333 | update on crm access ticket_no0430983 | update on crm access ticket_no0430983 | fumkcsji sarmtlhy | GRP_0 | update on crm access ticket_no0430983 update o... | English |
| 7334 | ticket update on ticket_no0430539 | ticket update on ticket_no0430539 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0430539 ticket updat... | English |
| 7335 | ticket update on inplant_850619 | ticket update on inplant_850619 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_850619 ticket update ... | English |
| 7336 | ticket update on inplant_850899 | ticket update on inplant_850899 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_850899 ticket update ... | English |
| 7337 | ticket update on inplant_850503 | ticket update on inplant_850503 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_850503 ticket update ... | English |
| 7338 | security incidents - ( #in33505432 ) : repeat ... | source ip :10.16.140.231\r\nsystem name :evhl8... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33505432 ) : repeat ... | English |
| 7339 | circuit outage: carrier, india telecom_vendor_... | what type of outage: _x____network _____c... | rkupnshb gsmzfojw | GRP_8 | circuit outage: carrier, india telecom_vendor_... | English |
| 7340 | unable to access site | unable to access site | wvngzrca sfmrzdth | GRP_0 | unable to access site unable to access site | English |
| 7341 | could you please help set up erp. my user nam... | \r\n\r\nreceived from: saqbgcpl.ybfzcjiq@gmail... | saqbgcpl ybfzcjiq | GRP_0 | could you please help set up erp. my user nam... | English |
| 7342 | zmmdata currency error when trying to extend t... | zmmdata currency error when trying to extend t... | ivkhegjw gquflzse | GRP_20 | zmmdata currency error when trying to extend t... | English |
| 7343 | unable to connect to dv06 | unable to connect to dv06 | ulmctsvi lbvrdika | GRP_0 | unable to connect to dv06 unable to connect to... | English |
| 7344 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | mreocsnk swoyxzma | GRP_0 | error login on to the SID_34 system. error log... | English |
| 7345 | security incidents - ( sw #in33501789 ) : broa... | we are seeing activity indicating the host at ... | ugyothfz ugrmkdhx | GRP_2 | security incidents - ( sw #in33501789 ) : broa... | English |
| 7346 | unable to connect to network printer | unable to connect to network printer dv06 | ulmctsvi lbvrdika | GRP_0 | unable to connect to network printer unable to... | English |
| 7347 | need access to exchange server on new company ... | i am being blocked from exchange activesync an... | strzxuav ojhtmkyq | GRP_0 | need access to exchange server on new company ... | English |
| 7348 | HostName_480 - verify filesystem h: | dsw in31864001\r\n\r\nevent id: 67771149\r\nev... | afkstcev utbnkyop | GRP_39 | HostName_480 - verify filesystem h: dsw in3186... | English |
| 7349 | re: deployment notification | telephony_softwa... | \n\nreceived from: vetkdblx.nsuwkraj@gmail.com... | vetkdblx nsuwkraj | GRP_0 | re: deployment notification | telephony_softwa... | English |
| 7350 | tastatur an r246 und r247 defekt. | tastatur an r246 und r247 defekt. bitte austau... | frzjtmyk wzacvhki | GRP_33 | tastatur an r246 und r247 defekt. tastatur an ... | German |
| 7351 | repeat outbound connection for 135/tcp | dsw ticket in33417637\r\n\r\nwe are seeing you... | afkstcev utbnkyop | GRP_2 | repeat outbound connection for 135/tcp dsw tic... | English |
| 7352 | event summary: [hw] service icmp/icmp is down | dsw ticket in33426117\r\n\r\nevent id: 8065733... | afkstcev utbnkyop | GRP_2 | event summary: [hw] service icmp/icmp is down ... | English |
| 7353 | abended job in job_scheduler: Job_1953b | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1953b receiv... | English |
| 7354 | event summary: [hw] service icmp/icmp is down | dsw ticket in33575214\r\n\r\nrelated events: \... | afkstcev utbnkyop | GRP_2 | event summary: [hw] service icmp/icmp is down ... | English |
| 7355 | event summary: [hw] service icmp/icmp is down | dsw ticket number in33575471\r\n\r\nrelated ev... | afkstcev utbnkyop | GRP_2 | event summary: [hw] service icmp/icmp is down ... | English |
| 7356 | HostName_68 near capacity - 90% | dsw ticket in33575516\r\n\r\n related events: ... | afkstcev utbnkyop | GRP_39 | HostName_68 near capacity - 90% dsw ticket in3... | English |
| 7357 | audio not working | \nsummary:sound not working on pc | obanjrhg rnafleys | GRP_0 | audio not working \nsummary:sound not working ... | English |
| 7358 | sep encryption set up | sep encryption set up | epqyourg rxjipfum | GRP_0 | sep encryption set up sep encryption set up | English |
| 7359 | need to change the drive name of the network d... | need to change the drive name of the network d... | mkdptnhv rawxhtgz | GRP_0 | need to change the drive name of the network d... | English |
| 7360 | system performance issue | system performance issue | ugobadiz rizhbwmc | GRP_0 | system performance issue system performance issue | English |
| 7361 | company email accounts | from: tzrekwqf homwadbs [mailto:horst.zihrtyud... | tzrekwqf homwadbs | GRP_2 | company email accounts from: tzrekwqf homwadbs... | English |
| 7362 | network outage: russia - warehouse network is... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: russia - warehouse network is... | English |
| 7363 | account to locked | account to locked | hexsotbv wuzrqvfc | GRP_0 | account to locked account to locked | English |
| 7364 | unable to access ess | unable to access ess | nuqwmejc tosypckj | GRP_0 | unable to access ess unable to access ess | English |
| 7365 | multiple issues with the company guest wifi sp... | we have some consultants from ca technologies ... | fyuqhlcx fjiuhxae | GRP_0 | multiple issues with the company guest wifi sp... | English |
| 7366 | my hana will not load anymore | \n\nreceived from: nkthumgf.mwgdenbs@gmail.com... | nkthumgf mwgdenbs | GRP_0 | my hana will not load anymore \n\nreceived fro... | English |
| 7367 | crm mobile app queries | crm mobile app queries | ewvugfcy nxbdajgh | GRP_0 | crm mobile app queries crm mobile app queries | English |
| 7368 | re: deployment notification | telephony_softwa... | \r\n\r\nreceived from: wqfzjycu.omleknjd@gmail... | wqfzjycu omleknjd | GRP_65 | re: deployment notification | telephony_softwa... | English |
| 7369 | network outage: vogelfontein,south africa,sa p... | what type of outage: _____network __x___c... | dkmcfreg anwmfvlg | GRP_8 | network outage: vogelfontein,south africa,sa p... | English |
| 7370 | password reset | password reset | tahbzpsl zgoqstkv | GRP_0 | password reset password reset | English |
| 7371 | engineering tool not work correctly and affect... | engineering tool not work correctly and affect... | zuyimtsf qjtimdsp | GRP_11 | engineering tool not work correctly and affect... | English |
| 7372 | outlook client issue. | \nsummary:receiving following message.\ncannot... | hajworze jqpisura | GRP_0 | outlook client issue. \nsummary:receiving foll... | English |
| 7373 | when working in outlook, i cannot edite the su... | when working in outlook, i cannot edit the sub... | ijmabvlz vosuedkm | GRP_0 | when working in outlook, i cannot edite the su... | English |
| 7374 | re: deployment notification | telephony_softwa... | \r\n\r\nreceived from: vetkdblx.nsuwkraj@gmail... | vetkdblx nsuwkraj | GRP_0 | re: deployment notification | telephony_softwa... | English |
| 7375 | wvdxnkhf jirecvta has issues to connect compan... | wvdxnkhf jirecvta has issues to connect compan... | ugephfta hrbqkvij | GRP_0 | wvdxnkhf jirecvta has issues to connect compan... | English |
| 7376 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | kmtpzyre mqlsfkre | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 7377 | erp SID_34 lock out. | erp SID_34 lock out. | szpilhug hrwacxbk | GRP_0 | erp SID_34 lock out. erp SID_34 lock out. | English |
| 7378 | password reset | password reset | kauozcir jlyqxise | GRP_0 | password reset password reset | English |
| 7379 | outlook not working : crm issue | outlook not working : crm issue | tjyoheic eyuwsgld | GRP_0 | outlook not working : crm issue outlook not w... | English |
| 7380 | skype personal certificate issue | skype personal certificate issue | tjyoheic eyuwsgld | GRP_0 | skype personal certificate issue skype person... | English |
| 7381 | erp SID_37 account unlock and password reset | erp SID_37 account unlock and password reset | djlpawmc nyzwqofu | GRP_0 | erp SID_37 account unlock and password reset e... | English |
| 7382 | connecting drives to my computer | \r\n\r\nreceived from: zxobmreq.udikorhv@gmail... | zxobmreq udikorhv | GRP_0 | connecting drives to my computer \r\n\r\nrecei... | English |
| 7383 | circuit outage: usa - (company) secondary circ... | what type of outage: _____network ___x__c... | dkmcfreg anwmfvlg | GRP_8 | circuit outage: usa - (company) secondary circ... | English |
| 7384 | engineering_tool | name:obanjrhg rnafleys\nlanguage:\nbrowser:mic... | obanjrhg rnafleys | GRP_0 | engineering_tool name:obanjrhg rnafleys\nlangu... | English |
| 7385 | abended job in job_scheduler: SID_32hotf | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_1 | abended job in job_scheduler: SID_32hotf recei... | English |
| 7386 | this message was sent to the company quarantin... | from: microsoft outlook [mailto:postmaster@com... | vhzxkjet lkufgrhq | GRP_26 | this message was sent to the company quarantin... | English |
| 7387 | unable to connect to companysecure at usa, oh | contact # \nno one at the site is able to conn... | zcxfngeq gwczibrq | GRP_4 | unable to connect to companysecure at usa, oh ... | English |
| 7388 | not possible to complete to do pgi for rma 711... | during the pgi transaction for rma 7112500109 ... | jaeuqbvt orlhenfj | GRP_44 | not possible to complete to do pgi for rma 711... | English |
| 7389 | issues with attachments on outlook | issues with attachments on outlook | seygxbva shqjbzpf | GRP_0 | issues with attachments on outlook issues wit... | English |
| 7390 | wnyeczkb.eqpjcukv@gmail.com password reset | wnyeczkb.eqpjcukv@gmail.com password reset | ughzilfm cfibdamq | GRP_0 | wnyeczkb.eqpjcukv@gmail.com password reset wny... | English |
| 7391 | vpn queries | vpn queries | fgejnhux fnkymoht | GRP_0 | vpn queries vpn queries | English |
| 7392 | erp SID_37 password reset | erp SID_37 password reset | liedzaft lvnbzktj | GRP_0 | erp SID_37 password reset erp SID_37 password ... | English |
| 7393 | access to engineering_tool | \nsummary:job transfer back into markhtyeting ... | fljhvdsn kiyzclao | GRP_0 | access to engineering_tool \nsummary:job trans... | English |
| 7394 | call transferred to dan | call transferred to dan | rbozivdq gmlhrtvp | GRP_0 | call transferred to dan call transferred to dan | English |
| 7395 | unable to connect to the hp printer at home | unable to connect to the hp printer at home | lukibasy bqufyozk | GRP_0 | unable to connect to the hp printer at home un... | English |
| 7396 | need access to benefit solver in single sign o... | user called in stating that she needs the bene... | mabstwkd ytmuwicv | GRP_2 | need access to benefit solver in single sign o... | English |
| 7397 | browser issue : | \r\n | fgejnhux fnkymoht | GRP_0 | browser issue : \r\n | English |
| 7398 | vip 2 - single sign on for hr_tool is not oper... | i cannot access hr_tool globalview for my pay ... | buyoipdj fceymwtz | GRP_0 | vip 2 - single sign on for hr_tool is not oper... | English |
| 7399 | install ie11 \ahlqgjwx wbsfavhg | install ie11 \ahlqgjwx wbsfavhg | ahlqgjwx wbsfavhg | GRP_24 | install ie11 \ahlqgjwx wbsfavhg install ie11 \... | English |
| 7400 | probleme mit lan \wxstfouy isjzcotm | probleme mit lan \wxstfouy isjzcotm | wxstfouy isjzcotm | GRP_24 | probleme mit lan \wxstfouy isjzcotm probleme ... | Danish |
| 7401 | unable to create delivery | please provide the following:\r\n\r\nwhat orde... | vdylwkbo hzlnrgat | GRP_6 | unable to create delivery please provide the f... | English |
| 7402 | after upgrade telephony_software has dierppear... | after upgrade telephony_software has dierppear... | zkgfcyvx sgxeatyb | GRP_0 | after upgrade telephony_software has dierppear... | English |
| 7403 | access to forecast to plan | access to forecast to plan | nwzhlktu plktredg | GRP_22 | access to forecast to plan access to forecast ... | English |
| 7404 | probleme mit öffnen von dokumenten im intrane... | probleme mit öffnen von dokumenten im intrane... | xmlbfjpg yegzbvru | GRP_24 | probleme mit öffnen von dokumenten im intrane... | German |
| 7405 | single sign on portal apps | please add the purchasing production and purch... | zqordbct lnspykfu | GRP_27 | single sign on portal apps please add the purc... | English |
| 7406 | company guest account creation request | \nsummary:can you please help me with the comp... | vfrdxtqw jfbmsenz | GRP_0 | company guest account creation request \nsumm... | English |
| 7407 | password reset | password reset | fegczbtq mkraueci | GRP_0 | password reset password reset | English |
| 7408 | problems with accessing quote engine within co... | i logged onto to company centre\r\nthen search... | obanjrhg rnafleys | GRP_21 | problems with accessing quote engine within co... | English |
| 7409 | unable to update password on password_manageme... | unable to update password on password_manageme... | ewvugfcy nxbdajgh | GRP_0 | unable to update password on password_manageme... | English |
| 7410 | erp pw is invalid | \r\n\r\nreceived from: qnzmjxsl.logsrwnb@gmail... | qnzmjxsl logsrwnb | GRP_0 | erp pw is invalid \r\n\r\nreceived from: qnzmj... | English |
| 7411 | unable to generate inwarehouse_tool as per del... | unable to generate inwarehouse_tool as per del... | tqfnalpj qyoscnge | GRP_13 | unable to generate inwarehouse_tool as per del... | English |
| 7412 | HostName_1045:(reporting_engineering_tooling -... | reporting_tool alert: average (4 samples) disk... | mnlazfsr mtqrkhnx | GRP_9 | HostName_1045:(reporting_engineering_tooling -... | English |
| 7413 | erp SID_34 account lock out issue | erp SID_34 account lock out issue | kexcsbgw lzabjxwf | GRP_0 | erp SID_34 account lock out issue erp SID_34 ... | English |
| 7414 | phone issues | phone issues | efbwiadp dicafxhv | GRP_0 | phone issues phone issues | English |
| 7415 | bitte um ein ruckruf | \n\nreceived from: zkgfcyvx.sgxeatyb@gmail.com... | zkgfcyvx sgxeatyb | GRP_0 | bitte um ein ruckruf \n\nreceived from: zkgfcy... | German |
| 7416 | outlook is giving stack guard error. | outlook is giving stack guard error. | navfgybz fuavxjzk | GRP_0 | outlook is giving stack guard error. outlook i... | English |
| 7417 | the excel files generated by zsSID_5800 don't ... | see email attached for more details and contac... | cpmaidhj elbaqmtp | GRP_20 | the excel files generated by zsSID_5800 don't ... | English |
| 7418 | berechtigung zeitwirtschaft av | hallo herr busse,\r\n\r\nwürden sie dies bitt... | pmweoxyq zrkjnydi | GRP_0 | berechtigung zeitwirtschaft av hallo herr buss... | German |
| 7419 | company-eu-deu-germany-e-b2-f2-press-buero-355... | company-eu-deu-germany-e-b2-f2-press-buero-355... | dkmcfreg anwmfvlg | GRP_8 | company-eu-deu-germany-e-b2-f2-press-buero-355... | English |
| 7420 | lean tracker error | \r\n\r\nreceived from: fdmobjul.oicarvqt@gmail... | sojwqapz okihatrb | GRP_0 | lean tracker error \r\n\r\nreceived from: fdmo... | English |
| 7421 | user id locked. | \n\nreceived from: utoegyqx.lhosidqg@gmail.com... | utoegyqx lhosidqg | GRP_0 | user id locked. \n\nreceived from: utoegyqx.lh... | English |
| 7422 | telephony_software_2016r2_installation - upgra... | \r\n\r\nreceived from: zjcsqtdn.jikyworg@gmail... | zjcsqtdn jikyworg | GRP_65 | telephony_software_2016r2_installation - upgra... | English |
| 7423 | receiving server error in crm _ adoption score... | \r\n\r\nreceived from: qklrdoba.qxivmbts@gmail... | qklrdoba qxivmbts | GRP_22 | receiving server error in crm _ adoption score... | English |
| 7424 | re: deployment notification | telephony_softwa... | \r\n\r\nreceived from: wqfzjycu.omleknjd@gmail... | wqfzjycu omleknjd | GRP_33 | re: deployment notification | telephony_softwa... | English |
| 7425 | attendance_tool password reset request | attendance_tool password reset request | pstlrmvf jokbeqnp | GRP_0 | attendance_tool password reset request attend... | English |
| 7426 | re: deployment notification | telephony_softwa... | \r\n\r\nreceived from: vetkdblx.nsuwkraj@gmail... | vetkdblx nsuwkraj | GRP_0 | re: deployment notification | telephony_softwa... | English |
| 7427 | ad account lock out | ad account lock out | upiyobvj lwohuizr | GRP_0 | ad account lock out ad account lock out | English |
| 7428 | new order--mm# 2694571 dmhpm045 / mm# 2695539 ... | from: crysyhtal xithya \r\nsent: tuesday, augu... | smktofel etsoirbw | GRP_44 | new order--mm# 2694571 dmhpm045 / mm# 2695539 ... | English |
| 7429 | no intercompany | \n\nreceived from: dumovtpj.ahgjsvoq@gmail.com... | dumovtpj ahgjsvoq | GRP_13 | no intercompany \n\nreceived from: dumovtpj.a... | English |
| 7430 | need help in installing tess | need help in installing tess | tvirflky febluink | GRP_0 | need help in installing tess need help in inst... | English |
| 7431 | email-anzeige | \r\n\r\nreceived from: trgqbeax.hfyzudql@gmail... | trgqbeax hfyzudql | GRP_0 | email-anzeige \r\n\r\nreceived from: trgqbeax.... | German |
| 7432 | not able to login to ess portal | not able to login to ess portal | xzwlnbfo plstfydx | GRP_0 | not able to login to ess portal not able to lo... | English |
| 7433 | zpdist_programdnty not allowing to distribute ... | \r\nhello chandruhdty, ebi,\r\n\r\ni´ve creat... | cfajzero vlygoksi | GRP_18 | zpdist_programdnty not allowing to distribute ... | English |
| 7434 | windows system doesn't start | windows system doesn't start | pwksivmq dbxajims | GRP_31 | windows system doesn't start windows system do... | English |
| 7435 | wifi on big meetings is not stable in the meet... | if we have a meeting at switzerland with a lot... | ustvaifg hmzfewks | GRP_33 | wifi on big meetings is not stable in the meet... | English |
| 7436 | nicht gebuchte anzahlungsrechnungen company 54... | siehe beigefügte e-mail | hgufmidr mfobkyun | GRP_10 | nicht gebuchte anzahlungsrechnungen company 54... | German |
| 7437 | erp SID_34 account lock out issue | erp SID_34 account lock out issue | wjsfbpuv lcpdfihr | GRP_0 | erp SID_34 account lock out issue erp SID_34 a... | English |
| 7438 | laptop power issue | laptop is not getting on | yjxuqdto sivnzgok | GRP_19 | laptop power issue laptop is not getting on | English |
| 7439 | ç”å¤: help for mm#4866474 24800776 | \r\n\r\nreceived from: windy.shi@company.com\r... | tycludks cjofwigv | GRP_6 | ç”å¤: help for mm#4866474 24800776 \r\n\r\nr... | English |
| 7440 | change "volunteer tracker" | \n\nreceived from: fmjeaoih.ndyezlkb@gmail.com... | fmjeaoih ndyezlkb | GRP_16 | change "volunteer tracker" \n\nreceived from:... | English |
| 7441 | loaner laptops germany location germany requ... | \r\n\r\nreceived from: ubiqcrvy.mxjcnqfs@gmail... | ubiqcrvy mxjcnqfs | GRP_28 | loaner laptops germany location germany requ... | English |
| 7442 | re: deployment notification | telephony_softwa... | \r\n\r\nreceived from: wqfzjycu.omleknjd@gmail... | wqfzjycu omleknjd | GRP_65 | re: deployment notification | telephony_softwa... | English |
| 7443 | cannot access SID_1 | hello it,\r\n\r\ni cannot login to SID_1 anymo... | jwqyxbzs adpvilqu | GRP_0 | cannot access SID_1 hello it,\r\n\r\ni cannot ... | English |
| 7444 | support für umzug \qvncizuf ueiybanz | support für umzug \qvncizuf ueiybanz | qvncizuf ueiybanz | GRP_24 | support für umzug \qvncizuf ueiybanz support ... | Zhuang |
| 7445 | probleme mit EU_tool \obqridjk ugelctsz | probleme mit EU_tool \obqridjk ugelctsz | obqridjk ugelctsz | GRP_24 | probleme mit EU_tool \obqridjk ugelctsz proble... | Hungarian |
| 7446 | virus found | \r\n\r\nreceived from: ynsqjehx.kqgrsawl@gmail... | ynsqjehx kqgrsawl | GRP_50 | virus found \r\n\r\nreceived from: ynsqjehx.kq... | English |
| 7447 | unable to create delivery | please provide the following:\r\n\r\nwhat orde... | mvwiygou rpkscnlv | GRP_6 | unable to create delivery please provide the f... | English |
| 7448 | windows account lock out | windows account lockout | gbaeniou svltmagu | GRP_0 | windows account lock out windows account lock... | English |
| 7449 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | xqkydoat bveiyclr | GRP_0 | request to reset microsoft online services pas... | English |
| 7450 | problem mit start in outlook | \r\n\r\nreceived from: ptuchwad.yzvrlcqa@gmail... | ptuchwad yzvrlcqa | GRP_0 | problem mit start in outlook \r\n\r\nreceived ... | German |
| 7451 | po error language | \r\n\r\nreceived from: xjvubmlq.vyamhjip@gmail... | xjvubmlq vyamhjip | GRP_29 | po error language \r\n\r\nreceived from: xjvub... | English |
| 7452 | telephony_software software 2016 upgrade for u... | i am not able to find the interaction desktop ... | wyxqkzmf urigtqnp | GRP_0 | telephony_software software 2016 upgrade for u... | English |
| 7453 | outlook spell check error - repeated issue | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_0 | outlook spell check error - repeated issue \r\... | English |
| 7454 | abended job in job_scheduler: Job_2600 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_2600 receive... | English |
| 7455 | abended job in job_scheduler: Job_2584 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_2584 receive... | English |
| 7456 | abended job in job_scheduler: Job_2599 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_2599 receive... | English |
| 7457 | account locked in ad | account locked in ad | jebpqcys njcrzhdq | GRP_0 | account locked in ad account locked in ad | English |
| 7458 | windows account locked | windows account locked | wqfzjycu omleknjd | GRP_0 | windows account locked windows account locked | English |
| 7459 | account locked in ad | account locked in ad | upiyobvj lwohuizr | GRP_0 | account locked in ad account locked in ad | English |
| 7460 | unable to login to erp SID_34 | unable to login to erp SID_34 | xmnvhfoa lkemcwrf | GRP_0 | unable to login to erp SID_34 unable to login ... | English |
| 7461 | recall: re:ticket_no1541701 - please reopen | \n\nreceived from: duwvesim.cixqbmfr@gmail.com... | duwvesim cixqbmfr | GRP_0 | recall: re:ticket_no1541701 - please reopen \n... | English |
| 7462 | laptop volume is not working | \r\n\r\nreceived from: rvsbtxue.cdrwsymj@gmail... | rvsbtxue cdrwsymj | GRP_19 | laptop volume is not working \r\n\r\nreceived ... | English |
| 7463 | outlook spell check not working - repeated issue | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_19 | outlook spell check not working - repeated iss... | English |
| 7464 | dell battery failure. | -kds sw11-services <-kds.sw11-services@company... | rxoynvgi ntgdsehl | GRP_19 | dell battery failure. -kds sw11-services <-kds... | English |
| 7465 | mm# 1876905 | from: -kds sw11-services \r\nsent: tuesday, au... | rxoynvgi ntgdsehl | GRP_6 | mm# 1876905 from: -kds sw11-services \r\nsent... | English |
| 7466 | windows account locked | windows account locked | vwdghyai pjehycoz | GRP_0 | windows account locked windows account locked | English |
| 7467 | unable connect to engineering_tool | unable connect to engineering_tool | bfmlysrk olbthfqr | GRP_0 | unable connect to engineering_tool unable con... | English |
| 7468 | abended job in job_scheduler: pp_EU_tool_netch... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: pp_EU_tool_netch... | English |
| 7469 | warehouse_vendor export service on HostName_80... | warehouse_vendor export service on HostName_80... | jloygrwh acvztedi | GRP_20 | warehouse_vendor export service on HostName_80... | English |
| 7470 | sipppr for help | dear it,\n\n以下是sipppr的入å£é“¾æŽ¥ã€... | pfiyvdea uwbdsfmr | GRP_31 | sipppr for help dear it,\n\n以下是sippprç... | English |
| 7471 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | oylukbas hzrbaksx | GRP_0 | error login on to the SID_34 system. error log... | English |
| 7472 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | sraouxgh ehbomcvy | GRP_0 | error login on to the SID_34 system. error log... | English |
| 7473 | help to change the windows password using pass... | help to change the windows password using pass... | mdbegvct dbvichlg | GRP_0 | help to change the windows password using pass... | English |
| 7474 | r173 schneeberger cnc nr.20123 / wza | programdntyme lassen sich teilweise nicht öff... | zxopwyak zrbfkimx | GRP_33 | r173 schneeberger cnc nr.20123 / wza programdn... | German |
| 7475 | user needed help to login to erp SID_34 | user needed help to login to erp SID_34.\r\n-c... | fjohugzb fhagjskd | GRP_0 | user needed help to login to erp SID_34 user n... | English |
| 7476 | abended job in job_scheduler: hr_tooldcvcgenratn | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: hr_tooldcvcgenra... | English |
| 7477 | help to change the windows password using pass... | help to change the windows password using pass... | rzckwufx vgysnlab | GRP_0 | help to change the windows password using pass... | English |
| 7478 | abended job in job_scheduler: Job_2827 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_29 | abended job in job_scheduler: Job_2827 receive... | English |
| 7479 | expense report will not submit | \n\nreceived from: ytqhfmwi.itnakpmc@gmail.com... | ytqhfmwi itnakpmc | GRP_68 | expense report will not submit \n\nreceived fr... | English |
| 7480 | return 7112594470 is held up in worklfow under... | vnhaycfo smkpfjzv is not with earthworks usa- ... | toeibhlp gukqjwnr | GRP_13 | return 7112594470 is held up in worklfow under... | English |
| 7481 | robhyertyj lee | ron bell #21112660 has a 300 health savings ac... | wrjaezov nouigrqb | GRP_52 | robhyertyj lee ron bell #21112660 has a 300 he... | English |
| 7482 | dell 7350: the system keeps going in to a loop... | dell 7350: the system keeps going in to a loop... | fhdgytup oxugrqeb | GRP_3 | dell 7350: the system keeps going in to a loop... | English |
| 7483 | adding purchasingupstreamsso members | please add kigthuym whjtyulen (whjtlkn) and cq... | zqordbct lnspykfu | GRP_2 | adding purchasingupstreamsso members please ad... | English |
| 7484 | mobile device | \r\n\r\nreceived from: ejsxqmia.cujvlrfq@gmail... | ejsxqmia cujvlrfq | GRP_0 | mobile device \r\n\r\nreceived from: ejsxqmia.... | English |
| 7485 | how can i send a video to someone outside of c... | name:aytjedki rucfxpla\nlanguage:\nbrowser:mic... | aytjedki rucfxpla | GRP_0 | how can i send a video to someone outside of c... | English |
| 7486 | vip 2: meeting acceptance notification | meeting acceptance notification | mfdaluin gxtkyzeb | GRP_27 | vip 2: meeting acceptance notification meetin... | English |
| 7487 | unable to open .tif files | unable to open .tif files | wviaduqn nouqlwvz | GRP_0 | unable to open .tif files unable to open .tif ... | English |
| 7488 | unable to login to the switch | unable to login to the switch due to the memor... | wczegmok bgqoclvs | GRP_4 | unable to login to the switch unable to login ... | English |
| 7489 | crm account and contact reassignment help. | i would like to reassign accounts and contacts... | vktxjamz whbdetvp | GRP_22 | crm account and contact reassignment help. i w... | English |
| 7490 | telephony_software phone system (interaction d... | name:mitgckqf ewourgcx\nlanguage:\nbrowser:mic... | mitgckqf ewourgcx | GRP_7 | telephony_software phone system (interaction d... | English |
| 7491 | crm accrual posting not replicating from crm t... | fund id and budget postings affected are below... | pfzxecbo ptygkvzl | GRP_15 | crm accrual posting not replicating from crm t... | English |
| 7492 | access to database | name:mikhghytr karaffa\nlanguage:\nbrowser:mic... | rbozivdq gmlhrtvp | GRP_0 | access to database name:mikhghytr karaffa\nlan... | English |
| 7493 | drive encryption attention needed | drive encryption attention needed | mwjcsiug fbwthoca | GRP_0 | drive encryption attention needed drive encryp... | English |
| 7494 | HostName_1169.company.com.is connected? is not... | received reporting_tool alert at 1:57 pm on 8/... | jloygrwh acvztedi | GRP_8 | HostName_1169.company.com.is connected? is not... | English |
| 7495 | password reset on ess portal | password reset on ess portal | lipcoebu eyadxbif | GRP_0 | password reset on ess portal password reset on... | English |
| 7496 | expense report not reaching manager | expense report not reaching manager | znqcljxt azvoespk | GRP_0 | expense report not reaching manager expense re... | English |
| 7497 | pc will not boot. rqxw8516900, beshryu screen... | pc will not boot. rqxw8516900, beshryu screen... | pmwuotcq oiuybwzg | GRP_3 | pc will not boot. rqxw8516900, beshryu screen... | English |
| 7498 | xerox copier in usa office prtSID_69369 has a ... | xerox copier in usa office prtSID_69369 has a ... | xweclugf qmhbjsyi | GRP_3 | xerox copier in usa office prtSID_69369 has a ... | English |
| 7499 | password reset | from: jghjimdghty bfhjtuiwell \nsent: monday, ... | mdbegvct dbvichlg | GRP_0 | password reset from: jghjimdghty bfhjtuiwell \... | English |
| 7500 | account locked out and password reset request. | account locked out and password reset request. | inermfhs bxijkepv | GRP_0 | account locked out and password reset request.... | English |
| 7501 | unable to launch outlook | unable to launch outlook | ctxribfl hiwckyrn | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 7502 | unable to connect to any network from laptop | unable to connect to any network from laptop | icezpqar zbpcjfdh | GRP_0 | unable to connect to any network from laptop u... | English |
| 7503 | create wi-fi passwords for ibm team onsite at ... | hi,\r\n\r\nplease create wi-fi passwords for a... | qcehailo wqynckxg | GRP_0 | create wi-fi passwords for ibm team onsite at ... | English |
| 7504 | collaboration_platform issue | collaboration_platform issue | utdlmzyb dvfpraeg | GRP_0 | collaboration_platform issue collaboration_pl... | English |
| 7505 | unable to open outlook and ess due to bad pass... | unable to open outlook and ess due to bad pass... | ufxdkqbc uehvxmfy | GRP_0 | unable to open outlook and ess due to bad pass... | English |
| 7506 | unable to access emails | unable to access emails | xyiktbla gralexfc | GRP_0 | unable to access emails unable to access emails | English |
| 7507 | zdsxmcwu thdjzolwronization issue. | zdsxmcwu thdjzolwronization issue. | kgqpwvzu rkexzwlh | GRP_0 | zdsxmcwu thdjzolwronization issue. zdsxmcwu th... | English |
| 7508 | account locked out on erp SID_34 | account locked out on erp SID_34 | ygowsqif mkaypzbl | GRP_0 | account locked out on erp SID_34 account locke... | English |
| 7509 | access to engineering tool | access to engineering tool | giatndok wlzxridu | GRP_0 | access to engineering tool access to engineeri... | English |
| 7510 | global it-germany-erp-print of csi in vl02n do... | hello dear all,\r\ni have tried to print the c... | jdynzuim uapkdvgr | GRP_18 | global it-germany-erp-print of csi in vl02n do... | English |
| 7511 | HostName_973 (hr_tool tax_interface app-qa): a... | HostName_973 (hr_tool tax_interface app-qa): a... | dkmcfreg anwmfvlg | GRP_12 | HostName_973 (hr_tool tax_interface app-qa): a... | English |
| 7512 | it-germany-h. kruse / as-400-passwortänderung... | hallo frthdyui,\r\npasswortänderung in der as... | jdynzuim uapkdvgr | GRP_49 | it-germany-h. kruse / as-400-passwortänderung... | German |
| 7513 | erp access | \r\n\r\nreceived from: zfburidj.jmilguev@gmail... | zfburidj jmilguev | GRP_0 | erp access \r\n\r\nreceived from: zfburidj.jmi... | English |
| 7514 | abended job in job_scheduler: Job_1953b | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1953b receiv... | English |
| 7515 | vip 2 : battery seems to be dead : latitude e7250 | vip 2 : battery seems to be dead : latitude e7... | nyrjkctu tbhkenlo | GRP_3 | vip 2 : battery seems to be dead : latitude e7... | English |
| 7516 | restart a service on the lhqSID_1854 server | restart a service on the lhqSID_1854 server\n\... | dctvfjrn oypnxftq | GRP_12 | restart a service on the lhqSID_1854 server re... | English |
| 7517 | password issue | password issue | qmglkaru qiwhfkdv | GRP_0 | password issue password issue | English |
| 7518 | windows password reset | windows password reset | qmglkaru qiwhfkdv | GRP_0 | windows password reset windows password reset | English |
| 7519 | erp SID_34 password reset and unlock request | erp SID_34 password reset and unlock request | czenblfs ochjndta | GRP_0 | erp SID_34 password reset and unlock request ... | English |
| 7520 | unable to access HostName_1274 | unable to access HostName_1274 | bdeplqyj fewovrcq | GRP_12 | unable to access HostName_1274 unable to acces... | English |
| 7521 | unable to launch skype | unable to launch skype | zywoxerf paqxtrfk | GRP_0 | unable to launch skype unable to launch skype | English |
| 7522 | ticket update query on ticket inc1541161 : urg... | ticket update query on ticket inc1541161 : urg... | efbwiadp dicafxhv | GRP_0 | ticket update query on ticket inc1541161 : urg... | English |
| 7523 | unable to connect to company secure | unable to connect to company secure | zywoxerf paqxtrfk | GRP_0 | unable to connect to company secure unable to ... | English |
| 7524 | shop_floor_app record error | operator reinaldo albrecht, second shift machi... | fegahzqx bkeqfvpl | GRP_43 | shop_floor_app record error operator reinaldo ... | English |
| 7525 | engineering_tool_dwnload prb | \r\n\r\nreceived from: rmdtqfxa.fwpnqdxo@gmail... | rmdtqfxa fwpnqdxo | GRP_0 | engineering_tool_dwnload prb \r\n\r\nreceived ... | English |
| 7526 | not possible to login due to a locked account | not possible to login due to a locked account | qufjnslk bvtfrwnu | GRP_0 | not possible to login due to a locked account ... | English |
| 7527 | cant complete quote number | cant complete quote number \r\n3116216659 get ... | zevqkaxh gkmohwdb | GRP_13 | cant complete quote number cant complete quot... | English |
| 7528 | unable to launch netweaver | unable to launch netweaver | wsomjhce afjkuwih | GRP_0 | unable to launch netweaver unable to launch ne... | English |
| 7529 | netweaver bussiness client does not open. | netweaver bussiness client does not open. | fgejnhux fnkymoht | GRP_0 | netweaver bussiness client does not open. netw... | English |
| 7530 | hr_tool portal is not working. | hr_tool portal is not working. | dmxqjpay oxuwmbrt | GRP_0 | hr_tool portal is not working. hr_tool portal ... | English |
| 7531 | vip2 : delegation issue. | vip 2 : telephone:412\nsummary:still trying to... | ztnpeshl vmdyglqn | GRP_0 | vip2 : delegation issue. vip 2 : telephone:412... | English |
| 7532 | the clocks at the bottom of the hub home page ... | i tried in both ie and mozilla. | gvxfymjk euioadyf | GRP_16 | the clocks at the bottom of the hub home page ... | English |
| 7533 | problem with speaker | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_0 | problem with speaker \n\nreceived from: vkzwaf... | English |
| 7534 | unable to reset the password | unable to reset the password\r\n\r\n | krpvcmzg gyhfalmb | GRP_0 | unable to reset the password unable to reset t... | English |
| 7535 | call from debgrtybie savgrtyuille inc1541588 :... | call from debgrtybie savgrtyuille inc1541588 :... | efbwiadp dicafxhv | GRP_0 | call from debgrtybie savgrtyuille inc1541588 :... | English |
| 7536 | immediate restoration of t drive files required | \n\nreceived from: crkdjbot.qiztrxne@gmail.com... | crkdjbot qiztrxne | GRP_0 | immediate restoration of t drive files require... | English |
| 7537 | christgrytoph called to check if account has b... | christgrytoph called to check if account has b... | efbwiadp dicafxhv | GRP_0 | christgrytoph called to check if account has b... | English |
| 7538 | need help in resetting erp password and unlock... | need help in resetting erp password and unlock... | duoabqim vplrsbua | GRP_0 | need help in resetting erp password and unlock... | English |
| 7539 | account expired for cyxieuwk rekwlqmu 2nd july... | account expired for cyxieuwk rekwlqmu 2nd july... | efbwiadp dicafxhv | GRP_0 | account expired for cyxieuwk rekwlqmu 2nd july... | English |
| 7540 | inc1541444 -sao-palo-2960-switch-i(45.25.35.04... | hi uidgt/jean,\r\n\r\nwe are observing one of ... | jloygrwh acvztedi | GRP_62 | inc1541444 -sao-palo-2960-switch-i(45.25.35.04... | English |
| 7541 | password_management_tool password manager brin... | password_management_tool password manager brin... | dmxqjpay oxuwmbrt | GRP_0 | password_management_tool password manager brin... | English |
| 7542 | collaboration_platform online is not opening. | collaboration_platform online is not opening.\... | wczrtsja crwioekx | GRP_0 | collaboration_platform online is not opening. ... | English |
| 7543 | outlook (nicht lizensiertes produkt) | \r\n\r\nreceived from: vnsmwqhb.ogtpenjd@gmail... | vnsmwqhb ogtpenjd | GRP_0 | outlook (nicht lizensiertes produkt) \r\n\r\nr... | English |
| 7544 | reset the password for nvawmlch ubyjolnc on er... | please reset my password | nvawmlch ubyjolnc | GRP_0 | reset the password for nvawmlch ubyjolnc on er... | English |
| 7545 | wvdxnkhf jirecvta locked out himself from wind... | user id : owenghyga\nhe was locked out while u... | wvdxnkhf jirecvta | GRP_0 | wvdxnkhf jirecvta locked out himself from wind... | English |
| 7546 | unable to boot up computer | unable to boot up computer. earlier there was ... | wegxsmbq bvfnmjcd | GRP_0 | unable to boot up computer unable to boot up c... | English |
| 7547 | account locked in ad | account locked in ad | lagqkmto xqtldrcs | GRP_0 | account locked in ad account locked in ad | English |
| 7548 | skype issue ; ms office crashing | skype issue ; ms office crashing | ftgvlneh aitsgqwo | GRP_0 | skype issue ; ms office crashing skype issue ... | English |
| 7549 | crm - unsafe web-side | after pw-update i've tried to lo log-on to crm... | atlwdyej vtlhzbix | GRP_0 | crm - unsafe web-side after pw-update i've t... | English |
| 7550 | one note issue | one note issue | obanjrhg rnafleys | GRP_0 | one note issue one note issue | English |
| 7551 | unlock ad account | unlock ad account | qsontkux lkfnesoc | GRP_0 | unlock ad account unlock ad account | English |
| 7552 | account locked | \r\n\r\nreceived from: vhlepcta.lqbgcxpt@gmail... | vhlepcta lqbgcxpt | GRP_0 | account locked \r\n\r\nreceived from: vhlepcta... | English |
| 7553 | wifi slow speed-company (apac) | it team,\n\nplease kindly check internet for u... | przndfbo pldqbhtn | GRP_4 | wifi slow speed-company (apac) it team,\n\npl... | English |
| 7554 | setup new ws \stwpzxbf bjehirkx | setup new ws \stwpzxbf bjehirkx | stwpzxbf bjehirkx | GRP_24 | setup new ws \stwpzxbf bjehirkx setup new ws \... | un |
| 7555 | aenderungsantrag kann nicht geloescht werden. | aenderungsantrag kann nicht geloescht werden. | gusyjcer lvbxfimr | GRP_0 | aenderungsantrag kann nicht geloescht werden. ... | German |
| 7556 | probleme mit purchasing \xmlbfjpg yegzbvru | probleme mit purchasing \xmlbfjpg yegzbvru | xmlbfjpg yegzbvru | GRP_24 | probleme mit purchasing \xmlbfjpg yegzbvru pro... | Danish |
| 7557 | setup new ws \ghaltiek lsuepvyx | setup new ws \ghaltiek lsuepvyx | ghaltiek lsuepvyx | GRP_24 | setup new ws \ghaltiek lsuepvyx setup new ws \... | English |
| 7558 | net weaver business client does not work. | net weaver business client does not work. \r\n... | gusyjcer lvbxfimr | GRP_0 | net weaver business client does not work. net ... | English |
| 7559 | mobile device (company owned) successfully act... | mobile device (company owned) successfully act... | zpsoifea wvhilrpz | GRP_0 | mobile device (company owned) successfully act... | English |
| 7560 | engineering tool is not working | engineering tool is not working | pftsgqmc zcqiwatg | GRP_0 | engineering tool is not working engineering t... | English |
| 7561 | authorisation error in outlook : nicht lizecie... | authorisation error in outlook : nicht lizecie... | ukwfgxrl rieqbtnp | GRP_0 | authorisation error in outlook : nicht lizecie... | English |
| 7562 | probleme mit EU_tool rechner \ we212772 | moin ,\r\n\r\nkannst du bitte das passwort fre... | wjzvabrl bmcfrlyz | GRP_24 | probleme mit EU_tool rechner \ we212772 moin ... | German |
| 7563 | erp SID_34 password reset request for user : b... | erp SID_34 password reset request for user : b... | qgopxabz xnuieqjr | GRP_0 | erp SID_34 password reset request for user : b... | English |
| 7564 | probleme mit datenbank in EU_tool \hgrvubzo wg... | probleme mit datenbank in EU_tool \hgrvubzo wg... | hgrvubzo wgyhktic | GRP_24 | probleme mit datenbank in EU_tool \hgrvubzo wg... | English |
| 7565 | mail address of cytohwau qfunricw at ticketing... | \r\n\r\nreceived from: qdxyifhj.zbwtunpy@gmail... | qdxyifhj zbwtunpy | GRP_34 | mail address of cytohwau qfunricw at ticketing... | English |
| 7566 | crm not working | \r\n\r\nreceived from: vomtbcej.lyiwqrct@gmail... | vomtbcej lyiwqrct | GRP_22 | crm not working \r\n\r\nreceived from: vomtbce... | English |
| 7567 | abended job in job_scheduler: Job_593 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_593 received... | English |
| 7568 | business_client brings error when launched | business_client brings error when launched | nuksytoh whovmtez | GRP_0 | business_client brings error when launched bus... | English |
| 7569 | programdnty zmmtaxupd : sales organization sel... | programdnty zmmtaxupd updates tax classificati... | rdfjsawg zpmxgdcw | GRP_10 | programdnty zmmtaxupd : sales organization sel... | English |
| 7570 | windows account locked in ad | windows account locked in ad | tkglinmz dktpawfm | GRP_0 | windows account locked in ad windows account l... | English |
| 7571 | user is getting unlicensed error in office | user is getting unlicensed error in office | seyhanlk nuazwxgq | GRP_0 | user is getting unlicensed error in office use... | English |
| 7572 | ç”å¤: email address link to delivery not 转... | \r\n\r\nreceived from: jkmeusfq.vjpckzsa@gmail... | jkmeusfq vjpckzsa | GRP_18 | ç”å¤: email address link to delivery not 转... | English |
| 7573 | not able to view attachments from outlook | not able to view attachments from outlook | hzagqxbf fckwrsdq | GRP_0 | not able to view attachments from outlook not ... | English |
| 7574 | pc ewkw8111185 funktioniert nicht (pc lässt s... | von: cytohwau qfunricw \ngesendet: donnerstag,... | cytohwau qfunricw | GRP_33 | pc ewkw8111185 funktioniert nicht (pc lässt s... | German |
| 7575 | abended job in job_scheduler: Job_483 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_483 received... | English |
| 7576 | issues with posting to the hub | \r\n\r\nreceived from: fmjeaoih.ndyezlkb@gmail... | fmjeaoih ndyezlkb | GRP_16 | issues with posting to the hub \r\n\r\nreceive... | English |
| 7577 | tablet - dell 7350 -æ— æ³•è¿žæŽ¥æ— çº¿wifi网ç... | please provide details of the issue.\r\næ— æ³•... | dmexgspl mruzqhac | GRP_31 | tablet - dell 7350 -æ— æ³•è¿žæŽ¥æ— çº¿wifi网ç... | English |
| 7578 | locked out of account | \r\n\r\nreceived from: ubdihsop.ahyeqpmx@gmail... | ubdihsop ahyeqpmx | GRP_0 | locked out of account \r\n\r\nreceived from: u... | English |
| 7579 | require set up mobile link company e-mail | \n\nreceived from: przndfbo.pldqbhtn@gmail.com... | przndfbo pldqbhtn | GRP_0 | require set up mobile link company e-mail \n\n... | English |
| 7580 | oa35818597, inwarehouse_tool 0158921930 was cr... | oa35818597, inwarehouse_tool 0158921930 was cr... | hlrmufzx qcdzierm | GRP_18 | oa35818597, inwarehouse_tool 0158921930 was cr... | English |
| 7581 | vpn ä¸èƒ½ç™»å½•,网页一直在检查防病... | vpn ä¸èƒ½ç™»å½•,网页一直在检查防病... | eokwmfay ewbltgha | GRP_31 | vpn ä¸èƒ½ç™»å½•,网页一直在检查防病... | English |
| 7582 | æ–‡ä»¶æ— æ³•é€šè¿‡æ‰“å°æœºfe08æ‰“å° | æ–‡ä»¶æ— æ³•é€šè¿‡æ‰“å°æœºfe08æ‰“å° | omatlyrd bvraipdt | GRP_30 | æ–‡ä»¶æ— æ³•é€šè¿‡æ‰“å°æœºfe08æ‰“å° æ–‡ä»¶æ—... | English |
| 7583 | erp can not print by fe08. please help me swit... | erp can not print by fe08. please help me swit... | zreijwsb jnrxugpd | GRP_14 | erp can not print by fe08. please help me swit... | English |
| 7584 | dell battery failure. | \n\nreceived from: rxoynvgi.ntgdsehl@gmail.com... | rxoynvgi ntgdsehl | GRP_19 | dell battery failure. \n\nreceived from: rxoyn... | English |
| 7585 | damaged laptop | from: zrpemyab xvzwcbha \nsent: monday, august... | zrpemyab xvzwcbha | GRP_19 | damaged laptop from: zrpemyab xvzwcbha \nsent:... | English |
| 7586 | windows ç³»ç»Ÿæ— æ³•ç™»å½•æç¤ºè®¡ç®—机与ä¸... | windows ç³»ç»Ÿæ— æ³•ç™»å½•æç¤ºè®¡ç®—机与ä¸... | gdyicrel kvtlodsx | GRP_31 | windows ç³»ç»Ÿæ— æ³•ç™»å½•æç¤ºè®¡ç®—机与ä¸... | English |
| 7587 | erp purchasing error | when i tried to submit the "describe what you ... | kyagjxdh dmtjpbnz | GRP_29 | erp purchasing error when i tried to submit th... | English |
| 7588 | 显示器ä¸äº® | æ—©ä¸Šå¼€æœºåŽæ˜¾ç¤ºå™¨ä¸å‡ºå›¾åƒã€‚ | wgmqlnzh vpebwoat | GRP_30 | 显示器ä¸äº® æ—©ä¸Šå¼€æœºåŽæ˜¾ç¤ºå™¨ä¸å‡º... | English |
| 7589 | vpn connection issue | vpn connection issue\r\n-connected to the user... | qwreamdz pmarxvtk | GRP_0 | vpn connection issue vpn connection issue\r\n-... | English |
| 7590 | abended job in job_scheduler: Job_3186 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_10 | abended job in job_scheduler: Job_3186 receive... | English |
| 7591 | abended job in job_scheduler: Job_2114 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_2114 receive... | English |
| 7592 | queue 'dmz_all' failed to connect to hub /lhqs... | observing below alert in reporting_tool since ... | jloygrwh acvztedi | GRP_8 | queue 'dmz_all' failed to connect to hub /lhqs... | English |
| 7593 | sao-palo-2960-switch-i(45.25.35.049) is down s... | sao-palo-2960-switch-i(45.25.35.049) is down s... | jloygrwh acvztedi | GRP_8 | sao-palo-2960-switch-i(45.25.35.049) is down s... | English |
| 7594 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | mbwgkint wjrokfub | GRP_0 | error login on to the SID_34 system. error log... | English |
| 7595 | abended job in job_scheduler: snp_heu_5_regen | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: snp_heu_5_regen ... | English |
| 7596 | problem with sending discount request | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_0 | problem with sending discount request \n\nrece... | English |
| 7597 | na production files not received | \r\n\r\nreceived from: rdfjsawg.zpmxgdcw@gmail... | rdfjsawg zpmxgdcw | GRP_71 | na production files not received \r\n\r\nrecei... | English |
| 7598 | office 365 sprache ändern/ videos aus "thehub... | hallo, ist es möglich das ich office365 von e... | xbyudksw zbfxlmus | GRP_0 | office 365 sprache ändern/ videos aus "thehub... | German |
| 7599 | abended job in job_scheduler: snp_heu_1_regen | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: snp_heu_1_regen ... | English |
| 7600 | abended job in job_scheduler: bk_hana_SID_62_e... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bk_hana_SID_62_e... | English |
| 7601 | abended job in job_scheduler: SID_37hoti | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_37hoti recei... | English |
| 7602 | HostName_216 (erp-SID_51 aprtgghj4k- productio... | HostName_216 (erp-SID_51 aprtgghj4k- productio... | dkmcfreg anwmfvlg | GRP_14 | HostName_216 (erp-SID_51 aprtgghj4k- productio... | English |
| 7603 | HostName_214 (erp-SID_51 app1-production): ave... | HostName_214 (erp-SID_51 app1-production): av... | dkmcfreg anwmfvlg | GRP_14 | HostName_214 (erp-SID_51 app1-production): ave... | English |
| 7604 | HostName_768(corporate file server (teams) - p... | HostName_768(corporate file server (teams) - p... | dkmcfreg anwmfvlg | GRP_12 | HostName_768(corporate file server (teams) - p... | English |
| 7605 | abended job in job_scheduler: Job_1343 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1343 receive... | English |
| 7606 | abended job in job_scheduler: SID_9cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_9cold receiv... | English |
| 7607 | abended job in job_scheduler: SID_23cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_23cold recei... | English |
| 7608 | network drives disconnected | unable to connect to t drive | vanteksj astelnqw | GRP_0 | network drives disconnected unable to connect ... | English |
| 7609 | abended job in job_scheduler: SID_29cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_29cold recei... | English |
| 7610 | abended job in job_scheduler: SID_32cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_32cold recei... | English |
| 7611 | abended job in job_scheduler: Job_727 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_727 received... | English |
| 7612 | HostName_1238 ( south_amerirtca, br -plm dsc f... | HostName_1238 ( south_amerirtca, br -plm dsc f... | jloygrwh acvztedi | GRP_14 | HostName_1238 ( south_amerirtca, br -plm dsc f... | English |
| 7613 | abended job in job_scheduler: Job_717 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_717 received... | English |
| 7614 | abended job in job_scheduler: SID_36cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_36cold recei... | English |
| 7615 | abended job in job_scheduler: Job_571 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_571 received... | English |
| 7616 | abended job in job_scheduler: SID_48cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_48cold recei... | English |
| 7617 | abended job in job_scheduler: SID_43cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_43cold recei... | English |
| 7618 | abended job in job_scheduler: SID_50cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_50cold recei... | English |
| 7619 | abended job in job_scheduler: Job_737 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_737 received... | English |
| 7620 | abended job in job_scheduler: SID_79cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_79cold recei... | English |
| 7621 | abended job in job_scheduler: SID_27hot | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_27hot receiv... | English |
| 7622 | mii login issue | mii login issue.\r\n-verified user details.(em... | lbtverxc ymgljuqn | GRP_0 | mii login issue mii login issue.\r\n-verified ... | English |
| 7623 | abended job in job_scheduler: SID_35cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_35cold recei... | English |
| 7624 | :i am getting the following message when tryin... | name:htsnaodb adjtmlzn\nlanguage:\nbrowser:mic... | htsnaodb adjtmlzn | GRP_0 | :i am getting the following message when tryin... | English |
| 7625 | HostName_1015: average (4 samples) disk free o... | HostName_1015: average (4 samples) disk free o... | vbwszcqn nlbqsuyv | GRP_12 | HostName_1015: average (4 samples) disk free o... | English |
| 7626 | job in job_scheduler: Job_2080 was running long. | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | job in job_scheduler: Job_2080 was running lon... | English |
| 7627 | abended job in job_scheduler: Job_1989 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1989 receive... | English |
| 7628 | abended job in job_scheduler: Job_1907 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1907 receive... | English |
| 7629 | abended job in job_scheduler: Job_1949 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1949 receive... | English |
| 7630 | reset passwords for jcmxerol nbfyczqr using pa... | the | jcmxerol nbfyczqr | GRP_17 | reset passwords for jcmxerol nbfyczqr using pa... | English |
| 7631 | reset microsoft online services password for ... | from: microsoft on behalf of company inc. [mai... | rdwpangu lybaxonw | GRP_0 | reset microsoft online services password for ... | English |
| 7632 | vpn connection problem | \r\n\r\nreceived from: cobsfvjz.apkqmrdu@gmail... | cobsfvjz apkqmrdu | GRP_0 | vpn connection problem \r\n\r\nreceived from: ... | English |
| 7633 | network outage:cantabria (mecftgobusa) - (kenc... | what type of outage: ___x__network _____c... | uxgrdjfc kqxdjeov | GRP_8 | network outage:cantabria (mecftgobusa) - (kenc... | English |
| 7634 | abended job in job_scheduler: Job_1148 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1148 receive... | English |
| 7635 | abended job in job_scheduler: Job_1141 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1141 receive... | English |
| 7636 | erp SID_34 account locked | erp SID_34 account locked | jmuaiqol rmvethkf | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 7637 | a termination for carlos patino, 11386155, eff... | from: idelcia almeida nascimento [mailto:syste... | wsimyhro omhnjqbw | GRP_2 | a termination for carlos patino, 11386155, eff... | English |
| 7638 | access denied in adoption scorecard manager | user is unable to view adoption scorecard mana... | xeakyiqt knhjogel | GRP_22 | access denied in adoption scorecard manager us... | English |
| 7639 | i should be able to see all my activities in c... | hi,\n\n\ni was wondering if i should be able t... | uvrwikmy yusexirn | GRP_22 | i should be able to see all my activities in c... | English |
| 7640 | circuit outage : india, kirty telecom_vendor_1... | what type of outage: _____network ___x__c... | vbwszcqn nlbqsuyv | GRP_8 | circuit outage : india, kirty telecom_vendor_1... | English |
| 7641 | unable to sign in to collaboration_platform | unable to sign in to collaboration_platform | uvrwikmy yusexirn | GRP_0 | unable to sign in to collaboration_platform un... | English |
| 7642 | abended job in job_scheduler: hr_tooldcvcgenratn | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: hr_tooldcvcgenra... | English |
| 7643 | analysis for office issue | \r\n\r\nreceived from: nlearzwi.ukdzstwi@gmail... | nlearzwi ukdzstwi | GRP_9 | analysis for office issue \r\n\r\nreceived fro... | English |
| 7644 | phone display | from: judi elituytt \r\nsent: saturday, august... | nmzfdlar whzbrusx | GRP_37 | phone display from: judi elituytt \r\nsent: sa... | English |
| 7645 | termination for cyxieuwk rekwlqmu, 00064847 | hello , \r\n\r\na termination for cyxieuwk rek... | fduinmtw yofhirjs | GRP_2 | termination for cyxieuwk rekwlqmu, 00064847 he... | English |
| 7646 | HostName_1289: account is locked | HostName_1289: account is locked.. please unlo... | vbwszcqn nlbqsuyv | GRP_2 | HostName_1289: account is locked HostName_1289... | English |
| 7647 | security incidents - ( #in33578632) : suspicio... | source ip :\r\nsystem name :\r\nuser name:\r\... | gzhapcld fdigznbk | GRP_2 | security incidents - ( #in33578632) : suspicio... | English |
| 7648 | unlock account email in cell phone the users... | hello team,\n\ncould you please unlock account... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the users... | English |
| 7649 | unable to submit timecard today | unable to submit timecard today | mknoeicg aziptqvu | GRP_0 | unable to submit timecard today unable to subm... | English |
| 7650 | delete blancog (olifgtmpio gargtcia blagtnco) | olifgtmpio gargtcia blagtnco does not working ... | kbnfxpsy gehxzayq | GRP_2 | delete blancog (olifgtmpio gargtcia blagtnco) ... | English |
| 7651 | HostName_1015: average (4 samples) disk free o... | HostName_1015: average (4 samples) disk free o... | vbwszcqn nlbqsuyv | GRP_12 | HostName_1015: average (4 samples) disk free o... | English |
| 7652 | HostName_236: internal error: unable to find a... | HostName_236: internal error: unable to find a... | vbwszcqn nlbqsuyv | GRP_60 | HostName_236: internal error: unable to find a... | English |
| 7653 | HostName_1132: robot is inactive,swap memory u... | HostName_1132: robot HostName_1132 is inactive... | vbwszcqn nlbqsuyv | GRP_12 | HostName_1132: robot is inactive,swap memory u... | English |
| 7654 | unable to connect to wireless | unable to connect to wireless | bcxfhekz bplfrnis | GRP_0 | unable to connect to wireless unable to connec... | English |
| 7655 | account unlock ybplwrez.lqcyehbf@gmail.com | account unlock ybplwrez.lqcyehbf@gmail.com | olckhmvx pcqobjnd | GRP_0 | account unlock ybplwrez.lqcyehbf@gmail.com acc... | English |
| 7656 | abended job in job_scheduler: Job_1918b | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1918b receiv... | English |
| 7657 | ticket update on ticket_no0430054 | ticket update on ticket_no0430054 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0430054 ticket updat... | English |
| 7658 | unable to log into my reporting_engineering_tools | unable to log into my reporting_engineering_tools | vktxjamz whbdetvp | GRP_0 | unable to log into my reporting_engineering_to... | English |
| 7659 | ticket update for danghtnuell | from: rakthyesh ramdntythanjesh \nsent: friday... | eqzibjhw ymebpoih | GRP_0 | ticket update for danghtnuell from: rakthyesh ... | English |
| 7660 | unable to view desktop items or folders | unable to view desktop items or folders | pvbomqht smfkuhwi | GRP_0 | unable to view desktop items or folders unable... | English |
| 7661 | when customer service enters an order for acct... | this is a company account with sales office = ... | nkthumgf mwgdenbs | GRP_13 | when customer service enters an order for acct... | English |
| 7662 | orders from plant_74 & cpp/tm warehouse will n... | \nneed urgent help! see attached document. e... | jrzpcesm oznigwvj | GRP_18 | orders from plant_74 & cpp/tm warehouse will n... | English |
| 7663 | changed laptop and need my phone activated thr... | please help me log into my phone system using ... | qcehailo wqynckxg | GRP_7 | changed laptop and need my phone activated thr... | English |
| 7664 | enable access to erp code cv04n to view the d... | enable access to erp code cv04n to view the d... | ntuhoafg bzwefjvk | GRP_0 | enable access to erp code cv04n to view the d... | English |
| 7665 | crm issue | \n\nreceived from: kpnzvsuw.lwmqyjbv@gmail.com... | kpnzvsuw lwmqyjbv | GRP_22 | crm issue \n\nreceived from: kpnzvsuw.lwmqyjbv... | English |
| 7666 | access request to engineering_tools | access request to engineering_tools | uwiqchfp hnsukjma | GRP_25 | access request to engineering_tools access req... | English |
| 7667 | requesting access to s:mgmt drive | \r\n\r\nreceived from: odfimpjg.ptfoiake@gmail... | odfimpjg ptfoiake | GRP_12 | requesting access to s:mgmt drive \r\n\r\nrece... | English |
| 7668 | unable to access emails from company ipad | unable to access emails from company ipad | vciknubg wdlkabms | GRP_0 | unable to access emails from company ipad unab... | English |
| 7669 | user unable to log in to outlook | user unable to log in to outlook | nmpworvu upgtrvnj | GRP_0 | user unable to log in to outlook user unable t... | English |
| 7670 | unable to login to collaboration_platform | unable to login to collaboration_platform | jcxwgslk szvgufir | GRP_0 | unable to login to collaboration_platform unab... | English |
| 7671 | skype audio issues | \n\nreceived from: qwijaspo.ukynmfig@gmail.com... | qwijaspo ukynmfig | GRP_0 | skype audio issues \n\nreceived from: qwijaspo... | English |
| 7672 | HostName_770:average (4 samples) disk free on ... | HostName_770:average (4 samples) disk free on ... | oldrctiu bxurpsyi | GRP_12 | HostName_770:average (4 samples) disk free on ... | English |
| 7673 | engineering tool doesn't work | engineering tool doesn't work | ravgfnqp gizaudke | GRP_62 | engineering tool doesn't work engineering tool... | English |
| 7674 | network outage:russia - warehouse:site is down... | what type of outage: ___x__network _____c... | oldrctiu bxurpsyi | GRP_8 | network outage:russia - warehouse:site is down... | English |
| 7675 | the pc projector in einstein conf room is not ... | the pc projector in einstein conf room is not ... | zlpdkqsw jxabdocs | GRP_3 | the pc projector in einstein conf room is not ... | English |
| 7676 | unable to create delivery for material mm 7150... | please assign to erp supply_chain team. apo ... | bnoupaki cpeioxdz | GRP_6 | unable to create delivery for material mm 7150... | English |
| 7677 | company mails on mobile phone | \r\n\r\nreceived from: ctuodmai.vguwqjtd@gmail... | ctuodmai vguwqjtd | GRP_0 | company mails on mobile phone \r\n\r\nreceived... | English |
| 7678 | impact awards//password reset | impact awards//password reset | rbozivdq gmlhrtvp | GRP_0 | impact awards//password reset impact awards//p... | English |
| 7679 | network outage:usa refinery - (company):site i... | what type of outage: _x____network _____c... | oldrctiu bxurpsyi | GRP_8 | network outage:usa refinery - (company):site i... | English |
| 7680 | replace internal speakers on e7350 due to crac... | replace internal speakers on e7350 due to crac... | fnqelwpk ahrskvln | GRP_3 | replace internal speakers on e7350 due to crac... | English |
| 7681 | material posting on production order does not ... | in switzerland, cc 5443: we post material cons... | brjkmwvo odxwcpie | GRP_45 | material posting on production order does not ... | English |
| 7682 | discounts | \r\n\r\nreceived from: peojqgvm.qayeptuo@gmail... | peojqgvm qayeptuo | GRP_0 | discounts \r\n\r\nreceived from: peojqgvm.qaye... | English |
| 7683 | dell 2in1 7350 device has not been booting des... | dell 2in1 7350 device has not been booting des... | urgqkinl zpcokgbj | GRP_3 | dell 2in1 7350 device has not been booting des... | English |
| 7684 | unable to view credit card statement on ess | unable to view credit card statement on ess | msbwrchi kdbxtmoq | GRP_0 | unable to view credit card statement on ess un... | English |
| 7685 | erp newweaver business client locked out. | erp newweaver business client locked out. | mqjdyizg amhywoqg | GRP_0 | erp newweaver business client locked out. erp ... | English |
| 7686 | erp SID_34 password reset. | erp SID_34 password reset. | feiozqbd uwljchaf | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 7687 | erp SID_34 account unlock and password reset | erp SID_34 account unlock and password reset | jcxwgslk szvgufir | GRP_0 | erp SID_34 account unlock and password reset e... | English |
| 7688 | the computer for mii at us_plant facility has ... | the computer for mii has got thrown out of com... | dpuifqeo eglwsfkn | GRP_3 | the computer for mii at us_plant facility has ... | English |
| 7689 | network response time | at about 8:20 am eastern daylight time, i was ... | kxsceyzo naokumlb | GRP_4 | network response time at about 8:20 am eastern... | English |
| 7690 | erp SID_34 locked out. | erp SID_34 locked out. | qipzctgs wjhtbpfr | GRP_0 | erp SID_34 locked out. erp SID_34 locked out. | English |
| 7691 | ticket update for an account lockout | ticket update for an account lockout | fumkcsji sarmtlhy | GRP_0 | ticket update for an account lockout ticket up... | English |
| 7692 | unable to load outlook | unable to load outlook | hejsrtpz pxqwbulg | GRP_0 | unable to load outlook unable to load outlook | English |
| 7693 | urgent !! need access to all the accounts in i... | need access to all the accounts in iowa, minne... | qcxivzag vyucbagx | GRP_22 | urgent !! need access to all the accounts in i... | English |
| 7694 | account locked | account locked | nwqktzlx vnlqkgpb | GRP_0 | account locked account locked | English |
| 7695 | issue executncqulao qauighdpss programdntys in... | \r\n\r\nreceived from: rcbdyslq.zuspjbtw@gmail... | rcbdyslq zuspjbtw | GRP_0 | issue executncqulao qauighdpss programdntys in... | English |
| 7696 | discounts error | \r\n\r\nreceived from: itslpwra.vybdkuoa@gmail... | itslpwra vybdkuoa | GRP_0 | discounts error \r\n\r\nreceived from: itslpwr... | English |
| 7697 | reset the password for yimwfntl rkdwohas on er... | while trying to log the erp part of erp fro th... | yimwfntl rkdwohas | GRP_0 | reset the password for yimwfntl rkdwohas on er... | English |
| 7698 | update cutview to lauacyltoe hxgaycze version | update cutview to lauacyltoe hxgaycze version ... | ihlguasz agnwcqiz | GRP_66 | update cutview to lauacyltoe hxgaycze version ... | English |
| 7699 | wi-fi at msg sales not working | \r\n\r\nreceived from: tbloeczi.gxlmeyph@gmail... | tbloeczi gxlmeyph | GRP_19 | wi-fi at msg sales not working \r\n\r\nreceive... | English |
| 7700 | when i launch collaboration_platform, my inter... | when i launch collaboration_platform, my inter... | zifujpvr vxfkwaqh | GRP_3 | when i launch collaboration_platform, my inter... | English |
| 7701 | update installation for cutview | update cutview to lauacyltoe hxgaycze version ... | xcfjusyp glbzpedq | GRP_66 | update installation for cutview update cutview... | English |
| 7702 | unlock account email in cell phone the user ... | hello team,\r\n\r\ncould you please unlock acc... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the user ... | English |
| 7703 | csscdrill model on configair server not workin... | csscdrill model on configair server not workin... | iavozegx jpcudyfi | GRP_14 | csscdrill model on configair server not workin... | English |
| 7704 | lhqsm519:average (4 samples) disk free on h:\ ... | average (4 samples) disk free on h:\ is now 12... | oldrctiu bxurpsyi | GRP_12 | lhqsm519:average (4 samples) disk free on h:\ ... | English |
| 7705 | news can not be opened | \r\n\r\nreceived from: uwofavej.hxyatnjc@gmail... | uwofavej hxyatnjc | GRP_0 | news can not be opened \r\n\r\nreceived from: ... | English |
| 7706 | replace button is missing on dialog box in sho... | replace button is missing on dialog box in sho... | vbmzgsdk jdmyazti | GRP_21 | replace button is missing on dialog box in sho... | English |
| 7707 | outlook is not functioning. | outlook is not functioning. | quxwtbcr imdwuhbz | GRP_0 | outlook is not functioning. outlook is not fun... | English |
| 7708 | enhancement of storage capacity | \r\n\r\nreceived from: ihmbfeoy.exbgcfsk@gmail... | ihmbfeoy exbgcfsk | GRP_12 | enhancement of storage capacity \r\n\r\nreceiv... | English |
| 7709 | mouse issue | mouse is not working | wrxikemh uqblenpc | GRP_19 | mouse issue mouse is not working | English |
| 7710 | 12th aug ,friday on-call - basis | \n\nreceived from: mnxbeuso.rfmdlwuo@gmail.com... | mnxbeuso rfmdlwuo | GRP_0 | 12th aug ,friday on-call - basis \n\nreceived ... | English |
| 7711 | mandatory condition mwst is missing for order ... | could you please check what is wrong with cust... | qnstifeb hybrjfex | GRP_13 | mandatory condition mwst is missing for order ... | English |
| 7712 | abended job in job_scheduler: Job_499 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_499 received... | English |
| 7713 | setup new ws\svuxjkpg tpurnjvi | setup new ws\svuxjkpg tpurnjvi | svuxjkpg tpurnjvi | GRP_24 | setup new ws\svuxjkpg tpurnjvi setup new ws\sv... | un |
| 7714 | setup new ws \xovczlad fkicawph | setup new ws \xovczlad fkicawph | xovczlad fkicawph | GRP_24 | setup new ws \xovczlad fkicawph setup new ws \... | un |
| 7715 | ak - crm in outlook not working | \n\nreceived from: wdpzfqgi.zndgqcux@gmail.com... | wdpzfqgi zndgqcux | GRP_0 | ak - crm in outlook not working \n\nreceived f... | English |
| 7716 | setup new ws \bzekndcu ivhnpdbu | setup new ws \bzekndcu ivhnpdbu | bzekndcu ivhnpdbu | GRP_24 | setup new ws \bzekndcu ivhnpdbu setup new ws \... | un |
| 7717 | setup laptop für sandstrahlgerät und robowor... | setuplaptop für sandstrahlgerät und robowork... | qidgvtwa qvbutayx | GRP_24 | setup laptop für sandstrahlgerät und robowor... | German |
| 7718 | mobiltelefon lautsprecher / mikrofon defekt / ... | durchwahl -477\r\nmobilteil gigaset sl2\r\nlau... | tblmnxez ulcmryaf | GRP_33 | mobiltelefon lautsprecher / mikrofon defekt / ... | German |
| 7719 | can you please help | \r\n\r\nreceived from: smktofel.etsoirbw@gmail... | smktofel etsoirbw | GRP_55 | can you please help \r\n\r\nreceived from: smk... | English |
| 7720 | unable to upload engineering_tool | \r\n\r\nreceived from: ftsqkvre.bqzrupic@gmail... | ftsqkvre bqzrupic | GRP_25 | unable to upload engineering_tool \r\n\r\nrece... | English |
| 7721 | password does not work it says 'account is dis... | password does not work it says 'account is dis... | quxwtbcr imdwuhbz | GRP_2 | password does not work it says 'account is dis... | English |
| 7722 | abended job in job_scheduler: Job_2049 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_2049 receive... | English |
| 7723 | vendor payment through bank | \n\nreceived from: gnasmtvx.cwxtsvkm@gmail.com... | gnasmtvx cwxtsvkm | GRP_10 | vendor payment through bank \n\nreceived from... | English |
| 7724 | abended job in job_scheduler: Job_1960 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1960 receive... | English |
| 7725 | problem in calling through skype | \n\nreceived from: ftgvlneh.aitsgqwo@gmail.com... | ftgvlneh aitsgqwo | GRP_0 | problem in calling through skype \n\nreceived ... | English |
| 7726 | erp routing logic missing for the infrastrctur... | pls add the below data in the zsd100 and deter... | vbmzgsdk jdmyazti | GRP_21 | erp routing logic missing for the infrastrctur... | English |
| 7727 | incorrect tax code in mm | hello,\r\n\r\nwe understand from order bookin... | ikerxqwz prkyuitl | GRP_20 | incorrect tax code in mm hello,\r\n\r\nwe und... | English |
| 7728 | need help in reset password in password_manage... | need help in reset password in password_manage... | asthifne baehplqt | GRP_0 | need help in reset password in password_manage... | English |
| 7729 | abended job in job_scheduler: bkbackup_tool_re... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bkbackup_tool_re... | English |
| 7730 | abended job in job_scheduler: bkbackup_tool_Ho... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bkbackup_tool_Ho... | English |
| 7731 | account lokced in erp SID_34 | account lokced in erp SID_34 | vtbqgwnk tamfbgjy | GRP_0 | account lokced in erp SID_34 account lokced in... | English |
| 7732 | recall: ticket_no1536413 -- comments added | \r\n\r\nreceived from: franhtyu.liu@company.co... | vblmcyax vlaorjum | GRP_0 | recall: ticket_no1536413 -- comments added \r\... | English |
| 7733 | abended job in job_scheduler: SID_38hotf | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_38hotf recei... | English |
| 7734 | issue with bex,business_client | \r\n\r\nreceived from: ypuaejsc.yoxrqtsn@gmail... | ypuaejsc yoxrqtsn | GRP_0 | issue with bex,business_client \r\n\r\nreceive... | English |
| 7735 | account locked in ad | account locked in ad | vwdghyai pjehycoz | GRP_0 | account locked in ad account locked in ad | English |
| 7736 | required 20 gb additional memory in e drive fo... | required 20 gb additional memory in e drive fo... | cubdsrml znewqgop | GRP_12 | required 20 gb additional memory in e drive fo... | English |
| 7737 | not able to login to skype | not able to login to skype | rjlnszei kneatvfu | GRP_0 | not able to login to skype not able to login t... | English |
| 7738 | m drive access | \n\nreceived from: uisewznr.ewtmkphs@gmail.com... | uisewznr ewtmkphs | GRP_12 | m drive access \n\nreceived from: uisewznr.ewt... | English |
| 7739 | circuit outage : usa secondary circuit is down... | what type of outage: _____network __x___c... | vbwszcqn nlbqsuyv | GRP_8 | circuit outage : usa secondary circuit is down... | English |
| 7740 | abended job in job_scheduler: Job_1623 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1623 receive... | English |
| 7741 | abended job in job_scheduler: Job_1488 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1488 receive... | English |
| 7742 | abended job in job_scheduler: Job_1491 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1491 receive... | English |
| 7743 | abended job in job_scheduler: Job_1493 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1493 receive... | English |
| 7744 | abended job in job_scheduler: Job_2114 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_2114 receive... | English |
| 7745 | unable to access emails | unable to access emails | rbozivdq gmlhrtvp | GRP_0 | unable to access emails unable to access emails | English |
| 7746 | abended job in job_scheduler: hr_tooldcvcgenratn | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: hr_tooldcvcgenra... | English |
| 7747 | abended job in job_scheduler: Job_2318 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_2318 receive... | English |
| 7748 | unable to create delivery | please provide the following:\r\n\r\nwhat orde... | hybiaxlk lawptzir | GRP_6 | unable to create delivery please provide the f... | English |
| 7749 | erp is down - distributor_tool / company cente... | erp is down - distributor_tool / company cente... | vbmzgsdk jdmyazti | GRP_0 | erp is down - distributor_tool / company cente... | English |
| 7750 | md04, display stock, is locking up with create... | the window is locked up, can't do screenshots,... | wkeiqpud dzgemhbk | GRP_0 | md04, display stock, is locking up with create... | English |
| 7751 | erp down | user id - vaugtyghtl\nissue - erp down\nlocati... | damuphws arkulcoi | GRP_0 | erp down user id - vaugtyghtl\nissue - erp dow... | English |
| 7752 | mobile device activation | mobile device activation\n\n\nname:mikhghytr k... | vfrdxtqw jfbmsenz | GRP_0 | mobile device activation mobile device activat... | English |
| 7753 | erp produktion hängt bei ot03 aufträgen | ot01 aufträge funktionieren, ot03 aufträge l... | jftsvazy ypqmliwa | GRP_0 | erp produktion hängt bei ot03 aufträgen ot01... | German |
| 7754 | abended job in job_scheduler: Job_1953d | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1953d receiv... | English |
| 7755 | outage on erp SID_34 | outage on erp SID_34 | fumkcsji sarmtlhy | GRP_0 | outage on erp SID_34 outage on erp SID_34 | English |
| 7756 | german call | german call | rbozivdq gmlhrtvp | GRP_0 | german call german call | English |
| 7757 | totalteamsales sproc is not assigning direct t... | totalteamsales sproc is not assigning direct t... | aofextgk tugywidl | GRP_25 | totalteamsales sproc is not assigning direct t... | English |
| 7758 | skype shows i am online but i am not | i have noticed that i received by email some m... | kbnfxpsy gehxzayq | GRP_26 | skype shows i am online but i am not i have no... | English |
| 7759 | need ticket zmm_stock_transfer | \n\nreceived from: dqplrwoy.cutpwjie@gmail.com... | dqplrwoy cutpwjie | GRP_29 | need ticket zmm_stock_transfer \n\nreceived f... | English |
| 7760 | install a printer in maintenance area | install a printer in maintenance area | ifsrenpq lkembgtd | GRP_3 | install a printer in maintenance area install ... | English |
| 7761 | network problems (multiple applications are ru... | how did you determine there are network proble... | gbxctqfl akrwmuib | GRP_0 | network problems (multiple applications are ru... | English |
| 7762 | application response time (other network resou... | please provide details in the template below (... | itylnjqw kqiurhbt | GRP_13 | application response time (other network resou... | English |
| 7763 | check my security for the ethics collaboration... | \n\nreceived from: azxhejvq.fyemlavd@gmail.com... | azxhejvq fyemlavd | GRP_27 | check my security for the ethics collaboration... | English |
| 7764 | problem | \n\nreceived from: vkzwafuh.tcjnuswg@gmail.com... | vkzwafuh tcjnuswg | GRP_0 | problem \n\nreceived from: vkzwafuh.tcjnuswg@g... | English |
| 7765 | abended job in job_scheduler: Job_1967d | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1967d receiv... | English |
| 7766 | site contact reported circuit outage in south ... | santiago-south amerirtca has reported that tod... | kbnfxpsy gehxzayq | GRP_4 | site contact reported circuit outage in south ... | English |
| 7767 | circuit outage:apac/fengapac - (company) vpn c... | what type of outage: _____network __x___c... | rkupnshb gsmzfojw | GRP_8 | circuit outage:apac/fengapac - (company) vpn c... | English |
| 7768 | unable to login to SID_1 using erp gui | hi,\r\ni am unable to login to SID_1 today and... | fyuqhlcx fjiuhxae | GRP_0 | unable to login to SID_1 using erp gui hi,\r\n... | English |
| 7769 | password reset | password reset | jcxwgslk szvgufir | GRP_0 | password reset password reset | English |
| 7770 | power outage: india, india site is hard down a... | what type of outage: ___x__network _____c... | rkupnshb gsmzfojw | GRP_8 | power outage: india, india site is hard down a... | English |
| 7771 | programdnty in erp not loading | programdnty in erp not loading | lrbjqcmh jbiwtzqr | GRP_0 | programdnty in erp not loading programdnty in ... | English |
| 7772 | blank call // loud noise | blank call // loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call // loud noise blank call // loud noise | English |
| 7773 | license query | hello ,\r\nplease arrange that mrs de gracia f... | xwirzvda okhyipgr | GRP_0 | license query hello ,\r\nplease arrange that ... | English |
| 7774 | lhqsm674 (kas hfyujqti jdcbiezx2): average (4 ... | lhqsm674 (kas hfyujqti jdcbiezx2): average (4 ... | dkmcfreg anwmfvlg | GRP_12 | lhqsm674 (kas hfyujqti jdcbiezx2): average (4 ... | English |
| 7775 | npc 311190861. please refer screenshot. | npc 311190861. mrp type incorrect error. | wgyzrovu boerxlmw | GRP_11 | npc 311190861. please refer screenshot. npc 31... | English |
| 7776 | application response time (other network resou... | please provide details in the template below (... | jpufgorh xltfrpcy | GRP_13 | application response time (other network resou... | English |
| 7777 | major problem with inventory | the needs to be sev2. because it heavily limi... | lijrvdgh wfhmdsoa | GRP_45 | major problem with inventory the needs to be s... | English |
| 7778 | unable to log in to windows | unable to log in to windows | bfmlysrk olbthfqr | GRP_0 | unable to log in to windows unable to log in t... | English |
| 7779 | usa, ar - pbx (rqxaudix.company.com) is down ... | usa, ar - pbx (rqxaudix.company.com) is down ... | dkmcfreg anwmfvlg | GRP_8 | usa, ar - pbx (rqxaudix.company.com) is down ... | English |
| 7780 | access to security group : k-gshn | \nsummary:please add me to the k-gshn e-mail g... | kmubdazp qmxwszko | GRP_2 | access to security group : k-gshn \nsummary:pl... | English |
| 7781 | plug in not responding error in erp | plug in not responding error in erp | wbqtfzdv aectbluw | GRP_0 | plug in not responding error in erp plug in no... | English |
| 7782 | error message in pthsqroz moedyanvess | \nerp pthsqroz moedyanvess\nerror message: "ob... | hseazwyd tmisvleo | GRP_11 | error message in pthsqroz moedyanvess \nerp pt... | English |
| 7783 | outlook goes to not responding | outlook goes to not responding | tqpbazxm jhbkycgd | GRP_0 | outlook goes to not responding outlook goes to... | English |
| 7784 | user wanted to reset internet explorer | user wanted to reset internet explorer | gwkjrobm wrsznjmx | GRP_0 | user wanted to reset internet explorer user w... | English |
| 7785 | account locked out | account locked out | qctdugsi bfqlgvos | GRP_0 | account locked out account locked out | English |
| 7786 | erp SID_34 erp production account locked | erp SID_34 erp production account locked | dskcobqa tujrvsbc | GRP_0 | erp SID_34 erp production account locked erp ... | English |
| 7787 | transfer information from old to new laptop | transfer information from old to new laptop | pahdlbnw nycrtsom | GRP_3 | transfer information from old to new laptop tr... | English |
| 7788 | can't print in color | color printer not working | chkmejsn lvidgknc | GRP_3 | can't print in color color printer not working | English |
| 7789 | HostName_562 | i'm unable to reach the destination server ...... | ctvaejbo mjcerqwo | GRP_12 | HostName_562 i'm unable to reach the destinati... | English |
| 7790 | zpress does not save data for material 5666264 | zpress does not save data for material 6777375... | bqjvxsaf aupdonjy | GRP_20 | zpress does not save data for material 5666264... | English |
| 7791 | can not join skype meeting | can not join skype meeting | paqrentz gcnyaxsb | GRP_0 | can not join skype meeting can not join skype ... | English |
| 7792 | pc aufstellen | bitte an smpijawb eawkpgqf weiterleiten:\r\nna... | mvwiygou rpkscnlv | GRP_42 | pc aufstellen bitte an smpijawb eawkpgqf weite... | German |
| 7793 | arbeitsplatz umziehen | bitte an smpijawb eawkpgqf weiterleiten:\r\nal... | mvwiygou rpkscnlv | GRP_42 | arbeitsplatz umziehen bitte an smpijawb eawkpg... | German |
| 7794 | unable to launch outlook and skype | unable to launch outlook and skype | xeocpjsu hqwxumfb | GRP_0 | unable to launch outlook and skype unable to l... | English |
| 7795 | access to q drive for pollaurid w | \r\nreceived from: inhekdol.anvqzdif@gmail.com... | inhekdol anvqzdif | GRP_12 | access to q drive for pollaurid w \r\nreceived... | English |
| 7796 | flash player incompatibility | flash player incompatibility | zdcheloy aevzsogn | GRP_0 | flash player incompatibility flash player inco... | English |
| 7797 | no audio device installed | no audio device installed | vbihmtzo mphkitvr | GRP_62 | no audio device installed no audio device ins... | English |
| 7798 | wifi not working | wifi not working | elphfvdt ileozacs | GRP_0 | wifi not working wifi not working | English |
| 7799 | need help in connecting a skype meeting that i... | need help in connecting a skype meeting that i... | dtisfuyp fpvrjlkz | GRP_0 | need help in connecting a skype meeting that i... | English |
| 7800 | unable to open pdf files. | unable to open pdf files in user system | lediwjvb tqijrdgw | GRP_19 | unable to open pdf files. unable to open pdf f... | English |
| 7801 | not able to use command field | \r\n\r\nreceived from: ulroqsyf.wctpnarb@gmail... | ulroqsyf wctpnarb | GRP_0 | not able to use command field \r\n\r\nreceived... | English |
| 7802 | microsoft .net framdntyework 4.5 missing | \r\n\r\nreceived from: kuznvase.jrxtbuqz@gmail... | kuznvase jrxtbuqz | GRP_0 | microsoft .net framdntyework 4.5 missing \r\n\... | English |
| 7803 | netweaver will not start | i receive an error message when trying to star... | rmxqfivn pfgcirlh | GRP_0 | netweaver will not start i receive an error me... | English |
| 7804 | please, send me a link for password_management... | please, send me a link for password_management... | cedxqshz sepbvatm | GRP_0 | please, send me a link for password_management... | English |
| 7805 | skype funktionert nicht. | from: zlnxswvp ptmzsbhk \r\nsent: thursday, au... | zlnxswvp ptmzsbhk | GRP_0 | skype funktionert nicht. from: zlnxswvp ptmzsb... | English |
| 7806 | headset | connecting the plantronic headset beshryuwire ... | atlwdyej vtlhzbix | GRP_0 | headset connecting the plantronic headset besh... | English |
| 7807 | datenübertragung | \r\n\r\nreceived from: weszfyok.fbadnjhu@gmail... | weszfyok fbadnjhu | GRP_25 | datenübertragung \r\n\r\nreceived from: weszf... | German |
| 7808 | bobj webi jobs are not running | bobj webi jobs are not running. please investi... | froajhdb ijetmkuc | GRP_14 | bobj webi jobs are not running bobj webi jobs ... | English |
| 7809 | international payments rejected for payment me... | \r\nvon: pradyhtueep yyufs \r\ngesendet: 10 au... | ubiqcrvy mxjcnqfs | GRP_10 | international payments rejected for payment me... | English |
| 7810 | laptop doesnt stay on , power light stays on f... | \r\nlaptop doesnt stay on , power light stays ... | bmhxwvys tdmgolwn | GRP_19 | laptop doesnt stay on , power light stays on f... | English |
| 7811 | erp password reset in SID_34 | erp password reset in SID_34 | vtbqgwnk tamfbgjy | GRP_0 | erp password reset in SID_34 erp password rese... | English |
| 7812 | erp log on problem | \r\n\r\nreceived from: pgeknaxy.usokqprd@gmail... | pgeknaxy usokqprd | GRP_0 | erp log on problem \r\n\r\nreceived from: pgek... | English |
| 7813 | password reset alert from o365 for user lafgtu... | password reset alert from o365 | zliatqeo nrukzxit | GRP_0 | password reset alert from o365 for user lafgtu... | English |
| 7814 | when connecting to hr_tool, etime window will ... | , hr_tool portal access through single sign-on... | nrmjhuox ktuyqewp | GRP_0 | when connecting to hr_tool, etime window will ... | English |
| 7815 | business card request | \n\nreceived from: zqbmxdgy.stuwbacm@gmail.com... | zqbmxdgy stuwbacm | GRP_0 | business card request \n\nreceived from: zqbmx... | English |
| 7816 | to remove plant_101 plant assignment to sale o... | this was supposed to be removed immediately af... | ospmbweg peswfcbj | GRP_13 | to remove plant_101 plant assignment to sale o... | English |
| 7817 | business card request | \n\nreceived from: zqbmxdgy.stuwbacm@gmail.com... | zqbmxdgy stuwbacm | GRP_0 | business card request \n\nreceived from: zqbmx... | English |
| 7818 | wegen ein sicherheitsupdate kb4272050 sind kei... | wegen ein sicherheitsupdate kb4272050 sind kei... | szfaidhy sivyugjd | GRP_33 | wegen ein sicherheitsupdate kb4272050 sind kei... | German |
| 7819 | change o365 license fron s1 to k1 | could you please changes the o365 license of ... | ufawcgob aowhxjky | GRP_34 | change o365 license fron s1 to k1 could you pl... | English |
| 7820 | HostName_1003:( kisp - iis - app server produc... | HostName_1003:( kisp - iis - app server produc... | jyoqwxhz clhxsoqy | GRP_12 | HostName_1003:( kisp - iis - app server produc... | English |
| 7821 | orders can not be printed. | es kann keine auftrag gedruckt werden. ziehe f... | bfjnyqhe wqhuvlfb | GRP_0 | orders can not be printed. es kann keine auftr... | German |
| 7822 | change erp logon language from german to english | change erp logon language from german to english | vuefwrmk snaelbgp | GRP_0 | change erp logon language from german to engli... | English |
| 7823 | erp SID_34 password reset for user mertut | erp SID_34 password reset for user mertut | ughzilfm cfibdamq | GRP_0 | erp SID_34 password reset for user mertut erp ... | English |
| 7824 | account locked. | account locked\r\n | tfnzwycd bicohjga | GRP_0 | account locked. account locked\r\n | English |
| 7825 | please reset erp SID_34 password for user peil... | \r\n\r\nreceived from: krdvgzeh.yboasemp@gmail... | krdvgzeh yboasemp | GRP_0 | please reset erp SID_34 password for user peil... | English |
| 7826 | printing | \r\n\r\nreceived from: yfmaqovp.wdonhbez@gmail... | yfmaqovp wdonhbez | GRP_0 | printing \r\n\r\nreceived from: yfmaqovp.wdonh... | English |
| 7827 | cannot release order / does not print | plant_108 -> SID_34 | mvwiygou rpkscnlv | GRP_45 | cannot release order / does not print plant_1... | English |
| 7828 | account locked. | account locked. | ydigzqbu xdgjizek | GRP_72 | account locked. account locked. | English |
| 7829 | erp/SID_34 - production orders cannot be print... | error:\r\nverbindung zu system production_orde... | slbfmqpa qdroplyz | GRP_45 | erp/SID_34 - production orders cannot be print... | German |
| 7830 | restore some folders for stoebtrt | \r\n\r\nreceived from: sxhcapoe.kbluefip@gmail... | sxhcapoe kbluefip | GRP_0 | restore some folders for stoebtrt \r\n\r\nrece... | English |
| 7831 | abended job in job_scheduler: SID_37hotf | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_37hotf recei... | English |
| 7832 | wir haben hier in koenigsee probleme mit dem d... | wir haben hier in koenigsee probleme mit dem d... | ludhvmro okdbwcsu | GRP_14 | wir haben hier in koenigsee probleme mit dem d... | German |
| 7833 | error drucker | \r\n\r\nreceived from: gsnuhpji.qpyfctwl@gmail... | gsnuhpji qpyfctwl | GRP_33 | error drucker \r\n\r\nreceived from: gsnuhpji.... | German |
| 7834 | setup new ws \chkzbeav ykeilmog | setup new ws \chkzbeav ykeilmog | chkzbeav ykeilmog | GRP_24 | setup new ws \chkzbeav ykeilmog setup new ws \... | un |
| 7835 | no connection to the production_order_interfac... | hello,\r\n\r\nwe have no connection to the pls... | qyndvmlw imcvznow | GRP_45 | no connection to the production_order_interfac... | English |
| 7836 | probleme mit erpgui \tmqfjard qzhgdoua | probleme mit erpgui \tmqfjard qzhgdoua | tmqfjard qzhgdoua | GRP_24 | probleme mit erpgui \tmqfjard qzhgdoua problem... | Danish |
| 7837 | setup new ws \ylhptzmd owslfzqi | setup new ws \ylhptzmd owslfzqi | ylhptzmd owslfzqi | GRP_24 | setup new ws \ylhptzmd owslfzqi setup new ws \... | un |
| 7838 | setup new ws \wphqnxly htvrbxmd | setup new ws \wphqnxly htvrbxmd | wphqnxly htvrbxmd | GRP_24 | setup new ws \wphqnxly htvrbxmd setup new ws \... | un |
| 7839 | barcode scanner defekt \pifyudbo tagsfbny | barcode scanner defekt \pifyudbo tagsfbny | pifyudbo tagsfbny | GRP_24 | barcode scanner defekt \pifyudbo tagsfbny barc... | English |
| 7840 | business_client issue | 1.) search material code are unavailable that ... | ewylacup jlibymtw | GRP_14 | business_client issue 1.) search material code... | English |
| 7841 | elengineering toolonic ethics for employee caj... | \r\n\r\nreceived from: aofnvyzt.eqiyskhm@gmail... | aofnvyzt eqiyskhm | GRP_23 | elengineering toolonic ethics for employee caj... | English |
| 7842 | outlook issues,yesterday my outlook took about... | outlook issues,yesterday my outlook took about... | pcqjvair kxaoumqy | GRP_0 | outlook issues,yesterday my outlook took about... | English |
| 7843 | dell 4 in 1 | dell 4 in 1 adapter not working | ntuhoafg bzwefjvk | GRP_19 | dell 4 in 1 dell 4 in 1 adapter not working | English |
| 7844 | pc is not booting up | pc is not booting up. user has already spoken ... | azyfsrqh wkavqigu | GRP_28 | pc is not booting up pc is not booting up. use... | English |
| 7845 | read and write access to oe drive fürth | \r\n\r\nreceived from: scjxobhd.ldypjkmf@gmail... | scjxobhd ldypjkmf | GRP_0 | read and write access to oe drive fürth \r\n\... | English |
| 7846 | business_client issue | specification searching in SID_34 is not retur... | ctvaejbo mjcerqwo | GRP_14 | business_client issue specification searching ... | English |
| 7847 | issue on pricing in distributor_tool | we have agreed price with many of the distribu... | hbmwlprq ilfvyodx | GRP_21 | issue on pricing in distributor_tool we have a... | English |
| 7848 | network outage : melbourne (rowville) site is... | what type of outage: ___x__network _____c... | uxgrdjfc kqxdjeov | GRP_8 | network outage : melbourne (rowville) site is... | English |
| 7849 | desktop notworking | desktop connected to the phone system in serve... | jvhqyamt wodzrcjg | GRP_19 | desktop notworking desktop connected to the ph... | English |
| 7850 | abended job in job_scheduler: Job_1148 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1148 receive... | English |
| 7851 | power adaptor in docking station is faulty | if i connect my laptop to docking station and ... | wjbtlxry gdbqzjyw | GRP_19 | power adaptor in docking station is faulty if ... | English |
| 7852 | circuit outage: mpls ciruit is down at matlxjg... | what type of outage: _____network __x___c... | uvrbhlnt bjrmalzi | GRP_8 | circuit outage: mpls ciruit is down at matlxjg... | English |
| 7853 | i can't login skype after change password | i can't login skype after change password , bu... | mcysxfjw pcrdoewx | GRP_0 | i can't login skype after change password i c... | English |
| 7854 | 89.61.05.183 - thermal warning | 89.61.05.183 - the temperature of the switch h... | wczegmok bgqoclvs | GRP_4 | 89.61.05.183 - thermal warning 89.61.05.183 -... | English |
| 7855 | request to reset microsoft online services pas... | request to reset microsoft online services pas... | mvkpjdfi guexyfpk | GRP_0 | request to reset microsoft online services pas... | English |
| 7856 | outlook search issues | \r\n\r\nreceived from: duoyrpvi.wgjpviul@gmail... | nehxmtpg xepltzqf | GRP_0 | outlook search issues \r\n\r\nreceived from: d... | English |
| 7857 | help to install symantec in a computer lpaw740... | hi team, i need your help to reinstall antivir... | qasdhyzm yuglsrwx | GRP_50 | help to install symantec in a computer lpaw740... | English |
| 7858 | dell 7350: pc boot up failure.urgent | dell 7350: pc boot up failure.\n-had to try r... | qwreamdz pmarxvtk | GRP_3 | dell 7350: pc boot up failure.urgent dell 73... | English |
| 7859 | abended job in job_scheduler: Job_461 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: Job_461 received... | English |
| 7860 | new employee mikhghytr karaffa - needs new des... | new employee mikhghytr karaffa - needs new des... | vfrdxtqw jfbmsenz | GRP_3 | new employee mikhghytr karaffa - needs new des... | English |
| 7861 | global erp crm: it appears that erp crm is tr... | global erp crm: it appears that erp crm is tr... | aoyrspjv hctgfeal | GRP_15 | global erp crm: it appears that erp crm is tr... | English |
| 7862 | mobile device activation | mobile device activation | aqritplu beuflorc | GRP_0 | mobile device activation mobile device activation | English |
| 7863 | unable to install engineering_tool | unable to install engineering_tool | anpocezt qturbxsg | GRP_0 | unable to install engineering_tool unable to i... | English |
| 7864 | password reset for bsopzxhi irfhcgzq | password reset for bsopzxhi irfhcgzq | wvngzrca sfmrzdth | GRP_0 | password reset for bsopzxhi irfhcgzq password ... | English |
| 7865 | password | \r\n\r\nreceived from: xzjlkfvc.agfmpyhr@gmail... | xzjlkfvc agfmpyhr | GRP_0 | password \r\n\r\nreceived from: xzjlkfvc.agfmp... | English |
| 7866 | create sso for qiyujevw ogadikxv | create purchasingupstreamsso ad group for qiyu... | xszoedmc gmhkdsnw | GRP_2 | create sso for qiyujevw ogadikxv create purcha... | English |
| 7867 | unlock account email in cell phone the user ... | hello team,\n\ncould you please unlock account... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the user ... | English |
| 7868 | abended job in job_scheduler: Job_1953d | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1953d receiv... | English |
| 7869 | dynamics crm advanced find ribbon issue | the ribbon in advanced find is displaced makin... | siqobhlz vwljuize | GRP_40 | dynamics crm advanced find ribbon issue the ri... | English |
| 7870 | when using phone, connection is intermittent. ... | my cell phone is \nother people at jc have com... | aedwrpvo qbpafrsx | GRP_4 | when using phone, connection is intermittent. ... | English |
| 7871 | vpn link | vpn link | wbecophk uwntkiar | GRP_0 | vpn link vpn link | English |
| 7872 | unable to login to skype | unable to login to skype | sbvlxuwm yanbikrx | GRP_0 | unable to login to skype unable to login to skype | English |
| 7873 | error in accessing reporting_engineering_tool | error in accessing reporting_engineering_tool\... | urhpnlaf agmsfqil | GRP_9 | error in accessing reporting_engineering_tool ... | English |
| 7874 | engineering tool - permition to sign in - incl... | i need have access on engineering tool, howeve... | qdgcilzf cpzlmesa | GRP_0 | engineering tool - permition to sign in - incl... | English |
| 7875 | reset passwords for esias bosch using password... | the | paqrentz gcnyaxsb | GRP_17 | reset passwords for esias bosch using password... | English |
| 7876 | error login on to the SID_34 system. | error login on to the SID_34 system.\r\n-verif... | aylrbosw gaeycbwd | GRP_0 | error login on to the SID_34 system. error log... | English |
| 7877 | reporting_tool web link in crm not opening up | reporting_tool web link in crm not opening up | fpbmtxei jtqbcnfs | GRP_0 | reporting_tool web link in crm not opening up ... | English |
| 7878 | sharepiont discount request error | infopath cannot submit the form.\r\nan error o... | dymwulbi dkbvqhna | GRP_0 | sharepiont discount request error infopath can... | English |
| 7879 | erp access | name:nxloukai cpbzkrel\nlanguage:\nbrowser:mic... | rbozivdq gmlhrtvp | GRP_0 | erp access name:nxloukai cpbzkrel\nlanguage:\n... | English |
| 7880 | unable to launch outlook | unable to launch outlook | xeocpjsu hqwxumfb | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 7881 | company center page does not load | company center page does not load | fpbmtxei jtqbcnfs | GRP_0 | company center page does not load company cent... | English |
| 7882 | system login issue. | login issue\r\n-verified user details.(employe... | ybplwrez lqcyehbf | GRP_0 | system login issue. login issue\r\n-verified u... | English |
| 7883 | netweaver not working | netweaver not working\n\nname:iauqlrjk nijdauk... | iauqlrjk nijdaukz | GRP_0 | netweaver not working netweaver not working\n\... | English |
| 7884 | qualys scan for required server completion Hos... | category task owner\r\ndocumentation see attac... | gzhapcld fdigznbk | GRP_2 | qualys scan for required server completion Hos... | English |
| 7885 | shop_floor_app problems | from: vldwtjgr vtzakpol \r\nsent: wednesday, a... | vldwtjgr vtzakpol | GRP_43 | shop_floor_app problems from: vldwtjgr vtzakpo... | English |
| 7886 | engineering_tool error | engineering_tool error | mofjyqrh bcyzmkia | GRP_0 | engineering_tool error engineering_tool error | English |
| 7887 | password reset as its expired | name:ivxybewh ykhsqvnu\nlanguage:\nbrowser:mic... | ivxybewh ykhsqvnu | GRP_0 | password reset as its expired name:ivxybewh yk... | English |
| 7888 | unable to launch outlook | unable to launch outlook | navfgybz fuavxjzk | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 7889 | vitalyst transfer: service unavailable on crm ... | vitalyst transfer: service unavailable on crm ... | wipzvlug urmdkgpa | GRP_0 | vitalyst transfer: service unavailable on crm ... | English |
| 7890 | windows password reset | windows password reset | xeocpjsu hqwxumfb | GRP_0 | windows password reset windows password reset | English |
| 7891 | hardware issue | when user is trying to use a separate computer... | clgfntoe rhtmnzsk | GRP_3 | hardware issue when user is trying to use a se... | English |
| 7892 | call transferred to amfgtyartya for password | call transferred to amfgtyartya for password | fumkcsji sarmtlhy | GRP_0 | call transferred to amfgtyartya for password ... | English |
| 7893 | trying to access collaboration_platform site | \n\ni'm trying to access this collaboration_pl... | etvendormhd xpslzunb | GRP_16 | trying to access collaboration_platform site \... | English |
| 7894 | password reset | password reset | dpvnhlmb anzhbtfy | GRP_0 | password reset password reset | English |
| 7895 | hi team, my laptop's random shut down problem ... | hi team, my laptop's random shut down problem ... | nwdlefxk epzrghnv | GRP_3 | hi team, my laptop's random shut down problem ... | English |
| 7896 | tfrbwoua aegpkruc unable to print from pdf | tfrbwoua aegpkruc unable to print from pdf | olckhmvx pcqobjnd | GRP_0 | tfrbwoua aegpkruc unable to print from pdf tfr... | English |
| 7897 | urgent: need full py access for all german loc... | hi,\ncould you please usa me full access + per... | couskjgd uzojtkmh | GRP_2 | urgent: need full py access for all german loc... | English |
| 7898 | increase the ramdnty from 80gb to 128 gb ramdn... | increase the ramdnty from 80gb to 128 gb ramdn... | vthuzanc fqdgotvx | GRP_12 | increase the ramdnty from 80gb to 128 gb ramdn... | English |
| 7899 | reset password request for bobj | \n\nreceived from: iqcylpok.ascpqvni@gmail.com... | iqcylpok ascpqvni | GRP_0 | reset password request for bobj \n\nreceived f... | English |
| 7900 | zip code entered into erp account in SID_34 do... | hello\r\naccount 81548372, zip code was update... | ugephfta hrbqkvij | GRP_40 | zip code entered into erp account in SID_34 do... | English |
| 7901 | decommission of HostName_553-old | from: zmgsfner caltmgoe \r\nsent: 15 july 2016... | zmgsfner caltmgoe | GRP_12 | decommission of HostName_553-old from: zmgsfne... | English |
| 7902 | password reset request from o365 | password reset request from o365 | tlvcjdmk fbpvrqzh | GRP_0 | password reset request from o365 password rese... | English |
| 7903 | low disk space on lhqSID_1854 - f drive | from: vwaliogd dviwuzhm \nsent: friday, august... | vwaliogd dviwuzhm | GRP_12 | low disk space on lhqSID_1854 - f drive from: ... | English |
| 7904 | t drive folder access | zugriff auf verzeichnis angefragt.\nfolder acc... | vfrdxtqw jfbmsenz | GRP_34 | t drive folder access zugriff auf verzeichnis ... | English |
| 7905 | unable to launch outlook | unable to launch outlook | wjtzrmqc ikqpbflg | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 7906 | EU_tool funktioniert nicht. | EU_tool funktioniert nicht.\r\nmeldung : unbek... | cwrikael oanmsecr | GRP_0 | EU_tool funktioniert nicht. EU_tool funktionie... | German |
| 7907 | telephony_software < -- > erp | the terms of payment are not in line between c... | atlwdyej vtlhzbix | GRP_15 | telephony_software < -- > erp the terms of pa... | English |
| 7908 | outlook is not opening. | outlook is not opening. | nqdyowsm yqerwtna | GRP_0 | outlook is not opening. outlook is not opening. | English |
| 7909 | account locked. | account locked. | cwrikael oanmsecr | GRP_0 | account locked. account locked. | English |
| 7910 | password reset request for kiosk users. | password reset request for kiosk users. | ughzilfm cfibdamq | GRP_0 | password reset request for kiosk users. passwo... | English |
| 7911 | oprbatch extending plant views on fert items w... | oprbatch extending plant views on fert items w... | xkmvpaei fizqoprk | GRP_29 | oprbatch extending plant views on fert items w... | English |
| 7912 | mmaster sales org extensions created by oprbat... | mmaster sales org extensions created by oprbat... | xkmvpaei fizqoprk | GRP_29 | mmaster sales org extensions created by oprbat... | English |
| 7913 | cannot use - net weaver business client 5.0 | \r\n\r\nreceived from: uvoyrbhp.qbupdjhw@gmail... | uvoyrbhp qbupdjhw | GRP_0 | cannot use - net weaver business client 5.0 \r... | English |
| 7914 | device replacement: setup new hp laserjet m575... | device replacement: setup new hp laserjet m575... | dqeowzux cjorxvew | GRP_28 | device replacement: setup new hp laserjet m575... | English |
| 7915 | .netframdntyework 4.6.1 & business_client 5.0 ... | \r\n\r\nreceived from: yqlvfkih.folbpugd@gmail... | yqlvfkih folbpugd | GRP_0 | .netframdntyework 4.6.1 & business_client 5.0 ... | English |
| 7916 | laptop is having blue screen | laptop is having blue screen | qekdgaim wagshrzl | GRP_0 | laptop is having blue screen laptop is having ... | English |
| 7917 | sent from snipping tool | \r\n\r\nreceived from: afwzehqs.jfbxegac@gmail... | afwzehqs jfbxegac | GRP_0 | sent from snipping tool \r\n\r\nreceived from:... | English |
| 7918 | discounts | cannot access discounts through collaboration_... | xioapjvd yiqubxmz | GRP_0 | discounts cannot access discounts through coll... | English |
| 7919 | engineering tool is getting locked out frequen... | engineering tool is getting locked out frequen... | ewztnhig boixplft | GRP_0 | engineering tool is getting locked out frequen... | English |
| 7920 | holiday list needs rebuilt | someone has deleted all of the holiday entries... | sdxjiwlq ynowzqfh | GRP_16 | holiday list needs rebuilt someone has deleted... | English |
| 7921 | outlook issue | 280\r\nsummary:unable to login to outlook | xhjmzyis bsduwrix | GRP_0 | outlook issue 280\r\nsummary:unable to login ... | English |
| 7922 | business_client prompts related to java promts | please refer attachments to this ticket for mo... | tghrloks jbgcvlmf | GRP_11 | business_client prompts related to java promts... | English |
| 7923 | erp password reset request. | erp password reset request. | hudrkqcg qyhkctrd | GRP_0 | erp password reset request. erp password reset... | English |
| 7924 | setup new ws \thnsguzj utwijzag | setup new ws \thnsguzj utwijzag | thnsguzj utwijzag | GRP_24 | setup new ws \thnsguzj utwijzag setup new ws \... | Dutch |
| 7925 | setup new ws \yucgfmiq jamgpnqe | setup new ws \yucgfmiq jamgpnqe | yucgfmiq jamgpnqe | GRP_24 | setup new ws \yucgfmiq jamgpnqe setup new ws \... | un |
| 7926 | setun new ws \michghytuael luesebrink | setun new ws \michghytuael luesebrink | wnicojsd evwplcxy | GRP_24 | setun new ws \michghytuael luesebrink setun ne... | English |
| 7927 | setup new ws \uhammet kuluz | setup new ws \uhammet kuluz | dkrbwceu aiqkycwp | GRP_24 | setup new ws \uhammet kuluz setup new ws \uham... | un |
| 7928 | install 64 bit version von ms office für pc 2... | install 64 bit version von ms office für pc 2... | njdrcagt shourxyp | GRP_24 | install 64 bit version von ms office für pc 2... | English |
| 7929 | report /dscsag/dms_kpro_contv_clean1 is resul... | i tried to run the report /dscsag/dms_kpro_con... | pldtreob fznbeusj | GRP_14 | report /dscsag/dms_kpro_contv_clean1 is resul... | English |
| 7930 | forgot attendance_tool password | forgot attendance_tool password | teqkxlra vbinmucx | GRP_0 | forgot attendance_tool password forgot attenda... | English |
| 7931 | outlock suche | \r\n\r\nreceived from: giumxwvh.lfvwjtin@gmail... | giumxwvh lfvwjtin | GRP_28 | outlock suche \r\n\r\nreceived from: giumxwvh... | German |
| 7932 | abended job in job_scheduler: Job_3182 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_3182 receive... | English |
| 7933 | outlook is not working | outlook is not working | cthaborg cahbxlmr | GRP_0 | outlook is not working outlook is not working | English |
| 7934 | reset password for erp SID_34 | reset password for erp SID_34 | xhjmzyis bsduwrix | GRP_0 | reset password for erp SID_34 reset password ... | English |
| 7935 | abended job in job_scheduler: Job_593 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_593 received... | English |
| 7936 | microsoft outlook2010 is not working for pdujf... | microsoft outlook2010 is not working for pdujf... | vwpxjtof vmidzswj | GRP_33 | microsoft outlook2010 is not working for pdujf... | English |
| 7937 | visio printer and wireless mouse | help to configure the wireless device id04 pri... | xezjvnyr hmjwknxs | GRP_19 | visio printer and wireless mouse help to confi... | English |
| 7938 | user called to give information regarding tick... | user called to give information regarding tick... | efbwiadp dicafxhv | GRP_0 | user called to give information regarding tick... | English |
| 7939 | my account changed new password get many error... | my account changed new password get many error... | tpoweajk glvztyxp | GRP_0 | my account changed new password get many error... | English |
| 7940 | business_client issue | how do i change the "message server" when conn... | ctvaejbo mjcerqwo | GRP_11 | business_client issue how do i change the "mes... | English |
| 7941 | æ–‡ä»¶æ— æ³•æ‰“å°åˆ°æ‰“å°æœºï¼Œæç¤ºæ‰“å°æ... | prtSID_737--æ–‡ä»¶æ— æ³•æ‰“å°åˆ°æ‰“å°æœºï¼Œæ... | rtjwbuev gfpwdetq | GRP_31 | æ–‡ä»¶æ— æ³•æ‰“å°åˆ°æ‰“å°æœºï¼Œæç¤ºæ‰“å°æ... | Estonian |
| 7942 | fund | hello ,\r\n\r\nbelow mail is definitely a spam... | srqyfjxz lnagtjzi | GRP_0 | fund hello ,\r\n\r\nbelow mail is definitely a... | English |
| 7943 | new prospect accounts created in crm do not ge... | hello, \r\n\r\ni have two specific cases where... | ugephfta hrbqkvij | GRP_40 | new prospect accounts created in crm do not ge... | English |
| 7944 | quotation with configured new simple special i... | quotation with configured new simple special i... | iavozegx jpcudyfi | GRP_13 | quotation with configured new simple special i... | English |
| 7945 | HostName_587(germany,de-patching_antivirus_sw-... | germany patching_antivirus_sw server. HostName... | uxgrdjfc kqxdjeov | GRP_12 | HostName_587(germany,de-patching_antivirus_sw-... | English |
| 7946 | HostName_973(hr_tool tax_interface app - qa):a... | HostName_973(hr_tool tax_interface app - qa) :... | uvrbhlnt bjrmalzi | GRP_12 | HostName_973(hr_tool tax_interface app - qa):a... | English |
| 7947 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | akhdmgwt yhgpafqx | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 7948 | engineering tool | das passwort wurde meinerseits falsch eingegeb... | gasbfqvp fmvqgjih | GRP_0 | engineering tool das passwort wurde meinerseit... | German |
| 7949 | erp SID_34 account locked | erp SID_34 account locked | ngcedtzy pfribotd | GRP_0 | erp SID_34 account locked erp SID_34 account ... | English |
| 7950 | while creating the order in distributor_tool i... | rabhtui and all,\r\n\r\nit looks like me may s... | qtiyzjaw rxtpbqvu | GRP_20 | while creating the order in distributor_tool i... | English |
| 7951 | erp SID_32 account locked | erp SID_32 account locked | cgvhxjay znyuopqk | GRP_2 | erp SID_32 account locked erp SID_32 account ... | English |
| 7952 | abended job in job_scheduler: bkbackup_tool_re... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bkbackup_tool_re... | English |
| 7953 | enterprise scanner not working | enterprise scanner not working | fplzydvo fwilgedx | GRP_0 | enterprise scanner not working enterprise sca... | English |
| 7954 | mobile device is temporarily blocked from sync... | from: grhryueg dewicrth \r\nsent: wednesday, a... | kehtxprg uekapfzt | GRP_0 | mobile device is temporarily blocked from sync... | English |
| 7955 | not getting any old mails in my outlook. kindl... | name:kargthythik\nlanguage:\nbrowser:microsoft... | hjcpyxtq okycpbsz | GRP_0 | not getting any old mails in my outlook. kindl... | English |
| 7956 | unable to login to vpn and reset password | unable to login to vpn and reset password | xiaurwpz hzusljmc | GRP_0 | unable to login to vpn and reset password una... | English |
| 7957 | bex password was locked due to wrong typing. p... | name:zcqnuawo zxdtskpw\nlanguage:\nbrowser:mic... | zcqnuawo zxdtskpw | GRP_0 | bex password was locked due to wrong typing. p... | English |
| 7958 | email back problem in outlook | \r\n\r\nreceived from: hjcpyxtq.okycpbsz@gmail... | hjcpyxtq okycpbsz | GRP_0 | email back problem in outlook \r\n\r\nreceived... | English |
| 7959 | pc to be made as stand by own | \r\n\r\nreceived from: kzybxher.prjaswhe@gmail... | kzybxher prjaswhe | GRP_19 | pc to be made as stand by own \r\n\r\nreceived... | English |
| 7960 | abended job in job_scheduler: Job_549 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_549 received... | English |
| 7961 | cannot open engineering_tool | \r\n\r\nreceived from: anpocezt.qturbxsg@gmail... | anpocezt qturbxsg | GRP_0 | cannot open engineering_tool \r\n\r\nreceived ... | English |
| 7962 | abended job in job_scheduler: SID_37hoti | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_37hoti recei... | English |
| 7963 | abended job in job_scheduler: SID_51hotf | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_51hotf recei... | English |
| 7964 | abended job in job_scheduler: bk_hana_SID_62_e... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bk_hana_SID_62_e... | English |
| 7965 | bex cannot convert to excel sheet | bex cannot convert to excel sheet | jgautdmk fpurxzew | GRP_0 | bex cannot convert to excel sheet bex cannot c... | English |
| 7966 | domain account unlock | domain account unlock | tjlizqgc ngvwoukp | GRP_0 | domain account unlock domain account unlock | English |
| 7967 | i'm trying to help nkademwy ihsepkwz log into ... | \r\nic\r\nwelcome, our next available agent wi... | dmytraiq ixkuqyst | GRP_0 | i'm trying to help nkademwy ihsepkwz log into ... | English |
| 7968 | unable to view screen on monitor when lid is c... | unable to view screen on monitor when lid is c... | xpugzdvk xiawvmfp | GRP_0 | unable to view screen on monitor when lid is c... | English |
| 7969 | 客户æä¾›çš„在线系统打ä¸å¼€ | 客户æä¾›çš„在线é€è´§å•生æˆç³»ç»Ÿæ‰“ä... | fupikdoa gjkytoeh | GRP_48 | 客户æä¾›çš„在线系统打ä¸å¼€ 客户æ... | English |
| 7970 | abended job in job_scheduler: Job_1320 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1320 receive... | English |
| 7971 | SID_34/1108/vf01-vf04/ price problems zor agai... | we have facing problems with the inwarehouse_t... | zvjwleuo tdfqgcal | GRP_13 | SID_34/1108/vf01-vf04/ price problems zor agai... | English |
| 7972 | cannot load finance_app | \r\n\r\nreceived from: pjxclyhs.fcniljtu@gmail... | pjxclyhs fcniljtu | GRP_55 | cannot load finance_app \r\n\r\nreceived from:... | English |
| 7973 | employment status - employee termination for u... | employee last name: peghyurozich\n\nemployee ... | bwfhtumx japznrvb | GRP_2 | employment status - employee termination for u... | English |
| 7974 | reset passwords for nathyuasha smoltelephony_s... | globalview (794, prtgghj4k) reset please!!! | qctdugsi bfqlgvos | GRP_17 | reset passwords for nathyuasha smoltelephony_s... | English |
| 7975 | the snmp agent at '10.32.1.11' is not respondi... | the snmp agent at '10.32.1.11' is not respondi... | rkupnshb gsmzfojw | GRP_56 | the snmp agent at '10.32.1.11' is not respondi... | English |
| 7976 | Job_1953d:was running longer than 30 minutes ... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | Job_1953d:was running longer than 30 minutes ... | English |
| 7977 | please unlock account email in cell phone th... | hello team,\n\ncould you please unlock account... | qasdhyzm yuglsrwx | GRP_0 | please unlock account email in cell phone th... | English |
| 7978 | circuit outage: usa pa, plant comcast secondar... | what type of outage: _____network ___x__c... | rkupnshb gsmzfojw | GRP_8 | circuit outage: usa pa, plant comcast secondar... | English |
| 7979 | excel continues to crash with 2-3 workbooks open | error messages: "excel cannot complete the tas... | stdezpqw bkmeuhfz | GRP_0 | excel continues to crash with 2-3 workbooks op... | English |
| 7980 | update dns on printer | update dns on printer\r\n\r\nmodel - hp laser ... | mfeyouli ndobtzpw | GRP_0 | update dns on printer update dns on printer\r\... | English |
| 7981 | as per inc1530176::security incidents - (in335... | \nfrom: gzhapcld fdigznbk \nsent: wednesday, a... | gzhapcld fdigznbk | GRP_2 | as per inc1530176::security incidents - (in335... | English |
| 7982 | security incidents - ( dsw #in33390850 ) : sus... | source ip : 78.83.16.293\nsystem name : HostNa... | ugyothfz ugrmkdhx | GRP_2 | security incidents - ( dsw #in33390850 ) : sus... | English |
| 7983 | HostName_1132:epmsystem2.exe: wrong number of ... | observing below alert in reporting_tool since ... | jloygrwh acvztedi | GRP_12 | HostName_1132:epmsystem2.exe: wrong number of ... | English |
| 7984 | security incidents - ( dsw #in33390850 ) : sus... | source ip : 78.83.16.293\r\nsystem name : Host... | ugyothfz ugrmkdhx | GRP_12 | security incidents - ( dsw #in33390850 ) : sus... | English |
| 7985 | ess password reset | ess password reset | ariqehvd fhrpontd | GRP_0 | ess password reset ess password reset | English |
| 7986 | add printer prtqi2019 on HostName_1332 | add printer prtqi2019 on HostName_1332 with 32... | mfeyouli ndobtzpw | GRP_0 | add printer prtqi2019 on HostName_1332 add ... | English |
| 7987 | security incidents - (in33536629) : possible t... | source ip :10.44.94.214\r\ndest ip : 183.91.33... | gzhapcld fdigznbk | GRP_30 | security incidents - (in33536629) : possible t... | English |
| 7988 | printer issue | \nname:seghyurghei\nlanguage:\nbrowser:microso... | rbozivdq gmlhrtvp | GRP_0 | printer issue \nname:seghyurghei\nlanguage:\nb... | English |
| 7989 | security incidents - ( dsw #in33407676 ) : tra... | source ip : 61.01.52.02617\r\nsystem name : lp... | ugyothfz ugrmkdhx | GRP_2 | security incidents - ( dsw #in33407676 ) : tra... | English |
| 7990 | HostName_1015: average (4 samples) disk free o... | HostName_1015: average (4 samples) disk free o... | rkupnshb gsmzfojw | GRP_12 | HostName_1015: average (4 samples) disk free o... | English |
| 7991 | as per inc1530161::security incidents - ( in33... | \r\nfrom: gzhapcld fdigznbk \r\nsent: wednesda... | gzhapcld fdigznbk | GRP_2 | as per inc1530161::security incidents - ( in33... | English |
| 7992 | client is unable to view 2 screens when tablet... | client is unable to view 2 screens when tablet... | tskwevno sjhpoakl | GRP_3 | client is unable to view 2 screens when tablet... | English |
| 7993 | clients pc is making buzzing noise and wont tu... | clients pc is making buzzing noise and wont tu... | sigfdwcj reofwzlm | GRP_3 | clients pc is making buzzing noise and wont tu... | English |
| 7994 | activation not valid for microsoft projects | activation not valid for microsoft projects | zhvrtnom waedkqzj | GRP_3 | activation not valid for microsoft projects ac... | English |
| 7995 | security incidents - ( dsw #in33407676 ) : tra... | source ip : 61.01.52.02617\r\nsystem name : lp... | ugyothfz ugrmkdhx | GRP_62 | security incidents - ( dsw #in33407676 ) : tra... | English |
| 7996 | security incidents - ( in33490582 ) : suspicio... | source ip : 29.26.13.3095\r\nsystem name :Host... | gzhapcld fdigznbk | GRP_12 | security incidents - ( in33490582 ) : suspicio... | English |
| 7997 | security incidents - ( sw #in33544563 ) : poss... | source ip : 45.25.35.0499\nsystem name : lpal9... | ugyothfz ugrmkdhx | GRP_2 | security incidents - ( sw #in33544563 ) : poss... | English |
| 7998 | unable to connect with vpn | \r\n\r\nreceived from: ivohcdpw.ixcanwbm@gmail... | ivohcdpw ixcanwbm | GRP_0 | unable to connect with vpn \r\n\r\nreceived fr... | English |
| 7999 | xceliron process not working - inwarehouse_too... | xceliron process not working - inwarehouse_too... | xkmvpaei fizqoprk | GRP_29 | xceliron process not working - inwarehouse_too... | English |
| 8000 | abended job in job_scheduler: bkbackup_tool_Ho... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: bkbackup_tool_Ho... | English |
| 8001 | lhqw8325925sf: usa-nologin-collaboration_platf... | lhqw8325925sf: usa-nologin-collaboration_platf... | rkupnshb gsmzfojw | GRP_8 | lhqw8325925sf: usa-nologin-collaboration_platf... | English |
| 8002 | security incidents - ( sw #in33544563 ) : poss... | source ip : 45.25.35.0499\r\nsystem name : lpa... | ugyothfz ugrmkdhx | GRP_62 | security incidents - ( sw #in33544563 ) : poss... | English |
| 8003 | engineering tool | engineering tool stops working several times a... | fegahzqx bkeqfvpl | GRP_62 | engineering tool engineering tool stops workin... | English |
| 8004 | abend batch job in job_scheduler :bkbackup_too... | job name:bkbackup_tool_HostName_770_prod_inc | oldrctiu bxurpsyi | GRP_5 | abend batch job in job_scheduler :bkbackup_too... | English |
| 8005 | please move client from office 2010 to 2016 pe... | please move client from office 2010 to 2016 pe... | xzwlnbfo plstfydx | GRP_3 | please move client from office 2010 to 2016 pe... | English |
| 8006 | password reset | password reset | rxoqczbj glanwbvu | GRP_0 | password reset password reset | English |
| 8007 | ticket_no1539670 - ticket update | ticket_no1539670 - ticket update | olckhmvx pcqobjnd | GRP_0 | ticket_no1539670 - ticket update ticket_no1539... | English |
| 8008 | please instal printer pa15 at these laptop | please instal printer pa15 at these laptop | zuyimtsf qjtimdsp | GRP_0 | please instal printer pa15 at these laptop ple... | English |
| 8009 | restore a file | \r\n\r\nreceived from: nwbhomqe.ejavblzu@gmail... | nwbhomqe ejavblzu | GRP_12 | restore a file \r\n\r\nreceived from: nwbhomqe... | English |
| 8010 | unable to connect to wifi from a hotel // dell... | unable to connect to wifi from a hotel // dell... | imoelsap gxdwkimv | GRP_0 | unable to connect to wifi from a hotel // dell... | English |
| 8011 | access to insertapps and corporate technology ... | \r\n\r\nreceived from: uterqfld.ufmtgndo@gmail... | zrbxcndu lxrsoenp | GRP_0 | access to insertapps and corporate technology ... | English |
| 8012 | audio not working on dell 7350 tablet | audio not working on dell 7350 tablet | nyjvwsxf npwoglzf | GRP_0 | audio not working on dell 7350 tablet audio no... | English |
| 8013 | unable to create reports in ticketing_tool | i am unable to create/save new reports in tick... | qfrntose ivnhumzj | GRP_36 | unable to create reports in ticketing_tool i a... | English |
| 8014 | unable to boot up the laptop | unable to boot up the laptop | oewshlmd azjfshry | GRP_3 | unable to boot up the laptop unable to boot up... | English |
| 8015 | unable to sign in to skype and outlook | unable to sign in to skype and outlook | vfrdxtqw jfbmsenz | GRP_0 | unable to sign in to skype and outlook unable ... | English |
| 8016 | HostName_1132:wrong number of instances of pro... | HostName_1132:epmsystem2.exe: wrong number of ... | jyoqwxhz clhxsoqy | GRP_12 | HostName_1132:wrong number of instances of pro... | English |
| 8017 | password reset | password reset | tjlizqgc ngvwoukp | GRP_0 | password reset password reset | English |
| 8018 | error in customer | \r\n\r\nreceived from: aiobpkzm.rmfjwtpl@gmail... | aiobpkzm rmfjwtpl | GRP_10 | error in customer \r\n\r\nreceived from: aiobp... | English |
| 8019 | account locked out | account locked out | vfrdxtqw jfbmsenz | GRP_0 | account locked out account locked out | English |
| 8020 | hub home page regional news does not have amer... | see att | gvxfymjk euioadyf | GRP_16 | hub home page regional news does not have amer... | English |
| 8021 | issues with internet explorer which is freezin... | \r\n\r\nreceived from: jnqmvard.jiazxvcl@gmail... | jnqmvard jiazxvcl | GRP_0 | issues with internet explorer which is freezin... | English |
| 8022 | erp SID_34 password reset | need erp password reset. i am getting the erro... | ewztnhig boixplft | GRP_0 | erp SID_34 password reset need erp password r... | English |
| 8023 | a supplier told me that i have no warehouse_to... | koiapqbg teyldpkw, matheywt kaufsfthyman , pho... | koiapqbg teyldpkw | GRP_0 | a supplier told me that i have no warehouse_to... | English |
| 8024 | desk phone warehouse_toolmail | when accessing my warehouse_toolmail, i receiv... | tsicojkp kghaozew | GRP_0 | desk phone warehouse_toolmail when accessing m... | English |
| 8025 | erp SID_34 account locked | erp SID_34 account locked | psgqitwu ribvmtfk | GRP_0 | erp SID_34 account locked erp SID_34 account l... | English |
| 8026 | delivery failures | date of email: 07/20/2016 (i have attached bot... | kbnfxpsy gehxzayq | GRP_26 | delivery failures date of email: 07/20/2016 (i... | English |
| 8027 | access database error. | access database error. attached. | acmglkti cwgxrabu | GRP_0 | access database error. access database error. ... | English |
| 8028 | erp SID_34 password reset. | erp SID_34 password reset. | ycdfqokg jxohikdz | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 8029 | HostName_1132: average (5 samples) memory usag... | HostName_1132: average (5 samples) memory usag... | jyoqwxhz clhxsoqy | GRP_12 | HostName_1132: average (5 samples) memory usag... | English |
| 8030 | my telephone does not have a dial tone and i c... | my telephone does not have a dial tone and i c... | dzjxrkae grqczsmx | GRP_0 | my telephone does not have a dial tone and i c... | English |
| 8031 | account lockout | account lockout | qifzkoej etbmgjvo | GRP_0 | account lockout account lockout | English |
| 8032 | i am having issues with being disconnected eve... | i am having issues with being disconnected eve... | hitakmbs fvhmkntq | GRP_3 | i am having issues with being disconnected eve... | English |
| 8033 | restore | \r\n\r\nreceived from: trgqbeax.hfyzudql@gmail... | trgqbeax hfyzudql | GRP_12 | restore \r\n\r\nreceived from: trgqbeax.hfyzud... | English |
| 8034 | o outloock não esta funcionando. | mensagem de erro:" infelizmente, o outlook enc... | jidhewlg jufskody | GRP_62 | o outloock não esta funcionando. mensagem de ... | Portuguese |
| 8035 | warehouse_toolmail not working | my warehouse_toolmail does not seem to be pick... | wgothrzl iokdftgn | GRP_0 | warehouse_toolmail not working my warehouse_to... | English |
| 8036 | setting of ooo for another mail box | setting of ooo for another mail box\nsummary:n... | utrvshcp bjlwcovt | GRP_0 | setting of ooo for another mail box setting of... | English |
| 8037 | user hajghtdul unable to connect via vpn. unab... | i have changed my passwords using password_man... | wibovsru ulmqyhsk | GRP_0 | user hajghtdul unable to connect via vpn. unab... | English |
| 8038 | warehouse_toolmail not possible on phone set | warehouse_toolmail not possible on phone set | rwmeuzvy bpstvajw | GRP_0 | warehouse_toolmail not possible on phone set w... | English |
| 8039 | group by does not work in the new modern look ... | my site does not show the grouping by the firs... | gvxfymjk euioadyf | GRP_16 | group by does not work in the new modern look ... | English |
| 8040 | erp SID_34 unlock request | erp SID_34 unlock request | kslhobgj cyhvefna | GRP_0 | erp SID_34 unlock request erp SID_34 unlock r... | English |
| 8041 | update on inplant_848628 | update on inplant_848628 | rbozivdq gmlhrtvp | GRP_0 | update on inplant_848628 update on inplant_848628 | English |
| 8042 | ldism004(usa village(claapdico)-robot) is inac... | ldism004(usa village(claapdico)-robot) is inac... | jyoqwxhz clhxsoqy | GRP_8 | ldism004(usa village(claapdico)-robot) is inac... | English |
| 8043 | setup new ws \xaqzisrk ahbgjrqz | setup new ws \xaqzisrk ahbgjrqz | xaqzisrk ahbgjrqz | GRP_24 | setup new ws \xaqzisrk ahbgjrqz setup new ws \... | un |
| 8044 | warehouse_toolmail related to my office phone ... | the warehouse_toolmail associated with my offi... | htsnaodb adjtmlzn | GRP_0 | warehouse_toolmail related to my office phone ... | English |
| 8045 | handheld wireless device activation iphone 5s | handheld wireless device activation iphone 5s | mfeyouli ndobtzpw | GRP_0 | handheld wireless device activation iphone 5s ... | English |
| 8046 | need file restored on a network/nt drive HostN... | need file restored on a network/nt drive.\r\n\... | nwqktzlx vnlqkgpb | GRP_5 | need file restored on a network/nt drive HostN... | English |
| 8047 | need access for utislgov fetaqndw | \r\n\r\nreceived from: zjawqgcs.tohqcxla@gmail... | zjawqgcs tohqcxla | GRP_12 | need access for utislgov fetaqndw \r\n\r\nrec... | English |
| 8048 | unlock erp SID_34 erp production account | unlock erp SID_34 erp production account | vmidjaxk boarxyps | GRP_0 | unlock erp SID_34 erp production account unloc... | English |
| 8049 | revisar pc lpaw8515845 (g0rfv12) usadtto dfsdp... | usar microsoft update \r\natualizar adobe acro... | kbnfxpsy gehxzayq | GRP_62 | revisar pc lpaw8515845 (g0rfv12) usadtto dfsdp... | English |
| 8050 | seep installation | seep installation | ztrpuvdf jlahkmdv | GRP_0 | seep installation seep installation | English |
| 8051 | issue on pricing in distributor_tool | we have agreed price with many of the distribu... | hbmwlprq ilfvyodx | GRP_21 | issue on pricing in distributor_tool we have a... | English |
| 8052 | outlook issue | outlook issue | wxnetroc yecbmliq | GRP_0 | outlook issue outlook issue | English |
| 8053 | vvfrtgarnb - account disabled : account needs... | \r\n\r\nreceived from: dctviemg.muapxkns@gmail... | dctviemg muapxkns | GRP_2 | vvfrtgarnb - account disabled : account needs... | English |
| 8054 | erp SID_34 password reset. | erp SID_34 password reset. | uerghtyi erzatqpy | GRP_0 | erp SID_34 password reset. erp SID_34 password... | English |
| 8055 | account disabled for user vvfrtgarnb | account disabled for user vvfrtgarnb | kcnosyae zlpmfxgs | GRP_0 | account disabled for user vvfrtgarnb account d... | English |
| 8056 | unable to connect to wifi | unable to connect to wifi. | csmhykge mpxbjudw | GRP_0 | unable to connect to wifi unable to connect to... | English |
| 8057 | close telephony_software between 16:30 and 17:... | hi,\r\nwould you please close telephony_softwa... | lhycpqra fdhyxqrw | GRP_7 | close telephony_software between 16:30 and 17:... | English |
| 8058 | distributor_tool: company issue and engineerin... | distributor_tool: company issue and engineerin... | wipzvlug urmdkgpa | GRP_0 | distributor_tool: company issue and engineerin... | English |
| 8059 | reset passwords for wptbgchj jutpdcqf using pa... | the | wptbgchj jutpdcqf | GRP_17 | reset passwords for wptbgchj jutpdcqf using pa... | English |
| 8060 | unable to connect vpn | \r\n\r\nreceived from: zrpemyab.xvzwcbha@gmail... | zrpemyab xvzwcbha | GRP_0 | unable to connect vpn \r\n\r\nreceived from: z... | English |
| 8061 | my symantec management agent is disabled | my symantec management agent is disabled | yvjdluhk hmcpvtdj | GRP_50 | my symantec management agent is disabled my sy... | English |
| 8062 | npc311101328 maintain plant value tasks assign... | npc311101328 information from jimdghty beshryu... | svuxizgr mkynswqd | GRP_11 | npc311101328 maintain plant value tasks assign... | English |
| 8063 | display settings issue. | display setting issue | ihozauxs ohdqmipz | GRP_0 | display settings issue. display setting issue | English |
| 8064 | idg password reset not possible. | idg password reset not possible. \r\n | xuymwdbn polhsczj | GRP_0 | idg password reset not possible. idg password... | English |
| 8065 | can't print drawing | when attempting to print 71877338 from eu loca... | ctvaejbo mjcerqwo | GRP_11 | can't print drawing when attempting to print 7... | English |
| 8066 | i can not log into erp hcm via the vpn | i'm connected to the vpn, but i can not log in... | mcjqespd ldwsmjgx | GRP_0 | i can not log into erp hcm via the vpn i'm con... | English |
| 8067 | attached mail is saved on desktop as template ... | attached mail is saved on desktop as template ... | anuxbyzg bvsqcjkw | GRP_0 | attached mail is saved on desktop as template ... | English |
| 8068 | business_client login | hi,\r\n\r\nkindly help me out on access drawin... | qxmujhwg rsgqidxw | GRP_0 | business_client login hi,\r\n\r\nkindly help m... | English |
| 8069 | HostName_973:(hr_tool tax_interface app - qa )... | HostName_973:(hr_tool tax_interface app - qa )... | jyoqwxhz clhxsoqy | GRP_12 | HostName_973:(hr_tool tax_interface app - qa )... | English |
| 8070 | bildschirm am kyocera arbeitsplatz defekt | bitte austauschen | wfbkucds qaxhbois | GRP_42 | bildschirm am kyocera arbeitsplatz defekt bitt... | German |
| 8071 | setup new ws \rxpjomyf hvolsgqn | setup new ws \rxpjomyf hvolsgqn | rxpjomyf hvolsgqn | GRP_24 | setup new ws \rxpjomyf hvolsgqn setup new ws \... | un |
| 8072 | setup new ws \pnwbkitv phbnwmkl | setup new ws \pnwbkitv phbnwmkl | pnwbkitv phbnwmkl | GRP_24 | setup new ws \pnwbkitv phbnwmkl setup new ws \... | un |
| 8073 | setup new ws \wyighrjl xcwavhyu | setup new ws \wyighrjl xcwavhyu | wyighrjl xcwavhyu | GRP_24 | setup new ws \wyighrjl xcwavhyu setup new ws \... | un |
| 8074 | setup new ws \beosjgxt mdevcqjk | setup new ws \beosjgxt mdevcqjk | beosjgxt mdevcqjk | GRP_24 | setup new ws \beosjgxt mdevcqjk setup new ws \... | un |
| 8075 | erp 730 issue. | my erp gui got updated today, after that i a... | vazmgjxu nmsycblo | GRP_0 | erp 730 issue. my erp gui got updated today, ... | English |
| 8076 | lhqsm518(fim production): miiserver.exe: wrong... | lhqsm518(fim production): miiserver.exe: wrong... | uxgrdjfc kqxdjeov | GRP_12 | lhqsm518(fim production): miiserver.exe: wrong... | English |
| 8077 | erp SID_34 password reset request. | erp SID_34 password reset request. | apylmhrq gyncwpim | GRP_0 | erp SID_34 password reset request. erp SID_34 ... | English |
| 8078 | company guest account not working which was cr... | company guest account not working which was cr... | miecoszw mhvbnodw | GRP_0 | company guest account not working which was cr... | English |
| 8079 | user account is locked | unable to login windows. | ecprjbod litmjwsy | GRP_0 | user account is locked unable to login windows. | English |
| 8080 | not able to hear any thing | not able to hear any thing | efbwiadp dicafxhv | GRP_0 | not able to hear any thing not able to hear a... | English |
| 8081 | mobile device activation request for user :eqt... | \r\n\r\nreceived from: wauhocsk.vxuikqaf@gmail... | wauhocsk vxuikqaf | GRP_0 | mobile device activation request for user :eqt... | English |
| 8082 | erp SID_34 password reset request | erp SID_34 password reset request | xuymwdbn polhsczj | GRP_0 | erp SID_34 password reset request erp SID_34 ... | English |
| 8083 | i cannot connect the network printer vh41 | i cannot connect the network printer vh41 | yvjdluhk hmcpvtdj | GRP_0 | i cannot connect the network printer vh41 i ca... | English |
| 8084 | updated win10 uacyltoe hxgaycze machine eaglt0... | hello antivirus team,\r\n\r\nmy win10 uacyltoe... | nwfoucba dzbujamc | GRP_50 | updated win10 uacyltoe hxgaycze machine eaglt0... | English |
| 8085 | mobile device activation ; personal device | mobile device activation ; personal device | vzogmube rnxwkfvo | GRP_0 | mobile device activation ; personal device mo... | English |
| 8086 | data restore | restore the data files from external hard disk... | xezjvnyr hmjwknxs | GRP_19 | data restore restore the data files from exter... | English |
| 8087 | polycom realpresence destop" | polycom software installation on desktop | zscohabw qorvugzf | GRP_19 | polycom realpresence destop" polycom software ... | English |
| 8088 | ad locked out | ad locked out | ywfhcuki dajkmxcl | GRP_0 | ad locked out ad locked out | English |
| 8089 | eagw8111224 shows defective system files - rei... | eagw8111224 shows defective system files - rei... | jksgwdyi greuqxko | GRP_28 | eagw8111224 shows defective system files - rei... | English |
| 8090 | terminate action for suzjhmfa swmiynoz has com... | from: jusfrttin gtehdnyuerrf [mailto:system@hr... | homsxpyw qgcsaymo | GRP_2 | terminate action for suzjhmfa swmiynoz has com... | English |
| 8091 | request you to reset my password of password_m... | request you to reset my password of password_m... | boirqctx bkijgqry | GRP_0 | request you to reset my password of password_m... | English |
| 8092 | reset passwords for prgthyuulla ramdntythanjes... | the | boirqctx bkijgqry | GRP_17 | reset passwords for prgthyuulla ramdntythanjes... | English |
| 8093 | reset passwords for prgthyuulla ramdntythanjes... | the | boirqctx bkijgqry | GRP_17 | reset passwords for prgthyuulla ramdntythanjes... | English |
| 8094 | the terminate action for kjtqxroc taqekwrd has... | from: jusfrttin gtehdnyuerrf [mailto:system@hr... | homsxpyw qgcsaymo | GRP_2 | the terminate action for kjtqxroc taqekwrd has... | English |
| 8095 | logon to server HostName_583 not possible | logon to server HostName_583 not possible - se... | smpijawb eawkpgqf | GRP_12 | logon to server HostName_583 not possible logo... | English |
| 8096 | lean event | \r\n\r\nreceived from: ikerxqwz.prkyuitl@gmail... | ikerxqwz prkyuitl | GRP_0 | lean event \r\n\r\nreceived from: ikerxqwz.prk... | English |
| 8097 | aw: [ticket#2016080878000153] wg: po#4505612440 | \r\n\r\nreceived from: qyndvmlw.imcvznow@gmail... | qyndvmlw imcvznow | GRP_32 | aw: [ticket#2016080878000153] wg: po#450561244... | English |
| 8098 | network outage, russia ru, company-russia-vpn-... | what type of outage: _x____network _____c... | uxgrdjfc kqxdjeov | GRP_8 | network outage, russia ru, company-russia-vpn-... | English |
| 8099 | emea files not processed as per schedule - che... | hi pradtheyp,\r\n\r\nwe have not received the ... | rdfjsawg zpmxgdcw | GRP_71 | emea files not processed as per schedule - che... | English |
| 8100 | purchasing mdm import manager did not work cor... | mapping was not possible anymore | rhinvtua aquyjfbs | GRP_29 | purchasing mdm import manager did not work cor... | English |
| 8101 | unable to open sales orders attachments - save... | issue 1 - after erp update on 8.8.2016 (a syst... | hpmwliog kqtnfvrl | GRP_0 | unable to open sales orders attachments - save... | English |
| 8102 | unable to send or receive email | unable to send or receive email | aqwdfvrb oiajztbq | GRP_0 | unable to send or receive email unable to sen... | English |
| 8103 | wg: [ticket#2016080878000153] wg: po#4505612440 | \r\n\r\nreceived from: tvmlrwkz.rsxftjep@gmail... | tvmlrwkz rsxftjep | GRP_32 | wg: [ticket#2016080878000153] wg: po#450561244... | German |
| 8104 | not able to access attendance_tool application... | name:aryndruh\nlanguage:\nbrowser:microsoft in... | wjbtlxry gdbqzjyw | GRP_0 | not able to access attendance_tool application... | English |
| 8105 | bios einstellung | bitte an wzs 60 (wza, m14, m12.18990) bios so ... | zxopwyak zrbfkimx | GRP_33 | bios einstellung bitte an wzs 60 (wza, m14, m1... | German |
| 8106 | networking issue at customer site | \r\n\r\nreceived from: vkzwibco.pueyvhoi@gmail... | vkzwibco pueyvhoi | GRP_19 | networking issue at customer site \r\n\r\nrece... | English |
| 8107 | call routing to german support agents | call routing to german support agents was fixe... | fdmaluyo tvecikxn | GRP_7 | call routing to german support agents call rou... | English |
| 8108 | frequent account lockouts | frequent account lockouts\ncontact no:- \nchg1... | ymepzlno eobardlm | GRP_0 | frequent account lockouts frequent account loc... | English |
| 8109 | windows account locked | windows account locked | lwuhfjsq ltanywzq | GRP_0 | windows account locked windows account locked | English |
| 8110 | abended job in job_scheduler: Job_1142 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1142 receive... | English |
| 8111 | internet explorer | \r\n\r\nreceived from: peojqgvm.qayeptuo@gmail... | peojqgvm qayeptuo | GRP_0 | internet explorer \r\n\r\nreceived from: peojq... | English |
| 8112 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | tlowkghn jcefuzit | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 8113 | abended job in job_scheduler: Job_549 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_549 received... | English |
| 8114 | abended job in job_scheduler: bkwin_search_ser... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bkwin_search_ser... | English |
| 8115 | abended job in job_scheduler: SID_50filesys | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_50filesys re... | English |
| 8116 | abended job in job_scheduler: Job_1305 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1305 receive... | English |
| 8117 | unable to login to skype | unable to login to skype | uplmtybe pdmwyoil | GRP_0 | unable to login to skype unable to login to s... | English |
| 8118 | need to upgrade the outlook | name:dehnfyru\nlanguage:\nbrowser:microsoft in... | uvjpaeli bnphqsxr | GRP_27 | need to upgrade the outlook name:dehnfyru\nlan... | English |
| 8119 | company\orshop_floor_app locked out for too ma... | multiple computers use the same log in. compan... | xdswhrif ludsxncq | GRP_0 | company\orshop_floor_app locked out for too ma... | English |
| 8120 | Job_2049e:was running longer than 30 minutes,... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | Job_2049e:was running longer than 30 minutes,... | English |
| 8121 | delete sto 5018072616 & 5018966647 | from: johthryugftyson hu \r\nsent: tuesday, au... | ovhtgsxd dcqhnrmy | GRP_18 | delete sto 5018072616 & 5018966647 from: joht... | English |
| 8122 | ticket update for pmqansex nvihmbwc | from: rakthyesh ramdntythanjesh \nsent: tuesda... | eqzibjhw ymebpoih | GRP_0 | ticket update for pmqansex nvihmbwc from: rakt... | English |
| 8123 | inquiry on etime login | inquiry on etime login | nkademwy ihsepkwz | GRP_0 | inquiry on etime login inquiry on etime login | English |
| 8124 | shop floor pc locked : coshopfloor3 | shop floor pc locked : coshopfloor3 | mljbrewk oejwkbrt | GRP_0 | shop floor pc locked : coshopfloor3 shop floor... | English |
| 8125 | symantec endpoint encryption page-unable to login | symantec endpoint encryption page-unable to login | vgtpkjhn flwsytik | GRP_0 | symantec endpoint encryption page-unable to lo... | English |
| 8126 | abended job in job_scheduler: Job_1320 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1320 receive... | English |
| 8127 | abended job in job_scheduler: bkwin_HostName_7... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: bkwin_HostName_7... | English |
| 8128 | multiple processes are showing down on HostNam... | multiple processes are showing down on HostNam... | jloygrwh acvztedi | GRP_14 | multiple processes are showing down on HostNam... | English |
| 8129 | zdis discounts do not appear | zdis discounts are not applying and should be.... | rmegscqu juksmtho | GRP_13 | zdis discounts do not appear zdis discounts ar... | English |
| 8130 | us25- dedicated hr_tool clock in for hourly em... | \n\nreceived from: wvngzrca.sfmrzdth@gmail.com... | wvngzrca sfmrzdth | GRP_0 | us25- dedicated hr_tool clock in for hourly em... | English |
| 8131 | access needed to vmsliazh ltksxmyv in us_plant. | \n\nreceived from: umzcxfah.aoshpjiu@gmail.com... | umzcxfah aoshpjiu | GRP_1 | access needed to vmsliazh ltksxmyv in us_plant... | English |
| 8132 | windows password reset | windows password reset | gyweclbt oahmgpfy | GRP_0 | windows password reset windows password reset | English |
| 8133 | user wanted to check if there are discounts on... | user wanted to check if there are discounts on... | olckhmvx pcqobjnd | GRP_0 | user wanted to check if there are discounts on... | English |
| 8134 | hr_tool e time issue | hr_tool e time issue\n\n\nname:wvngzrca sfmrzd... | wvngzrca sfmrzdth | GRP_0 | hr_tool e time issue hr_tool e time issue\n\n\... | English |
| 8135 | Job_1953d was running longer than 30 minutes k... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | Job_1953d was running longer than 30 minutes k... | English |
| 8136 | contract management employee publication_p2016... | contract management employee publication_p2016... | jgxclrzp jzeantui | GRP_9 | contract management employee publication_p2016... | English |
| 8137 | collaboration_platform is asking me to login a... | please assist with keeping my account logged in. | vfrdxtqw jfbmsenz | GRP_0 | collaboration_platform is asking me to login a... | English |
| 8138 | HostName_1178 : the status on HostName_1178.co... | HostName_1178 : the status on HostName_1178.co... | rkupnshb gsmzfojw | GRP_12 | HostName_1178 : the status on HostName_1178.co... | English |
| 8139 | xp pc in lab hooked to microscope gets a bsod ... | xp pc in lab hooked to microscope gets a bsod ... | qfgtalec mwpqfbxk | GRP_3 | xp pc in lab hooked to microscope gets a bsod ... | English |
| 8140 | the terminate action for johthryu chmielewski... | from: rlgmiuwt dfpqxbgm [mailto:system@hr_tool... | rlgmiuwt dfpqxbgm | GRP_2 | the terminate action for johthryu chmielewski... | English |
| 8141 | unable to map a printer | unable to map a printer | vfrdxtqw jfbmsenz | GRP_0 | unable to map a printer unable to map a printer | English |
| 8142 | reset password for cnljsmat.ocxjvdnz@gmail.com | reset password for cnljsmat.ocxjvdnz@gmail.com | bvwepigr ekmarvgd | GRP_0 | reset password for cnljsmat.ocxjvdnz@gmail.com... | English |
| 8143 | erp-powder interface not working | erp-powder interface not working. | yxwniljk doveqpsy | GRP_45 | erp-powder interface not working erp-powder in... | English |
| 8144 | change erp printer | please change my erp printer (hrp- hcm product... | fgsmwvcp uoxkzwes | GRP_0 | change erp printer please change my erp printe... | English |
| 8145 | unable to see crm add-in in outlook | unable to see crm add-in in outlook | bsujizqk zmlfkengineering_tool | GRP_0 | unable to see crm add-in in outlook unable to ... | English |
| 8146 | having trouble with my password accessing the ... | name:upajtkbn wzyspovl\nlanguage:\nbrowser:mic... | wrqxmfan fsizndjb | GRP_0 | having trouble with my password accessing the ... | English |
| 8147 | unable to connect to outlook. | microsoft outlook - all morning it shows eithe... | qnvjhgmc nicvbrzg | GRP_0 | unable to connect to outlook. microsoft outloo... | English |
| 8148 | outlook calendar | \r\n\r\nreceived from: opzuciql.muedfkhz@gmail... | opzuciql muedfkhz | GRP_0 | outlook calendar \r\n\r\nreceived from: opzuci... | English |
| 8149 | unable to save attachments from business_client | unable to save attachments from business_client | kgqpwvzu rkexzwlh | GRP_0 | unable to save attachments from business_clien... | English |
| 8150 | windows password reset | windows password reset | uqjbkydr bsqofdlx | GRP_0 | windows password reset windows password reset | English |
| 8151 | unable to login to one time | \nname:wvngzrca sfmrzdth\nlanguage:\nbrowser:m... | wvngzrca sfmrzdth | GRP_0 | unable to login to one time \nname:wvngzrca sf... | English |
| 8152 | vmax disk failed on df-8b-c | the monitor is the disk failed? on df-8b-c-0/0... | jyoqwxhz clhxsoqy | GRP_8 | vmax disk failed on df-8b-c the monitor is the... | English |
| 8153 | rounding concerns for mexico. please assign t... | znet should not be applied to zcnc, zcnp or ma... | rmegscqu juksmtho | GRP_13 | rounding concerns for mexico. please assign t... | English |
| 8154 | account locked out : trust relationship issue | account locked out : trust relationship issue | tbjcygrn megaypdn | GRP_0 | account locked out : trust relationship issue ... | English |
| 8155 | engineering tool system | not able to enter customer details in engineer... | obanjrhg rnafleys | GRP_0 | engineering tool system not able to enter cust... | English |
| 8156 | unable to hear any audio from skype | unable to hear any audio from skype | gsotqxfi lidunfjg | GRP_26 | unable to hear any audio from skype unable to ... | English |
| 8157 | mii is not responding:orders can not be scanne... | there was a technical error. <br> please try a... | swapdqkx cvkbwjxe | GRP_41 | mii is not responding:orders can not be scanne... | English |
| 8158 | password reset and login issues in collaborati... | password reset and login issues in collaborati... | gsyjxfur nuwoikzj | GRP_0 | password reset and login issues in collaborati... | English |
| 8159 | employee's password for etime is not working | please issue new password for etime access for... | urgianpb rwbpsvmh | GRP_0 | employee's password for etime is not working p... | English |
| 8160 | release of device | \r\n\r\nreceived from: qpixeudn.rjlziysd@gmail... | qpixeudn rjlziysd | GRP_0 | release of device \r\n\r\nreceived from: qpixe... | English |
| 8161 | unable to login to outlook and skype | unable to login to outlook and skype | klsrmzvq otsdnmzk | GRP_0 | unable to login to outlook and skype unable to... | English |
| 8162 | erp access issue | system (SID_34, SID_37, SID_39, SID_38, hrp, o... | msrxjfdz ncsaryod | GRP_2 | erp access issue system (SID_34, SID_37, SID_3... | English |
| 8163 | ess password reset request | misplaced password, ad password reset needed | gsyjxfur nuwoikzj | GRP_0 | ess password reset request misplaced password,... | English |
| 8164 | unlock account email in cell phone the user ... | hello team,\r\n\r\ncould you please unlock acc... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the user ... | English |
| 8165 | skype im not logging in | stuck at logging in.\r\npersonal certificate e... | ncuwyeib plnzhxvc | GRP_27 | skype im not logging in stuck at logging in.\r... | English |
| 8166 | issue while connecting though telecom_vendor_3... | \r\n\r\nreceived from: cgqjxtkf.soewtuvf@gmail... | cgqjxtkf soewtuvf | GRP_0 | issue while connecting though telecom_vendor_3... | English |
| 8167 | reset the password for on erp / production / hcm | locked out of erp SID_34 not set up in passwor... | wptbgchj jutpdcqf | GRP_0 | reset the password for on erp / production / ... | English |
| 8168 | reset passwords for kevguind l gineman using p... | the | nckihpba czrdksex | GRP_17 | reset passwords for kevguind l gineman using p... | English |
| 8169 | goods receipt issue | hello, on po5616641196 the po was created for ... | fonjtyhr wnclfztv | GRP_29 | goods receipt issue hello, on po5616641196 the... | English |
| 8170 | abended job in job_scheduler: Job_2021b | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_2021b receiv... | English |
| 8171 | job qeue from the engg application stopped | the job qeue processor of the engg stopped and... | dmqxwkfr olmwqzpu | GRP_58 | job qeue from the engg application stopped the... | English |
| 8172 | windows account locked out | windows account locked out | nmpworvu upgtrvnj | GRP_0 | windows account locked out windows account loc... | English |
| 8173 | my docking station is not charging my computer | i've checked all the plugs and it's still not... | xzupryaf vlbikhsm | GRP_0 | my docking station is not charging my computer... | English |
| 8174 | issues with lean tracker | issues with lean tracker | vnsmwqhb ogtpenjd | GRP_27 | issues with lean tracker issues with lean tracker | English |
| 8175 | password reset | password reset | gsyjxfur nuwoikzj | GRP_0 | password reset password reset | English |
| 8176 | unable to launch outlook after changing the pa... | unable to launch outlook after changing the pa... | sbvlxuwm yanbikrx | GRP_0 | unable to launch outlook after changing the pa... | English |
| 8177 | unlock csvlijud jzhnkclo | unlock csvlijud jzhnkclo \npc name : rrsp04479... | jrigdbox bgyluoqn | GRP_3 | unlock csvlijud jzhnkclo unlock csvlijud jzhn... | English |
| 8178 | unable to login to windows // account locked | unable to login to windows // account locked | uerghtyi erzatqpy | GRP_0 | unable to login to windows // account locked u... | English |
| 8179 | unable to log into hr_tool | i get directed to a hr_tool logon page instead... | esntuago kwxrdhuv | GRP_0 | unable to log into hr_tool i get directed to a... | English |
| 8180 | i cannot make a skype meeting, every time it e... | i cannot make a skype meeting, every time it e... | qvtlcbyg lbnjhysc | GRP_3 | i cannot make a skype meeting, every time it e... | English |
| 8181 | shagfferon called to reset password for user :... | shagfferon called to reset password for user :... | xpvluoni xeqjzofu | GRP_0 | shagfferon called to reset password for user :... | English |
| 8182 | reset the password for robhyertyj l shipping_t... | i have not used this in quite awhile and it wi... | sdvlxbfe ptnahjkw | GRP_0 | reset the password for robhyertyj l shipping_t... | English |
| 8183 | browser issue : collaboration_platform not loa... | browser issue : collaboration_platform not loa... | zxvjsipd jbzmgyvd | GRP_0 | browser issue : collaboration_platform not loa... | English |
| 8184 | erp SID_34 password reset | erp SID_34 password reset | ulmctsvi lbvrdika | GRP_0 | erp SID_34 password reset erp SID_34 password ... | English |
| 8185 | circuit outage: vogelfontein, south africa mpl... | what type of outage: _____network ___x__c... | jyoqwxhz clhxsoqy | GRP_8 | circuit outage: vogelfontein, south africa mpl... | English |
| 8186 | access to vpn : user id : wijuiidl | computer name ; lehl8516849\r\naccess to vpn | imcknxos ucyfkaxg | GRP_34 | access to vpn : user id : wijuiidl computer na... | English |
| 8187 | unable to login to skype | unable to login to skype | awpcmsey ctdiuqwe | GRP_0 | unable to login to skype unable to login to skype | English |
| 8188 | bex patch installation | bex patch installation | nqlertog bshidqox | GRP_0 | bex patch installation bex patch installation | English |
| 8189 | supply_chain_software login issue | supply_chain_software login issue | yiramjqc qtrcepsa | GRP_0 | supply_chain_software login issue supply_chai... | English |
| 8190 | ingreso a business_client | no puedo ingresar a business_client con mi con... | igfbkzne duyinzmx | GRP_0 | ingreso a business_client no puedo ingresar a ... | Spanish |
| 8191 | need replacement monitor for coatncqulao qauig... | need replacement monitor for coatncqulao qauig... | utvpkdgi oznqyvmp | GRP_3 | need replacement monitor for coatncqulao qauig... | English |
| 8192 | item numbers issue with the inwarehouse_tool f... | item numbers issue with the inwarehouse_tool f... | aofnvyzt eqiyskhm | GRP_20 | item numbers issue with the inwarehouse_tool f... | English |
| 8193 | bqdlegnp lnphmsco's password has expired. ple... | please call bqdlegnp lnphmsco at to update his... | bqdlegnp lnphmsco | GRP_0 | bqdlegnp lnphmsco's password has expired. ple... | English |
| 8194 | general enquiry | general enquiry | rbozivdq gmlhrtvp | GRP_0 | general enquiry general enquiry | English |
| 8195 | time recording is not working | \n\nEU_tool - unable to connect to server. tim... | ahlqgjwx wbsfavhg | GRP_24 | time recording is not working \n\nEU_tool - un... | English |
| 8196 | network problems (multiple applications are ru... | my home location is usa. whenever i come to u... | clgfntoe rhtmnzsk | GRP_0 | network problems (multiple applications are ru... | English |
| 8197 | oneteam sso not working | i'm unable to log in to hr_tool/oneteam throug... | kcnosyae zlpmfxgs | GRP_73 | oneteam sso not working i'm unable to log in t... | English |
| 8198 | company center does not show org 1101 after i ... | i just changed my password and now my company ... | jizkuxpg hfamjysw | GRP_0 | company center does not show org 1101 after i ... | English |
| 8199 | HostName_184- average (1 samples) disk free on... | HostName_184- disk free on /nfsbackup is now 2... | jyoqwxhz clhxsoqy | GRP_14 | HostName_184- average (1 samples) disk free on... | English |
| 8200 | install pdf-mailer \kebogxzp difnjlkp | install pdf-mailer \kebogxzp difnjlkp | kebogxzp difnjlkp | GRP_24 | install pdf-mailer \kebogxzp difnjlkp install ... | Maltese |
| 8201 | reset the password for couskjgd uzojtkmh on wi... | hi,\nplease unlock sebfghkasthian's account. (... | couskjgd uzojtkmh | GRP_0 | reset the password for couskjgd uzojtkmh on wi... | English |
| 8202 | reset passwords for couskjgd uzojtkmh using pa... | hi, \r\nplease unlock sebfghkasthian's (wiejas... | couskjgd uzojtkmh | GRP_17 | reset passwords for couskjgd uzojtkmh using pa... | English |
| 8203 | probleme mit rechner ewew8323531 \defekte fp s... | probleme mit rechner ewew8323531 \defekte fp s... | xosdfhbu gtbfkisl | GRP_24 | probleme mit rechner ewew8323531 \defekte fp s... | German |
| 8204 | requester: oqxdecus encxjoawjr: can you put u... | \r\n\r\nreceived from: sthyuraj.sektyhar@compa... | sxhqfaoe evobwgiy | GRP_4 | requester: oqxdecus encxjoawjr: can you put u... | English |
| 8205 | unable to open collaboration_platform | name:betshdy \nlanguage:\nbrowser:microsoft in... | zxvjsipd jbzmgyvd | GRP_0 | unable to open collaboration_platform name:bet... | English |
| 8206 | vip 2 - incorrect language in automated email ... | i received 2 emails (attached) for taking over... | esntuago kwxrdhuv | GRP_16 | vip 2 - incorrect language in automated email ... | English |
| 8207 | email delegation issues with nqtjsbad.jfxeoudc... | email delegation issues with nqtjsbad.jfxeoudc... | kcnosyae zlpmfxgs | GRP_26 | email delegation issues with nqtjsbad.jfxeoudc... | English |
| 8208 | urgent : need access to all roanoke drives fo... | \nreceived from: umzcxfah.aoshpjiu@gmail.com\n... | umzcxfah aoshpjiu | GRP_12 | urgent : need access to all roanoke drives fo... | English |
| 8209 | erp output screen issue. | \r\n\r\nreceived from: esaqztby.mhnbqiyc@gmail... | esaqztby mhnbqiyc | GRP_0 | erp output screen issue. \r\n\r\nreceived from... | English |
| 8210 | rds server germany not reachable for thinclien... | after reboot of the serverteam my thinclients ... | smpijawb eawkpgqf | GRP_12 | rds server germany not reachable for thinclien... | English |
| 8211 | single/sign on for hr_tool oneteam is not work... | \r\n\r\nreceived from: jegpvyrh.kasnhdrb@gmail... | jegpvyrh kasnhdrb | GRP_0 | single/sign on for hr_tool oneteam is not work... | English |
| 8212 | erp SID_34 zdsxmcwu thdjzolwronization issue | erp SID_34 zdsxmcwu thdjzolwronization issue | cubslqyt dwzhnmgy | GRP_0 | erp SID_34 zdsxmcwu thdjzolwronization issue ... | English |
| 8213 | ethics access | \r\n\r\nreceived from: jegpvyrh.kasnhdrb@gmail... | jegpvyrh kasnhdrb | GRP_23 | ethics access \r\n\r\nreceived from: jegpvyrh... | English |
| 8214 | problem with EU_tool | hello altogether\r\n\r\nwe have problems with ... | mstnjfai xcobykhl | GRP_0 | problem with EU_tool hello altogether\r\n\r\nw... | English |
| 8215 | password reset request. | password reset request. | kcqzrgef awnjdlyr | GRP_0 | password reset request. password reset request. | English |
| 8216 | problem with EU_tool | \r\n\r\nreceived from: mstnjfai.xcobykhl@gmail... | mstnjfai xcobykhl | GRP_25 | problem with EU_tool \r\n\r\nreceived from: ms... | English |
| 8217 | guest wifi access request | \n\nreceived from: wchidyuk.shqbfpuy@gmail.com... | ythucdjx mujfrsyl | GRP_0 | guest wifi access request \n\nreceived from: w... | English |
| 8218 | SID_1 access | \r\n\r\nreceived from: rgtarthi.erjgypa@compan... | xqoljzbh aydcwkxt | GRP_0 | SID_1 access \r\n\r\nreceived from: rgtarthi.e... | English |
| 8219 | open order kart issues - distributor_tool | in the distributor_tool production system, the... | vbmzgsdk jdmyazti | GRP_21 | open order kart issues - distributor_tool in t... | English |
| 8220 | mii not working | mii at usa is estorage_productly slow and erro... | omufjcxr ahypftjx | GRP_41 | mii not working mii at usa is estorage_product... | English |
| 8221 | ethics login issue | hello, \r\nwould you please support?\r\n''welc... | uarnkqps gufcjxma | GRP_0 | ethics login issue hello, \r\nwould you please... | English |
| 8222 | no boot : 7350 | no boot : 7350 | iygsxftl hysrbgad | GRP_0 | no boot : 7350 no boot : 7350 | English |
| 8223 | ticketing_tool queries | \nsummary:ticketing_tool change i have changed... | abtknpew ifcekjdb | GRP_0 | ticketing_tool queries \nsummary:ticketing_to... | English |
| 8224 | in the dob report - there is no option to subs... | the dob report\r\n#/site/certified_content/vie... | wvdxnkhf jirecvta | GRP_9 | in the dob report - there is no option to subs... | English |
| 8225 | attendance_tool password rest | \n\nreceived from: kugwsrjz.xnygwtle@gmail.com... | isuclrnw hxrtkiws | GRP_0 | attendance_tool password rest \n\nreceived fro... | English |
| 8226 | reporting_tool application sending multiple em... | hi ramdnty,\r\nas discussed, we send emails (a... | vthuzanc fqdgotvx | GRP_26 | reporting_tool application sending multiple em... | English |
| 8227 | vvdortddp | \n\nreceived from: aksthyuhath.shettythruy@com... | badnzyue nxuqmdwl | GRP_0 | vvdortddp \n\nreceived from: aksthyuhath.shett... | English |
| 8228 | audio not working | audio not working \r\ncomputer model-dell prec... | rcvyfkzo hstgdfyx | GRP_19 | audio not working audio not working \r\ncompu... | English |
| 8229 | vendor drawing access is not working - no vend... | vendor_access isn't working (external website)... | tghrloks jbgcvlmf | GRP_25 | vendor drawing access is not working - no vend... | English |
| 8230 | investment antrag mnakehrf mvunqihf - new lapt... | \r\n\r\nreceived from: jywvemun.qngschtz@gmail... | jywvemun qngschtz | GRP_28 | investment antrag mnakehrf mvunqihf - new lapt... | German |
| 8231 | abended job in job_scheduler: Job_3181 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_3181 receive... | English |
| 8232 | stepfhryhan needs access to below collaboratio... | stepfhryhan needs access to below collaboratio... | nizholae bjnqikym | GRP_0 | stepfhryhan needs access to below collaboratio... | German |
| 8233 | unable to select my course, when i select a la... | unable to select my course, when i select a la... | lmwfdnri joplxizv | GRP_23 | unable to select my course, when i select a la... | English |
| 8234 | data backup und restore \ahlqgjwx wbsfavhg | data backup und restore \ahlqgjwx wbsfavhg | ahlqgjwx wbsfavhg | GRP_24 | data backup und restore \ahlqgjwx wbsfavhg dat... | English |
| 8235 | setup new ws \aqstdryv flbnyqzc | setup new ws \aqstdryv flbnyqzc | aqstdryv flbnyqzc | GRP_24 | setup new ws \aqstdryv flbnyqzc setup new ws \... | un |
| 8236 | cannot log-in to telephony_software | hello, \r\n\r\ncannot log in to telephony_soft... | ugephfta hrbqkvij | GRP_7 | cannot log-in to telephony_software hello, \r\... | English |
| 8237 | order: 24761483 | from: rxoynvgi ntgdsehl \nsent: monday, august... | rxoynvgi ntgdsehl | GRP_6 | order: 24761483 from: rxoynvgi ntgdsehl \nsent... | English |
| 8238 | probleme mit drucker in löwe uacyltoe hxgaycz... | probleme mit drucker in löwe uacyltoe hxgaycz... | bejvhsfx dmvsclhp | GRP_24 | probleme mit drucker in löwe uacyltoe hxgaycz... | English |
| 8239 | abended job in job_scheduler: Job_501 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_501 received... | English |
| 8240 | outlook is not taking password | outlook is not taking password | nesmdkpr dcaqoxsy | GRP_0 | outlook is not taking password outlook is not ... | English |
| 8241 | abended job in job_scheduler: Job_489 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_489 received... | English |
| 8242 | telefon hörer am apparat fertigung halle c de... | einlasten bei it-plant germany | dtrvxiuq bwuqdtfo | GRP_33 | telefon hörer am apparat fertigung halle c de... | English |
| 8243 | fw: an ''ethical moment'' from the office of e... | hi\r\n\r\nthis link is not opening.\r\n\r\nfro... | qfwijzbd gmkiatjs | GRP_0 | fw: an ''ethical moment'' from the office of e... | English |
| 8244 | now acces to the internet - webside allways ... | \r\n\r\nreceived from: blktuiae.jzakfmhw@gmail... | blktuiae jzakfmhw | GRP_0 | now acces to the internet - webside allways ... | English |
| 8245 | link to ethics ethical moment does not work. | i am not able to open the ethical moment link ... | dmqxwkfr olmwqzpu | GRP_0 | link to ethics ethical moment does not work. i... | English |
| 8246 | upgrade from ms office 2010 64bit to office 20... | for further using of the software cutview it i... | pblitjvq yqpjcfgx | GRP_0 | upgrade from ms office 2010 64bit to office 20... | English |
| 8247 | computer network connection lost | computer network connection lost | pjzhkbus mpcyxvdj | GRP_31 | computer network connection lost computer net... | English |
| 8248 | windows account locked and reset password | windows account locked and reset password | nfckwprm iykptjna | GRP_0 | windows account locked and reset password win... | English |
| 8249 | system monitor resolution problem | not able to set resolution 1920 x 1080 | utgszjrf pacfvxzk | GRP_19 | system monitor resolution problem not able to ... | English |
| 8250 | windows need to be repair | windows need to be repair | abiuclvj brziktno | GRP_31 | windows need to be repair windows need to be r... | English |
| 8251 | unable to open net weaver | unable to open net weaver | qxmujhwg rsgqidxw | GRP_0 | unable to open net weaver unable to open net ... | English |
| 8252 | abended job in job_scheduler: Job_2584 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_2584 receive... | English |
| 8253 | the calendar on my iphone is not showing any m... | name:srinfhyath\nlanguage:\nbrowser:microsoft ... | kflqpite gbeoqsnc | GRP_0 | the calendar on my iphone is not showing any m... | English |
| 8254 | erp SID_1 account locked | erp SID_1 account locked | qzvireok yzuplcgw | GRP_0 | erp SID_1 account locked erp SID_1 account lo... | English |
| 8255 | abended job in job_scheduler: Job_481 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: Job_481 received... | English |
| 8256 | reset my password | my SID_51 system password has been locked due ... | jmoqelbc fbzsyjne | GRP_2 | reset my password my SID_51 system password ha... | English |
| 8257 | bobj repository issue - pls see the attachment... | bobj repository issue - pls see the attachment... | cubdsrml znewqgop | GRP_14 | bobj repository issue - pls see the attachment... | English |
| 8258 | received 6500071831 | \n\nreceived from: wqzarvhx.hfsojckw@gmail.com... | wqzarvhx hfsojckw | GRP_15 | received 6500071831 \n\nreceived from: wqzarvh... | English |
| 8259 | account locked in erp SID_34 | account locked in erp SID_34 | efdhrlwv aoxtugzr | GRP_0 | account locked in erp SID_34 account locked in... | English |
| 8260 | erp SID_34 account lokced | erp SID_34 account lokced | dnprzuox fwiospxy | GRP_0 | erp SID_34 account lokced erp SID_34 account ... | English |
| 8261 | not able to login to ethics | not able to login to ethics | juelbpyf ozvgnuwb | GRP_19 | not able to login to ethics not able to login ... | English |
| 8262 | laptop is over heating, left side usb and aud... | laptop is over heating, left side usb and aud... | cubdsrml znewqgop | GRP_19 | laptop is over heating, left side usb and aud... | English |
| 8263 | the terminate action for kgarnzdo vkrqojyt has... | from: noscwdpm akiowsmp [mailto:system@hr_tool... | noscwdpm akiowsmp | GRP_2 | the terminate action for kgarnzdo vkrqojyt has... | English |
| 8264 | can't login to skype ,indicate certificate exp... | skype for business software can't be used | mqbxwpfn uclrqfxa | GRP_0 | can't login to skype ,indicate certificate exp... | English |
| 8265 | unable to login to engineering tool | unable to login to engineering tool | uplmtybe pdmwyoil | GRP_0 | unable to login to engineering tool unable to... | English |
| 8266 | erpæ— æ³•è¿›è¡Œé‡‡è´ï¼ˆè½¬ç»™è´ºæ£å¹³ï¼‰ | è¿›è¡Œé‡‡è´æ—¶æ˜¾ç¤º"找ä¸åˆ°å‘˜å·¥111115483... | kyagjxdh dmtjpbnz | GRP_30 | erpæ— æ³•è¿›è¡Œé‡‡è´ï¼ˆè½¬ç»™è´ºæ£å¹³ï¼‰ è¿›... | English |
| 8267 | windows account locked | windows account locked | ymepzlno eobardlm | GRP_0 | windows account locked windows account locked | English |
| 8268 | windows account locked | windows account locked | khyzsgnv aletvocx | GRP_0 | windows account locked windows account locked | English |
| 8269 | windows log in password reset | from: nkiopevt gufwhdky [mailto:nkiopevt.gufwh... | nkiopevt gufwhdky | GRP_0 | windows log in password reset from: nkiopevt g... | English |
| 8270 | å¯†ç æ›´æ”¹åŽï¼Œoutlookæ— æ³•ç™»é™† | å¯†ç æ›´æ”¹åŽï¼Œoutlookæ— æ³•ç™»é™† | yamndlrz nzcvdmtr | GRP_30 | å¯†ç æ›´æ”¹åŽï¼Œoutlookæ— æ³•ç™»é™† å¯†ç æ›... | English |
| 8271 | please reset my erp password. | please reset my erp password. | nkiopevt gufwhdky | GRP_0 | please reset my erp password. please reset my ... | English |
| 8272 | login issue | login issue\r\n-verified user details.(employe... | ckgwemna cgnziqxj | GRP_0 | login issue login issue\r\n-verified user deta... | English |
| 8273 | network outage : south amerirtca(argentina) si... | what type of outage: ____x_network _____c... | vbwszcqn nlbqsuyv | GRP_8 | network outage : south amerirtca(argentina) si... | English |
| 8274 | abended job in job_scheduler: Job_2114 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_2114 receive... | English |
| 8275 | network outage: usa site is hard down since 05... | what type of outage: _x____network _____c... | vbwszcqn nlbqsuyv | GRP_8 | network outage: usa site is hard down since 05... | English |
| 8276 | abended job in job_scheduler: Job_1640 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1640 receive... | English |
| 8277 | abended job in job_scheduler: snp_heu_5_regen | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: snp_heu_5_regen ... | English |
| 8278 | abended job in job_scheduler: bk_hana_SID_62_e... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bk_hana_SID_62_e... | English |
| 8279 | lhqsm673 ( kashfyujqti jdcbiezx1 ) disk free o... | lhqsm673 ( kashfyujqti jdcbiezx1 ) disk free o... | jyoqwxhz clhxsoqy | GRP_12 | lhqsm673 ( kashfyujqti jdcbiezx1 ) disk free o... | English |
| 8280 | abended job in job_scheduler: bwhrattr | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: bwhrattr receive... | English |
| 8281 | HostName_1238 ( south_amerirtca, br -plm dsc f... | HostName_1238 ( south_amerirtca, br -plm dsc f... | jyoqwxhz clhxsoqy | GRP_14 | HostName_1238 ( south_amerirtca, br -plm dsc f... | English |
| 8282 | HostName_1218(usa, va-plm web-file cache - pro... | HostName_1218(usa, va-plm web-file cache - pro... | dkmcfreg anwmfvlg | GRP_14 | HostName_1218(usa, va-plm web-file cache - pro... | English |
| 8283 | HostName_986:(plm conversion- production) alw... | HostName_986:(plm conversion- production) alw... | jyoqwxhz clhxsoqy | GRP_14 | HostName_986:(plm conversion- production) alw... | English |
| 8284 | abended job in job_scheduler: snp_heu_1_regen | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: snp_heu_1_regen ... | English |
| 8285 | HostName_1042(bobj-ds-app & web - prod) : al_e... | HostName_1042(bobj-ds-app & web - prod) : al_e... | dkmcfreg anwmfvlg | GRP_14 | HostName_1042(bobj-ds-app & web - prod) : al_e... | English |
| 8286 | vip:2 log in proplems vip | \r\n\r\nreceived from: oxrnpuys.oxizkwmq@gmail... | oxrnpuys oxizkwmq | GRP_0 | vip:2 log in proplems vip \r\n\r\nreceived fro... | English |
| 8287 | bw jobs are failing because of the server issue | bw jobs are failing because of the server issu... | froajhdb ijetmkuc | GRP_14 | bw jobs are failing because of the server issu... | English |
| 8288 | abended job in job_scheduler: Job_1305 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1305 receive... | English |
| 8289 | reboot tax_interface dev servers HostName_972 ... | reboot tax_interface dev servers HostName_972 ... | uvrbhlnt bjrmalzi | GRP_8 | reboot tax_interface dev servers HostName_972 ... | English |
| 8290 | abended job in job_scheduler: Job_1315 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1315 receive... | English |
| 8291 | abended job in job_scheduler: bk_hana_SID_22_e... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bk_hana_SID_22_e... | English |
| 8292 | abended job in job_scheduler: Job_1383 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1383 receive... | English |
| 8293 | abended job in job_scheduler: Job_1142 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1142 receive... | English |
| 8294 | abend batch SID_51stat | job name: SID_51stat. | uvrbhlnt bjrmalzi | GRP_47 | abend batch SID_51stat job name: SID_51stat. | English |
| 8295 | abended job in job_scheduler: SID_51_start_han... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: SID_51_start_han... | English |
| 8296 | abended job in job_scheduler: SID_43cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_43cold recei... | English |
| 8297 | recall: re:chg1144575 - approve | \r\n\r\nreceived from: vkezwolt.fgnqzeai@gmail... | vkezwolt fgnqzeai | GRP_25 | recall: re:chg1144575 - approve \r\n\r\nreceiv... | English |
| 8298 | abended job in job_scheduler: SID_51start | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_47 | abended job in job_scheduler: SID_51start rece... | English |
| 8299 | abended job in job_scheduler: SID_46cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_46cold recei... | English |
| 8300 | erp SID_34 is not available | i connected through vpn to look up information... | naecuhxz hdrqvume | GRP_0 | erp SID_34 is not available i connected throug... | English |
| 8301 | abended job in job_scheduler: SID_47cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_47cold recei... | English |
| 8302 | abended job in job_scheduler: SID_27hot | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_27hot receiv... | English |
| 8303 | abended job in job_scheduler: SID_51cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_51cold recei... | English |
| 8304 | abended job in job_scheduler: SID_79cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_5 | abended job in job_scheduler: SID_79cold recei... | English |
| 8305 | abended job in job_scheduler: SID_35cold | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: SID_35cold recei... | English |
| 8306 | abended job in job_scheduler: Job_3032 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_3032 receive... | English |
| 8307 | abended job in job_scheduler: SID_51stop | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_14 | abended job in job_scheduler: SID_51stop recei... | English |
| 8308 | abended job in job_scheduler: Job_1665 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1665 receive... | English |
| 8309 | abended job in job_scheduler: SID_51_stop_hana... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_14 | abended job in job_scheduler: SID_51_stop_hana... | English |
| 8310 | abended job in job_scheduler: Job_1428 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_1428 receive... | English |
| 8311 | abended job in job_scheduler: Job_2078 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: Job_2078 receive... | English |
| 8312 | erp is locked out need to unlock it | erp is locked out need to unlock it | frbxjdti lhkofcvs | GRP_0 | erp is locked out need to unlock it erp is loc... | English |
| 8313 | a recently created variable fails to get opene... | a recently created variable fails to get opene... | nqlertog bshidqox | GRP_19 | a recently created variable fails to get opene... | English |
| 8314 | vmax disk failed?on df-6a-d-0 is failed | reporting_tool alert:the monitor is the disk f... | oldrctiu bxurpsyi | GRP_8 | vmax disk failed?on df-6a-d-0 is failed report... | English |
| 8315 | abended job in job_scheduler: bkwin_HostName_7... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bkwin_HostName_7... | English |
| 8316 | network outage: sao pollaurido-mercedes benz p... | what type of outage: __x___network _____c... | dkmcfreg anwmfvlg | GRP_8 | network outage: sao pollaurido-mercedes benz p... | English |
| 8317 | abended job in job_scheduler: apo_cif_pds5_am | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: apo_cif_pds5_am ... | English |
| 8318 | abended job in job_scheduler: apo_cif_pds5_eu | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_6 | abended job in job_scheduler: apo_cif_pds5_eu ... | English |
| 8319 | abended job in job_scheduler: Job_1319 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1319 receive... | English |
| 8320 | issue with downloading mail | \r\n\r\nreceived from: dwujlnhs.ecxvrpyl@gmail... | dwujlnhs ecxvrpyl | GRP_0 | issue with downloading mail \r\n\r\nreceived f... | English |
| 8321 | abended job in job_scheduler: Job_1141 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1141 receive... | English |
| 8322 | designation change required in outlook. | \r\n-------- original message --------\r\nfrom... | bvlcarfe aztlkeif | GRP_2 | designation change required in outlook. \r\n--... | English |
| 8323 | HostName_111 : average disk free on e:\ is now... | noticed the alarm in reporting_tool .\r\nwhich... | uxgrdjfc kqxdjeov | GRP_8 | HostName_111 : average disk free on e:\ is now... | English |
| 8324 | abended job in job_scheduler: bk_hana_SID_62_e... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bk_hana_SID_62_e... | English |
| 8325 | inquiry on transfer of contacts from phone to ... | inquiry on transfer of contacts from phone to ... | kuqmoaht uwsflbmo | GRP_0 | inquiry on transfer of contacts from phone to ... | English |
| 8326 | erp password reset | erp password reset | buehfyzp ygotimeu | GRP_0 | erp password reset erp password reset | English |
| 8327 | erp crm password reset | erp crm password reset | wrqxmfan fsizndjb | GRP_0 | erp crm password reset erp crm password reset | English |
| 8328 | need password reset | need password reset | wvrgfdey ybfrlkvo | GRP_0 | need password reset need password reset | English |
| 8329 | kirty india-two switches are down at 8:57 pm e... | kirty india-two switches are down at 8:57 pm ... | rkupnshb gsmzfojw | GRP_8 | kirty india-two switches are down at 8:57 pm e... | English |
| 8330 | inquiry about lotus notes | inquiry about lotus notes | grbkswuj outkgeya | GRP_0 | inquiry about lotus notes inquiry about lotus ... | English |
| 8331 | network outage : company-ap-chn-apac-company-2... | apac : company-ap-chn-apac-company-2960-access... | rkupnshb gsmzfojw | GRP_8 | network outage : company-ap-chn-apac-company-2... | English |
| 8332 | apac-: robot HostName_17 is inactive | apac: - robot HostName_17 is inactive | rkupnshb gsmzfojw | GRP_8 | apac-: robot HostName_17 is inactive apac: - r... | English |
| 8333 | password change | \r\n\r\nreceived from: orjcgtyz.worylufs@gmail... | orjcgtyz worylufs | GRP_0 | password change \r\n\r\nreceived from: orjcgty... | English |
| 8334 | reset passwords for xuqvaobxuy ntqkuocz using ... | change to new password: alabama4$ | kilrghwc ykjrbivs | GRP_17 | reset passwords for xuqvaobxuy ntqkuocz using ... | English |
| 8335 | update on inplant_848069 | update on inplant_848069 | rbozivdq gmlhrtvp | GRP_0 | update on inplant_848069 update on inplant_848069 | English |
| 8336 | hello. please see the highlighted field below... | from: rushethryli h jacfgtykson [mailto:ckflmq... | ckflmqoj fojkrlmw | GRP_29 | hello. please see the highlighted field below... | English |
| 8337 | unable to connect to wireless | unable to connect to wireless | olzsuean sojwhbrv | GRP_0 | unable to connect to wireless unable to connec... | English |
| 8338 | can you look and see why this received on line... | from: efgoawct vwniefok \r\nsent: saturday, au... | efgoawct vwniefok | GRP_18 | can you look and see why this received on line... | English |
| 8339 | unlock account email in cell phone the users | hello team,\n\ncould you please unlock account... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the users... | English |
| 8340 | HostName_1015: average (4 samples) disk free o... | HostName_1015: average (4 samples) disk free o... | rkupnshb gsmzfojw | GRP_12 | HostName_1015: average (4 samples) disk free o... | English |
| 8341 | help with mss worklist since manager left company | from: qekdgaim wagshrzl \r\nsent: saturday, au... | qekdgaim wagshrzl | GRP_52 | help with mss worklist since manager left comp... | English |
| 8342 | folder access \\HostName_29\kt-transition\infr... | provide access to hnynhsth jsuyhwssad (user id... | bxspwfyo vzystwor | GRP_12 | folder access \\HostName_29\kt-transition\infr... | English |
| 8343 | unable to start dell 7350 | unable to start dell 7350 // stuck on welcome ... | jmxrabzy dpyvjcxr | GRP_0 | unable to start dell 7350 unable to start dell... | English |
| 8344 | erp SID_37 bex password | erp SID_37 bex password | fybwjzhx ojgrpafb | GRP_0 | erp SID_37 bex password erp SID_37 bex password | English |
| 8345 | update contact number 330-328-8431 in ad | update contact number 330 in ad | wszbxlpu dsujiozp | GRP_34 | update contact number 330-328-8431 in ad updat... | English |
| 8346 | crm configuration issue | crm configuration issue | awpcmsey ctdiuqwe | GRP_0 | crm configuration issue crm configuration issue | English |
| 8347 | blank call // loud noise | blank call // loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call // loud noise blank call // loud noise | English |
| 8348 | reset passwords for jrigdbox bgyluoqn using pa... | please reset erp password for beahleb...... | dpuifqeo eglwsfkn | GRP_17 | reset passwords for jrigdbox bgyluoqn using pa... | English |
| 8349 | access SID_1 system -erp machine service tag g... | SID_1 model is not working in machine service ... | jaeuqbvt orlhenfj | GRP_0 | access SID_1 system -erp machine service tag g... | English |
| 8350 | updated passwords and email on mobile device | updated passwords and email on mobile device | xpugzdvk xiawvmfp | GRP_0 | updated passwords and email on mobile device ... | English |
| 8351 | password_management_tool password manager pass... | password_management_tool password manager pass... | xpugzdvk xiawvmfp | GRP_0 | password_management_tool password manager pass... | English |
| 8352 | bex report | \r\n\r\nreceived from: nealxjbc.owjduxai@gmail... | nealxjbc owjduxai | GRP_0 | bex report \r\n\r\nreceived from: nealxjbc.owj... | English |
| 8353 | unable to login to ethics | unable to login to ethics | vafjkslx ujancvlm | GRP_23 | unable to login to ethics unable to login to e... | English |
| 8354 | expense account will not post | my cost center changed on 7/1/2016 from ltm013... | clgfntoe rhtmnzsk | GRP_10 | expense account will not post my cost center c... | English |
| 8355 | access to engineering tool | name:gncpezhx hopqcvza\nlanguage:\nbrowser:mic... | uwiqchfp hnsukjma | GRP_0 | access to engineering tool name:gncpezhx hopqc... | English |
| 8356 | abended job in job_scheduler: Job_3194 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_10 | abended job in job_scheduler: Job_3194 receive... | English |
| 8357 | screensaver of company center | screensaver of company center | rvgykdzc defzmail | GRP_0 | screensaver of company center screensaver of c... | English |
| 8358 | abended job in job_scheduler: Job_1390 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1390 receive... | English |
| 8359 | company screen saver was changed to company sc... | company screen saver was changed to company sc... | zdnqowag cdtyonhw | GRP_0 | company screen saver was changed to company sc... | English |
| 8360 | infoblox at chicago office, 10.20.198.9 has st... | it is also beeping and the led is flashing. | zcdirjeq azokfsdi | GRP_4 | infoblox at chicago office, 10.20.198.9 has st... | English |
| 8361 | vitalyst icon to desktop | hello helpdesk, \r\n\r\ncan you help myhzrtsi ... | ugephfta hrbqkvij | GRP_0 | vitalyst icon to desktop hello helpdesk, \r\n\... | English |
| 8362 | outlook keeps prompting for password | \n\noutlook keeps prompting for password | xjzcbgnp vfkwscao | GRP_0 | outlook keeps prompting for password \n\noutlo... | English |
| 8363 | unable to login to collaboration_platform | unable to login to collaboration_platform | kzeqbica kzcjeiyd | GRP_0 | unable to login to collaboration_platform unab... | English |
| 8364 | need to know if 54.87.86.150 is able to send s... | \r\n\r\nreceived from: mfyivqes.cpihaxbs@gmail... | mfyivqes cpihaxbs | GRP_26 | need to know if 54.87.86.150 is able to send s... | English |
| 8365 | unlock account email in cell phone the user ... | hello team,\n\ncould you please unlock account... | qasdhyzm yuglsrwx | GRP_0 | unlock account email in cell phone the user ... | English |
| 8366 | blank call // loud noise | blank call // loud noise | rbozivdq gmlhrtvp | GRP_0 | blank call // loud noise blank call // loud n... | English |
| 8367 | account locked | account locked | xpugzdvk xiawvmfp | GRP_0 | account locked account locked | English |
| 8368 | update of ae to bw and hana | wesley tomlin <xvmjocfn.bqxcdfiz@gmail.com>; w... | sholvcmf bjtpomrl | GRP_9 | update of ae to bw and hana wesley tomlin <xvm... | English |
| 8369 | update of ae to bw and hana | \nmys, ptmjvysi vkrepcybwa - please confirm to... | sholvcmf bjtpomrl | GRP_9 | update of ae to bw and hana \nmys, ptmjvysi vk... | English |
| 8370 | update of ae to bw and hana | wiksufty, jimdghty l manager – so i believe ... | sholvcmf bjtpomrl | GRP_9 | update of ae to bw and hana wiksufty, jimdght... | English |
| 8371 | request to reset microsoft online services pas... | from: microsoft on behalf of company inc. [mai... | kzeqbica kzcjeiyd | GRP_0 | request to reset microsoft online services pas... | English |
| 8372 | xwlcqfsr lbcqfnie not able to open purchasing. | xwlcqfsr lbcqfnie - xwlcqfsr.lbcqfnie@gmail.co... | xwlcqfsr lbcqfnie | GRP_0 | xwlcqfsr lbcqfnie not able to open purchasing.... | English |
| 8373 | locked out on the caas application | locked out on the caas application | ethwnzfb roqytnjk | GRP_7 | locked out on the caas application locked out ... | English |
| 8374 | insert option not wrking in excel | insert option not working in excel. | sabufdcz rbkvlhpo | GRP_3 | insert option not wrking in excel insert optio... | English |
| 8375 | vlinspectkiosk2 qlhmawgi sgwipoxn locked | vlinspectkiosk2 qlhmawgi sgwipoxn locked | pmqansex nvihmbwc | GRP_0 | vlinspectkiosk2 qlhmawgi sgwipoxn locked vlins... | English |
| 8376 | cant access to network drive | cant access to network drive | gbwviklo ukwijqtm | GRP_0 | cant access to network drive cant access to ne... | English |
| 8377 | please turn off eligibility for ethics for use... | please turn off eligibility for ethics for use... | crkdjbot qiztrxne | GRP_23 | please turn off eligibility for ethics for use... | English |
| 8378 | ecc qa - peer certificate rejected by chainver... | just found out that the eccqa certificate is n... | tskwevno sjhpoakl | GRP_14 | ecc qa - peer certificate rejected by chainver... | English |
| 8379 | please change email address of user gncpezhx h... | please change email address of user gncpezhx h... | crkdjbot qiztrxne | GRP_2 | please change email address of user gncpezhx h... | English |
| 8380 | abended job in job_scheduler: bk_hana_SID_62_o... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bk_hana_SID_62_o... | English |
| 8381 | ethics issue | inc1538003 : please turn off eligibility for e... | crkdjbot qiztrxne | GRP_0 | ethics issue inc1538003 : please turn off eli... | English |
| 8382 | mdm tool not working via citrix system | hello team, \r\ncould you please support with ... | nlrfzxsd ecibvgxr | GRP_12 | mdm tool not working via citrix system hello t... | English |
| 8383 | benefits issue | benefits issue | bmhrsxlf ukatbwyi | GRP_0 | benefits issue benefits issue | English |
| 8384 | unable to login to skype - certificate error | unable to login to skype - certificate error | aetvprsf ewmcrqja | GRP_0 | unable to login to skype - certificate error u... | English |
| 8385 | xerox copier prtqx7302 will not scan to email. | xerox copier prtqx7302 will not scan to email. | tpqhevdg zluijfwv | GRP_3 | xerox copier prtqx7302 will not scan to email.... | English |
| 8386 | ticket update on inplant_847905 | ticket update on inplant_847905 | fumkcsji sarmtlhy | GRP_0 | ticket update on inplant_847905 ticket update ... | English |
| 8387 | ticket (ticket_no1538972) update to anftgup nf... | ticket (ticket_no1538972) update to anftgup nf... | fumkcsji sarmtlhy | GRP_72 | ticket (ticket_no1538972) update to anftgup nf... | English |
| 8388 | outlook issue : crm giving error message. | outlook issue : crm giving error message. | oqzgvkrh jiylqwtc | GRP_0 | outlook issue : crm giving error message. outl... | English |
| 8389 | my outlook will not open. it is stuck with a ... | my outlook will not open. it is stuck with a ... | zxvjsipd jbzmgyvd | GRP_0 | my outlook will not open. it is stuck with a ... | English |
| 8390 | mobile broad band issue : 7350 | mobile broad band issue : 7350 | oqzgvkrh jiylqwtc | GRP_0 | mobile broad band issue : 7350 mobile broad b... | English |
| 8391 | ap 'usa-training-room' disassociated from cont... | \r\n\r\nreceived from: sthyuraj.sektyhar@compa... | sxhqfaoe evobwgiy | GRP_4 | ap 'usa-training-room' disassociated from cont... | English |
| 8392 | reset the password for nvawmlch ubyjolnc on er... | please reset my password. i did find out why i... | nvawmlch ubyjolnc | GRP_0 | reset the password for nvawmlch ubyjolnc on er... | English |
| 8393 | password change | \r\n\r\nreceived from: rvdwyapu.fubjamlr@gmail... | rvdwyapu fubjamlr | GRP_0 | password change \r\n\r\nreceived from: rvdwyap... | English |
| 8394 | spoof email issue | from: ugyothfz ugrmkdhx \nsent: friday, august... | hqbxstoy mdjftxli | GRP_2 | spoof email issue from: ugyothfz ugrmkdhx \nse... | English |
| 8395 | server HostName_973 is not responding | we are attempting to login into our tax_interf... | cgqfdotb wtefjknd | GRP_14 | server HostName_973 is not responding we are a... | English |
| 8396 | formatar micro | formatar micro | zuyimtsf qjtimdsp | GRP_62 | formatar micro formatar micro | English |
| 8397 | security error in reisekosten abrechnungs prog... | security error in reisekosten abrechnungs prog... | sjxhcyrq iupxtjcf | GRP_0 | security error in reisekosten abrechnungs prog... | English |
| 8398 | folder access | \r\n\r\nreceived from: pjxclyhs.fcniljtu@gmail... | pjxclyhs fcniljtu | GRP_34 | folder access \r\n\r\nreceived from: pjxclyhs.... | English |
| 8399 | supply_chain_software | \r\n\r\nreceived from: yiramdntyjqc.qtrcepsa@g... | yiramjqc qtrcepsa | GRP_0 | supply_chain_software \r\n\r\nreceived from: y... | English |
| 8400 | HostName_1132:memory usage is now 98% | internal error: unable to find any processes.\... | oldrctiu bxurpsyi | GRP_12 | HostName_1132:memory usage is now 98% internal... | English |
| 8401 | company screensaver | company screensaver | eagvusbr nguqityl | GRP_0 | company screensaver company screensaver | English |
| 8402 | unable to unlock user accounts in password_man... | password_management_tool problem - look at the... | hbmwlprq ilfvyodx | GRP_2 | unable to unlock user accounts in password_man... | English |
| 8403 | welcome screen in the germany lobby is not wor... | welcome screen in the germany lobby is not wor... | hyobjnic pmvbwqfe | GRP_28 | welcome screen in the germany lobby is not wor... | English |
| 8404 | skype | \r\n\r\nreceived from: lpoebzsc.grknswyo@gmail... | lpoebzsc grknswyo | GRP_0 | skype \r\n\r\nreceived from: lpoebzsc.grknswyo... | English |
| 8405 | unable to launch outlook | unable to launch outlook | wjtzrmqc ikqpbflg | GRP_0 | unable to launch outlook unable to launch outlook | English |
| 8406 | ms crm dynamics for outlook : | ms crm dynamics for outlook : \r\nerror : an e... | wsczgfal hjfklsdg | GRP_40 | ms crm dynamics for outlook : ms crm dynamics... | English |
| 8407 | i am a new employee and don't have access to h... | x5314 welcome to the company business ethics ... | oqvwgnkc gkjylpzx | GRP_2 | i am a new employee and don't have access to h... | English |
| 8408 | ticket update on ticket_no0427861 | ticket update on ticket_no0427861 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0427861 ticket updat... | English |
| 8409 | supply_chain_software password reset | supply_chain_software password reset | qftpazns fxpnytmk | GRP_0 | supply_chain_software password reset supply_c... | English |
| 8410 | chat disconnected | chat disconnected | fumkcsji sarmtlhy | GRP_0 | chat disconnected chat disconnected | English |
| 8411 | password reset for supply_chain_software | password reset for supply_chain_software\nuser... | xeucniqa dwpsevof | GRP_0 | password reset for supply_chain_software passw... | English |
| 8412 | supply_chain_software login | \n\nreceived from: ryafbthn.mijhmiles@company.... | gbfdksqi whjtkilf | GRP_0 | supply_chain_software login \n\nreceived from:... | English |
| 8413 | pobleme mit we_combi \jionmpsf wnkpzcmv | pobleme mit we_combi \jionmpsf wnkpzcmv | jionmpsf wnkpzcmv | GRP_24 | pobleme mit we_combi \jionmpsf wnkpzcmv poblem... | English |
| 8414 | langsamer rechner \überprüfung \niptbwdq cse... | langsamer rechner \überprüfung \niptbwdq cse... | niptbwdq csenjruz | GRP_24 | langsamer rechner \überprüfung \niptbwdq cse... | German |
| 8415 | attendance_tool is not loading in internet exp... | attendance_tool is not loading in internet exp... | xjzcbgnp vfkwscao | GRP_19 | attendance_tool is not loading in internet exp... | English |
| 8416 | setup new ws \kebogxzp difnjlkp | setup new ws \kebogxzp difnjlkp | kebogxzp difnjlkp | GRP_24 | setup new ws \kebogxzp difnjlkp setup new ws ... | un |
| 8417 | bluetooth keybankrd defekt \dardabthyr | bluetooth keybankrd defekt \dardabthyr | sfwdqlzx sldczfjt | GRP_24 | bluetooth keybankrd defekt \dardabthyr bluetoo... | English |
| 8418 | erp login | \r\n\r\nreceived from: udetjzmn.ayueswcm@gmail... | udetjzmn ayueswcm | GRP_0 | erp login \r\n\r\nreceived from: udetjzmn.ayue... | English |
| 8419 | probleme mit bildschirmschoner \ we91 \jionmps... | probleme mit bildschirmschoner \ we91 \jionmps... | jionmpsf wnkpzcmv | GRP_24 | probleme mit bildschirmschoner \ we91 \jionmps... | German |
| 8420 | mobiltelefon defekt | mobiltelefon gigaset m2 professional mit der d... | ptvdxwla tlevwmzo | GRP_33 | mobiltelefon defekt mobiltelefon gigaset m2 pr... | German |
| 8421 | scm_software | \n\nreceived from: oetlgbfw.bsctrnwp@gmail.com... | oetlgbfw bsctrnwp | GRP_0 | scm_software \n\nreceived from: oetlgbfw.bsct... | English |
| 8422 | driver update | \r\n\r\nreceived from: kbdljsxf.kcmqtjgf@gmail... | kbdljsxf kcmqtjgf | GRP_19 | driver update \r\n\r\nreceived from: kbdljsxf.... | English |
| 8423 | erp business objects analysis for excel - erro... | \r\nsummary:i need acces to run bex reports sh... | vsbtygin oufhtbas | GRP_9 | erp business objects analysis for excel - erro... | English |
| 8424 | windows account lockout | windows account lockout | hvjmxkcp pvzlgeyw | GRP_0 | windows account lockout windows account lockout | English |
| 8425 | ich kann mein erp passwort nicht zurück setzten. | ich weiß mein erp passwort nicht mehr und hab... | wfbkucds qaxhbois | GRP_0 | ich kann mein erp passwort nicht zurück setzt... | German |
| 8426 | vmware tools are not running on the server Hos... | vmware tools are not running on the server Hos... | dkmcfreg anwmfvlg | GRP_12 | vmware tools are not running on the server Hos... | English |
| 8427 | new employee not able to login to system vvrtg... | user id : vvrtgwildj\nname : johghajknnes wil... | wczrtsja crwioekx | GRP_0 | new employee not able to login to system vvrtg... | English |
| 8428 | lhqsm518(fim production): miiserver.exe: wrong... | lhqsm518(fim production): miiserver.exe: wrong... | dkmcfreg anwmfvlg | GRP_12 | lhqsm518(fim production): miiserver.exe: wrong... | English |
| 8429 | new email problem | new email problem | ythucdjx mujfrsyl | GRP_19 | new email problem new email problem | English |
| 8430 | zlxcsqdg ckpojwir cannot see all his customer ... | m. wilfert does not find three customers that ... | zlxcsqdg ckpojwir | GRP_22 | zlxcsqdg ckpojwir cannot see all his customer ... | English |
| 8431 | laptop key bankrd not working | \r\n\r\nreceived from: ivohcdpw.ixcanwbm@gmail... | ivohcdpw ixcanwbm | GRP_19 | laptop key bankrd not working \r\n\r\nreceived... | English |
| 8432 | abended job in job_scheduler: Job_593 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_593 received... | English |
| 8433 | telephony_software - status update | telephony_software - automated status update... | atlwdyej vtlhzbix | GRP_7 | telephony_software - status update telephony... | English |
| 8434 | distributor_tool not laoding | distributor_tool not loading | dypabsjm nuzvhjik | GRP_0 | distributor_tool not laoding distributor_tool... | English |
| 8435 | abended job in job_scheduler: Job_467 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_467 received... | English |
| 8436 | bls (beschichtungsleitstand) germany workflow ... | error message: "laufzeitfehler '94': ungültig... | xsjqhdgp ymstzudl | GRP_25 | bls (beschichtungsleitstand) germany workflow ... | English |
| 8437 | erp crm(SID_39 web) sold-to accounts is saved ... | sold-to account (81926490) is extended to null... | rcbdyslq zuspjbtw | GRP_15 | erp crm(SID_39 web) sold-to accounts is saved ... | English |
| 8438 | zmcp is not working for plant_33 personnel. ... | qwsjptlo hnlasbed\n\nerp\nSID_34\n\n"printed" ... | goaxzsql qpjnbgsa | GRP_20 | zmcp is not working for plant_33 personnel. ... | English |
| 8439 | der drucker für die ups-lapels druckt nicht r... | der drucker steht am platz von wckrxovs aunsgzmd | kiqrvwat gwkpxzyt | GRP_33 | der drucker für die ups-lapels druckt nicht r... | German |
| 8440 | dock station | dock station is not working | ndsyovil pymzvdqa | GRP_19 | dock station dock station is not working | English |
| 8441 | password reset request through password_manage... | password reset request through password_manage... | dypabsjm nuzvhjik | GRP_0 | password reset request through password_manage... | English |
| 8442 | abended job in job_scheduler: Job_481 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_481 received... | English |
| 8443 | cursor moving on its own while typing. | i got the new laptop recently and cursor jumps... | qxpytolu smagdipr | GRP_0 | cursor moving on its own while typing. i got t... | English |
| 8444 | unable to login the impact award login screen. | i am unable to login the url: | qxpytolu smagdipr | GRP_0 | unable to login the impact award login screen.... | English |
| 8445 | turn off telephony_software for turkey between... | turn off telephony_software for turkey between... | lhycpqra fdhyxqrw | GRP_7 | turn off telephony_software for turkey between... | English |
| 8446 | configair server in production not responding ... | config air server runs into 500 internal serve... | iavozegx jpcudyfi | GRP_14 | configair server in production not responding ... | English |
| 8447 | reset the password for obvyknzx gzvjtish on er... | please reset my erp password SID_34 | obvyknzx gzvjtish | GRP_0 | reset the password for obvyknzx gzvjtish on er... | English |
| 8448 | abended job in job_scheduler: Job_483 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: Job_483 received... | English |
| 8449 | please reset password for user catgyhilp (ess ... | please reset password for user catgyhilp (ess ... | usdykwvf oswvlmje | GRP_0 | please reset password for user catgyhilp (ess ... | English |
| 8450 | unable to connect to wifi | unable to connect to wifi | incjpxsq gdxbvaqz | GRP_0 | unable to connect to wifi unable to connect to... | English |
| 8451 | password reset erp SID_34 | password reset erp SID_34 | rcukxbvw pvnuqlyb | GRP_0 | password reset erp SID_34 password reset erp S... | English |
| 8452 | r: finished: start of s&op process | \r\n\r\nreceived from: xfdkwusj.gyklresa@gmail... | xfdkwusj gyklresa | GRP_0 | r: finished: start of s&op process \r\n\r\nrec... | English |
| 8453 | aw: SID_1 erp | \r\n\r\nreceived from: jofghyuach.nerreter@com... | slubnjry qcrabvoe | GRP_0 | aw: SID_1 erp \r\n\r\nreceived from: jofghyuac... | English |
| 8454 | erp & business_client password blocked | from: asfgthok topefd\nsent: friday, august 05... | weupycai epqhduro | GRP_0 | erp & business_client password blocked from: a... | English |
| 8455 | need teamviewer full version and visio applica... | need teamviewer full version and visio applica... | welztypu yseckbvf | GRP_19 | need teamviewer full version and visio applica... | English |
| 8456 | calculation of the claim amount will make a mi... | from: uxndyfrs vahxnfgl [mailto:uxndyfrs.vahxn... | uxndyfrs vahxnfgl | GRP_13 | calculation of the claim amount will make a mi... | English |
| 8457 | æ— æ³•ç™»é™†hr_tool考勤系统 | 显示javaæ’ä»¶æ— æ³•åŠ è½½ï¼Œæ‰€éœ€ç‰ˆæœ¬1.8... | kyagjxdh dmtjpbnz | GRP_30 | æ— æ³•ç™»é™†hr_tool考勤系统 显示javaæ’ä... | English |
| 8458 | windows account locked | windows account locked | nfckwprm iykptjna | GRP_0 | windows account locked windows account locked | English |
| 8459 | erp crm complaint when is assigned generating ... | when we update the complaint with assigned sta... | aoyrspjv hctgfeal | GRP_15 | erp crm complaint when is assigned generating ... | English |
| 8460 | abended job in job_scheduler: Job_1148 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1148 receive... | English |
| 8461 | reboot lhqsm286 (patent web uacyltoe hxgaycze ... | reboot lhqsm286 (patent web uacyltoe hxgaycze ... | uvrbhlnt bjrmalzi | GRP_8 | reboot lhqsm286 (patent web uacyltoe hxgaycze ... | English |
| 8462 | abended job in job_scheduler: Job_1141 | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_9 | abended job in job_scheduler: Job_1141 receive... | English |
| 8463 | kindly refer mail-renew account for visfgthal-... | hello snhdfihytu,\nkindly refer mail-renew acc... | rmdtqfxa fwpnqdxo | GRP_2 | kindly refer mail-renew account for visfgthal-... | English |
| 8464 | SID_1 log in issue | \r\n\r\nreceived from: rjanhbde.owfkyjcp@gmail... | rjanhbde owfkyjcp | GRP_0 | SID_1 log in issue \r\n\r\nreceived from: rjan... | English |
| 8465 | vpn 连接ä¸ä¸Š | vpn连ä¸ä¸Šï¼Œè¯·è½¬ç»™ è´ºæ£å¹³ atcbvglq.bd... | fcvqezmn frzyjknu | GRP_30 | vpn 连接ä¸ä¸Š vpn连ä¸ä¸Šï¼Œè¯·è½¬ç»™ è´ºæ... | Hungarian |
| 8466 | abended job in job_scheduler: bkwin_HostName_7... | received from: monitoring_tool@company.com\r\n... | ZkBogxib QsEJzdZO | GRP_8 | abended job in job_scheduler: bkwin_HostName_7... | English |
| 8467 | hi it help team, please unblock my new compan... | from: ntydihzo aeptfbgs \r\nsent: friday, augu... | ntydihzo aeptfbgs | GRP_0 | hi it help team, please unblock my new compan... | English |
| 8468 | can you unblock my account so i can use outlo... | from: nwfodmhc exurcwkm \nsent: friday, august... | eqzibjhw ymebpoih | GRP_0 | can you unblock my account so i can use outlo... | English |
| 8469 | plant_101 value added services - one day pick ... | request to phase in additional vas customers. ... | xnqzhtwu hivumtfz | GRP_18 | plant_101 value added services - one day pick ... | English |
| 8470 | please review your recent ticketing_tool ticke... | from: mikhghytr wafglhdrhjop \nsent: thursday,... | azxhejvq fyemlavd | GRP_16 | please review your recent ticketing_tool ticke... | English |
| 8471 | 电脑开机开ä¸å‡ºæ¥ | to å°è´ºï¼Œæ—©ä¸Šç”µè„‘开机开ä¸å‡ºæ¥ | xqyjztnm onfusvlz | GRP_30 | 电脑开机开ä¸å‡ºæ¥ to å°è´ºï¼Œæ—©ä¸Šç”µ... | English |
| 8472 | ticket update | from: rakthyesh ramdntythanjesh \r\nsent: frid... | eqzibjhw ymebpoih | GRP_0 | ticket update from: rakthyesh ramdntythanjesh ... | English |
| 8473 | outlook freezing because of crm addin | outlook freezing because of crm addin | crjhotyk pxslorbe | GRP_0 | outlook freezing because of crm addin outlook ... | English |
| 8474 | inquiry about employee- shesyhur posrt | inquiry about employee- shesyhur posrt | pvlxjizg xzvlwqjc | GRP_0 | inquiry about employee- shesyhur posrt inquiry... | English |
| 8475 | etime- time card update information. | etime- time card update information. | tmopbken ibzougsd | GRP_0 | etime- time card update information. etime- ti... | English |
| 8476 | supply_chain_software account unlock and passw... | supply_chain_software account unlock and passw... | xjyuobma pzgqixlj | GRP_0 | supply_chain_software account unlock and passw... | English |
| 8477 | can't login to bex analyzer through vpn - urgent | \r\n\r\nreceived from: cfzsajbe.lyejkdho@gmail... | cfzsajbe lyejkdho | GRP_0 | can't login to bex analyzer through vpn - urge... | English |
| 8478 | beenefits access on oneteam | \n\nreceived from: bjitvswa.yrmugfnq@gmail.com... | bjitvswa yrmugfnq | GRP_0 | beenefits access on oneteam \n\nreceived from:... | English |
| 8479 | unable to connect to HostName_776 | stehdgty jfhying called in for an issue where ... | byfskuni mhvnqodk | GRP_0 | unable to connect to HostName_776 stehdgty jfh... | English |
| 8480 | customer group enhanced field | \r\n\r\nreceived from: nlearzwi.ukdzstwi@gmail... | nlearzwi ukdzstwi | GRP_9 | customer group enhanced field \r\n\r\nreceived... | English |
| 8481 | ess portal | \n\nreceived from: eagvusbr.nguqityl@gmail.com... | eagvusbr nguqityl | GRP_9 | ess portal \n\nreceived from: eagvusbr.nguqity... | English |
| 8482 | robot HostName_776 is inactive | robot HostName_776 is inactive | rkupnshb gsmzfojw | GRP_8 | robot HostName_776 is inactive robot HostName_... | English |
| 8483 | fw: case id [ref:_case-111121032:ref] :: others | from: pacvbetl yptglhoe \r\nsent: thursday, au... | pacvbetl yptglhoe | GRP_0 | fw: case id [ref:_case-111121032:ref] :: other... | English |
| 8484 | please remove user hugcadrn ixhlwdgt (ralfteim... | please remove user hugcadrn ixhlwdgt (ralfteim... | hugcadrn ixhlwdgt | GRP_2 | please remove user hugcadrn ixhlwdgt (ralfteim... | English |
| 8485 | ticket update on inc1538505 to user hbmwlprq i... | ticket update on inc1538505 to user hbmwlprq i... | fumkcsji sarmtlhy | GRP_0 | ticket update on inc1538505 to user hbmwlprq i... | English |
| 8486 | ticket update on ticket_no0427635 | ticket update on ticket_no0427635 | fumkcsji sarmtlhy | GRP_0 | ticket update on ticket_no0427635 ticket updat... | English |
| 8487 | telephony_software is missing from pc | pc received multiple windows security updates ... | pvbomqht smfkuhwi | GRP_3 | telephony_software is missing from pc pc recei... | English |
| 8488 | erp account unlock | name:mfeyouli ndobtzpw\nlanguage:\nbrowser:mic... | rbozivdq gmlhrtvp | GRP_0 | erp account unlock name:mfeyouli ndobtzpw\nlan... | English |
| 8489 | account locked | account locked | sdvlxbfe ptnahjkw | GRP_0 | account locked account locked | English |
| 8490 | check status in purchasing | please contact ed pasgryowski (pasgryo) about ... | mpihysnw wrctgoan | GRP_29 | check status in purchasing please contact ed p... | English |
| 8491 | vpn for laptop | \n\nreceived from: jxgobwrm.qkugdipo@gmail.com... | jxgobwrm qkugdipo | GRP_34 | vpn for laptop \n\nreceived from: jxgobwrm.qku... | English |
| 8492 | hr_tool etime option not visitble | hr_tool etime option not visitble | tmopbken ibzougsd | GRP_0 | hr_tool etime option not visitble hr_tool eti... | English |
| 8493 | erp fi - ob09, two accounts to be added | i am sorry, i have another two accounts that n... | ipwjorsc uboapexr | GRP_10 | erp fi - ob09, two accounts to be added i am ... | English |
| 8494 | tablet needs reimaged due to multiple issues w... | tablet needs reimaged due to multiple issues w... | cpmaidhj elbaqmtp | GRP_3 | tablet needs reimaged due to multiple issues w... | English |
| 8495 | emails not coming in from zz mail | \r\n\r\nreceived from: avglmrts.vhqmtiua@gmail... | avglmrts vhqmtiua | GRP_29 | emails not coming in from zz mail \r\n\r\nrece... | English |
| 8496 | telephony_software issue | telephony_software issue | rbozivdq gmlhrtvp | GRP_0 | telephony_software issue telephony_software issue | English |
| 8497 | vip2: windows password reset for tifpdchb pedx... | vip2: windows password reset for tifpdchb pedx... | oybwdsgx oxyhwrfz | GRP_0 | vip2: windows password reset for tifpdchb pedx... | English |
| 8498 | machine não está funcionando | i am unable to access the machine utilities to... | ufawcgob aowhxjky | GRP_62 | machine não está funcionando i am unable to ... | English |
| 8499 | an mehreren pc`s lassen sich verschiedene prgr... | an mehreren pc`s lassen sich verschiedene prgr... | kqvbrspl jyzoklfx | GRP_49 | an mehreren pc`s lassen sich verschiedene prgr... | German |
engdf = newdf[(newdf['lang'] == "English")]
nonengdf = newdf[(newdf['lang'] != "English")]
nonengdf.head(5)
| Short description | Description | Caller | Assignment group | Summary | lang | |
|---|---|---|---|---|---|---|
| 4 | skype error | skype error | owlgqjme qhcozdfx | GRP_0 | skype error skype error | Latin |
| 146 | erp_print_tool install. | erp_print_tool install. | aorthyme rnsuipbk | GRP_0 | erp_print_tool install. erp_print_tool install. | Kinyarwanda |
| 148 | install acrobat standard | install acrobat standard | iefgkray zdyksvpw | GRP_0 | install acrobat standard install acrobat standard | Malay |
| 223 | probleme mit bluescreen . | hallo ,\n\nes ist erneut passiert. der pc hat ... | vrfpyjwi nzhvgqiw | GRP_24 | probleme mit bluescreen . hallo ,\n\nes ist er... | German |
| 251 | reset the password for fygrwuna gomcekzi on e-... | bitte passwort für fygrwuna gomcekzi e-mail z... | fygrwuna gomcekzi | GRP_0 | reset the password for fygrwuna gomcekzi on e-... | German |
translator = Translator()
nonengdf["newsummary"] = nonengdf["Summary"].map(lambda x: translator.translate(x).text)
engdf["newsummary"]=engdf["Summary"]
finalsummary=pd.merge(engdf, nonengdf, how='outer')
finalsummary.head(5)
| Short description | Description | Caller | Assignment group | Summary | lang | newsummary | |
|---|---|---|---|---|---|---|---|
| 0 | login issue | -verified user details.(employee# & manager na... | spxjnwir pjlcoqds | GRP_0 | login issue -verified user details.(employee# ... | English | login issue -verified user details.(employee# ... |
| 1 | outlook | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_0 | outlook \r\n\r\nreceived from: hmjdrvpb.komuay... | English | outlook \r\n\r\nreceived from: hmjdrvpb.komuay... |
| 2 | cant log in to vpn | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | eylqgodm ybqkwiam | GRP_0 | cant log in to vpn \r\n\r\nreceived from: eylq... | English | cant log in to vpn \r\n\r\nreceived from: eylq... |
| 3 | unable to access hr_tool page | unable to access hr_tool page | xbkucsvz gcpydteq | GRP_0 | unable to access hr_tool page unable to access... | English | unable to access hr_tool page unable to access... |
| 4 | unable to log in to engineering tool and skype | unable to log in to engineering tool and skype | eflahbxn ltdgrvkz | GRP_0 | unable to log in to engineering tool and skype... | English | unable to log in to engineering tool and skype... |
print(finalsummary.shape)
print(finalsummary.isnull().sum())
finalticketsummary=finalsummary.drop(["lang"], axis=1)
#Shape and search for NA values
(8500, 7) Short description 0 Description 0 Caller 0 Assignment group 0 Summary 0 lang 0 newsummary 0 dtype: int64
finalticketsummary["lang1"] = finalticketsummary["newsummary"].apply(get_language)
Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably. Detector is not able to detect the language reliably.
print(finalticketsummary["lang1"].value_counts())
English 8363 German 40 un 28 Latin 9 Danish 8 Nauru 6 Hungarian 4 Scots 4 Waray 4 Polish 4 Uzbek 3 Portuguese 2 Kinyarwanda 2 Zhuang 2 Interlingua 2 Scottish Gaelic 2 Ganda 2 Tagalog 1 Estonian 1 Welsh 1 Tsonga 1 Latvian 1 Norwegian Nynorsk 1 Spanish 1 Malay 1 Maltese 1 Dutch 1 Finnish 1 Catalan 1 Norwegian 1 Irish 1 French 1 Name: lang1, dtype: int64
finalticketsummary.loc[finalticketsummary["lang1"]=="French"]
| Short description | Description | Caller | Assignment group | Summary | newsummary | lang1 | |
|---|---|---|---|---|---|---|---|
| 8324 | email delegation | email delegation | wbtrvdsi gdbuvszx | GRP_0 | email delegation email delegation | email delegation email delegation | French |
finalticketsummary=finalticketsummary.drop(["lang1"], axis=1)
1.For language detection we observed that the detection works better for unprocessed text rather than processed text.
2.The polyglot works better in terms of language accuracy with 7928+ english rows detection where as for lang detect it is 7069.
2.After translation 8300+ rows got translated and out of rest 70% is in english but due to some name it is detected as non english.So we are good to go and we will start doing further visualization and text processing
wordcloud_plot(finalticketsummary["newsummary"])
wordcloud_plot_stop(finalticketsummary["newsummary"])
from collections import Counter
Counter(" ".join(finalticketsummary["newsummary"]).split()).most_common(50)
[('to', 8598),
('the', 7530),
('in', 4969),
('is', 3697),
('not', 2982),
('on', 2974),
('and', 2904),
('for', 2784),
('from:', 2499),
('i', 2472),
('received', 2392),
('please', 2097),
('a', 2086),
('job', 1976),
('of', 1973),
('password', 1900),
('erp', 1830),
('failed', 1704),
('job_scheduler', 1629),
('at:', 1614),
('(yes/no/na)', 1566),
('?', 1561),
('this', 1533),
('unable', 1484),
('-', 1446),
('it', 1434),
('reset', 1387),
('with', 1387),
('user', 1227),
('my', 1192),
('from', 1144),
('account', 1141),
('access', 1126),
('you', 1122),
('have', 1077),
(':', 1048),
('monitoring_tool@company.com', 961),
('at', 922),
('company', 919),
('are', 910),
('issue', 898),
('be', 879),
('error', 866),
('that', 847),
('can', 834),
('am', 799),
('outlook', 795),
('ticket', 787),
('when', 756),
('site', 755)]
What we observed that:The word cloud gets better and also there is very few non english words but most frequent words are still coming as stop words.So we need to apply preprocessing and remove stop word.
def text_preprocessing(text):
strText = str(text)
cleanText=removeDuplicates(text)
cleanText = cleantext_removeHTML(cleanText)
cleanText = re.sub(r'\d+', '', cleanText)
cleanText = cleantext_remove_url(cleanText)
cleanText = re.sub(r'\S*@\S*\s?', '', cleanText)
cleantext = re.sub(r'https?:\/\/.\/\w', '', cleanText)
cleanText = cleantext_lower(cleanText)
#cleanText = removeAccentedChars(cleanText)
cleanText = expandContractions(cleanText)
cleanText = cleantext_remove_punctuation(cleanText)
cleanText = cleantext_removeSpecialChars(cleanText)
cleantext = re.sub(r'\n',' ',cleanText)
cleanText = re.sub(r'[^a-zA-Z\s]',' ',cleanText)
cleanText = re.sub(r'\s+',' ',cleanText)
cleanText = cleantext_textLemmatize(cleanText)
return cleanText
finalticketsummary["cleanedsummary"]=finalticketsummary["newsummary"].apply(text_preprocessing)
finalticketsummary["cleanedsummary"].head(53)
0 login issue verify user detail employee manage... 1 outlook receive from hello team my meeting sky... 2 can not log in to vpn receive from hi i can no... 3 unable to access hr tool page 4 unable to log in engineering tool and skype 5 event critical hostname company com the value ... 6 ticket no employment status new non employee e... 7 unable to disable add in on outlook 8 ticket update on inplant 9 engineering tool say not connect and unable to... 10 hr tool site not load page correctly 11 unable to login hr tool sgxqsuojr xwbesorf cards 12 user want to reset the password 13 unable to open payslip 14 ticket update on inplant 15 unable to login company vpn receive from hi i ... 16 when undocking pc screen will not come back 17 erp sid account lock 18 unable to sign into vpn 19 unable to check payslip 20 vpn issue receive from hello helpdesk i be not... 21 unable to connect vpn 22 user call for vendor phone number 23 vpn not work receive from hello I be be able t... 24 erp sid password reset 25 unable to login hr tool check payslip 26 account lock out 27 unable to login hr tool 28 unable to log in erp sid 29 password reset for collaboration platform 30 reset user hi please password client i would u... 31 duplication of network address receive from ge... 32 ess password reset 33 unable to install flash player 34 ticket no employment status new non employee 35 erp sid account unlock and password reset 36 unable to resolve ticket no assign self the st... 37 instal engineering tool need to install on the pc 38 call for ecwtrjnq jpecxuty 39 call for ecwtrjnq jpecxuty 40 call for ecwtrjnq jpecxuty 41 call for ecwtrjnq jpecxuty 42 call for ecwtrjnq jpecxuty 43 call for ecwtrjnq jpecxuty 44 call for ecwtrjnq jpecxuty 45 ticket update inplant 46 tablet sound not work 47 unable to login system 48 please reroute job on printer to printer issue... 49 unable to login hr tool etime 50 can not log into hr tool etime through single ... 51 password change in password management tool bu... 52 job job fail in job scheduler at receive from job Name: cleanedsummary, dtype: object
wordcloud_plot(finalticketsummary["cleanedsummary"])
from collections import Counter
Counter(" ".join(finalticketsummary["cleanedsummary"]).split()).most_common(50)
[('be', 5077),
('to', 3697),
('job', 3387),
('from', 3223),
('in', 3016),
('the', 2919),
('not', 2606),
('receive', 2523),
('i', 2173),
('please', 2004),
('on', 1713),
('and', 1658),
('for', 1615),
('have', 1606),
('a', 1590),
('password', 1496),
('at', 1483),
('no', 1377),
('it', 1360),
('tool', 1251),
('issue', 1222),
('erp', 1216),
('do', 1216),
('can', 1193),
('company', 1138),
('user', 1123),
('of', 1112),
('this', 1050),
('with', 1040),
('work', 1027),
('sid', 1016),
('reset', 988),
('scheduler', 970),
('fail', 941),
('ticket', 916),
('you', 890),
('unable', 888),
('error', 866),
('my', 849),
('access', 835),
('need', 766),
('account', 763),
('hello', 715),
('help', 693),
('system', 687),
('email', 678),
('that', 652),
('when', 638),
('get', 635),
('we', 625)]
When we have applied preprocessing we get a better word cloud with out special character and the words are lemmatized like failed instead of fail
def clean_tokenization(text):
return word_tokenize(text)
finalticketsummary["tokenizesummary"]=finalticketsummary["cleanedsummary"].apply(clean_tokenization)
finalticketsummary["tokenizesummary"].head(10)
0 [login, issue, verify, user, detail, employee,... 1 [outlook, receive, from, hello, team, my, meet... 2 [can, not, log, in, to, vpn, receive, from, hi... 3 [unable, to, access, hr, tool, page] 4 [unable, to, log, in, engineering, tool, and, ... 5 [event, critical, hostname, company, com, the,... 6 [ticket, no, employment, status, new, non, emp... 7 [unable, to, disable, add, in, on, outlook] 8 [ticket, update, on, inplant] 9 [engineering, tool, say, not, connect, and, un... Name: tokenizesummary, dtype: object
wordcloud_spam = WordCloud(width = 800, height = 800,
background_color ='white',
min_font_size = 10).generate_from_text(' '.join(word for w in finalticketsummary["tokenizesummary"] for word in w))
# Lines 2 - 5
plt.figure(figsize = (8,8))
plt.imshow(wordcloud_spam, interpolation='bilinear')
plt.axis("off")
plt.show()
result = set(stopwords.words('english'))
print("List of stopwords in English:")
print(result)
List of stopwords in English:
{'all', 'isn', "weren't", 'other', 'did', "needn't", 'after', 'wouldn', 'yourself', 'with', 'having', 'are', 'which', "aren't", 'being', 'who', 'does', 'do', 'because', 'off', "it's", 'him', "isn't", 'it', 'how', 'been', 'whom', "didn't", 'shouldn', 'that', 'below', 'they', 'doesn', 'couldn', 'didn', 'and', 'o', 's', 'some', "she's", 'why', 'again', 'while', "you're", 'doing', 'will', 'here', 'she', 'a', 'there', 'herself', 'of', 'ain', 'yourselves', "doesn't", 'can', 'most', "don't", 'further', 'my', 'then', 'very', 'once', "should've", 'you', "you'd", 'at', 'our', "you'll", 'so', 'no', 'about', "wouldn't", 'more', 'hasn', 'just', 'into', 'only', 'theirs', 'as', 'too', "haven't", 'y', 'before', "hasn't", 'mightn', 'myself', 'than', 'during', "you've", 'them', 'now', 'am', 'to', 'when', 'the', 'be', 'these', 'won', 'over', "wasn't", 'above', 'haven', 'under', 'in', 'or', 'until', "won't", 'few', 'needn', 'have', 'i', 'its', 'wasn', 'by', 'don', 'is', 'has', 'aren', 'nor', 'for', 'not', 'himself', 'mustn', "shouldn't", "that'll", 'hers', 'll', 'weren', 'should', "mightn't", 'your', "mustn't", 'shan', 'from', 'themselves', "couldn't", 'yours', 'm', 're', 'any', 'me', 'we', 'if', 'such', 'hadn', 'he', 'own', 'those', 'out', "shan't", 'ours', 'itself', 'but', 'through', 'her', 'had', 'an', 'where', 'down', 'on', 've', 'against', "hadn't", 'what', 'this', 'ourselves', 't', 'between', 'their', 'was', 'were', 'his', 'd', 'both', 'up', 'each', 'ma', 'same'}
stop_words = set(stopwords.words('english')) - set(["hadn't", "didn't", "shouldn't","shan't","hasn't","don't","needn't","won't","couldn't","doesn't","haven't","mustn't","nor","mightn't","weren't","isn't","wasn't","not","no","wouldn't","aren't"])
print("\nList of fresh stopwords in English:")
print(stop_words)
stop_words.add("e")
stop_words.add("f")
print(stop_words)
List of fresh stopwords in English:
{'all', 'isn', 'other', 'did', 'after', 'wouldn', 'yourself', 'with', 'having', 'are', 'which', 'being', 'who', 'does', 'do', 'because', 'off', "it's", 'him', 'it', 'how', 'been', 'whom', 'shouldn', 'that', 'below', 'they', 'doesn', 'couldn', 'didn', 'and', 'o', 's', 'some', "she's", 'why', 'again', 'while', "you're", 'doing', 'will', 'here', 'she', 'a', 'there', 'herself', 'of', 'ain', 'yourselves', 'can', 'most', 'further', 'my', 'then', 'very', 'once', "should've", 'you', "you'd", 'at', 'our', "you'll", 'so', 'about', 'more', 'hasn', 'just', 'into', 'only', 'theirs', 'as', 'too', 'y', 'before', 'mightn', 'myself', 'than', 'during', "you've", 'them', 'now', 'am', 'to', 'when', 'the', 'be', 'these', 'won', 'over', 'above', 'haven', 'under', 'in', 'or', 'until', 'few', 'needn', 'have', 'i', 'its', 'wasn', 'by', 'don', 'is', 'has', 'aren', 'for', 'himself', 'mustn', "that'll", 'hers', 'll', 'weren', 'should', 'your', 'shan', 'from', 'themselves', 'yours', 'm', 're', 'any', 'me', 'we', 'if', 'such', 'hadn', 'he', 'own', 'those', 'out', 'ours', 'itself', 'but', 'through', 'her', 'had', 'an', 'where', 'down', 'on', 've', 'against', 'what', 'this', 'ourselves', 't', 'between', 'their', 'was', 'were', 'his', 'd', 'both', 'up', 'each', 'ma', 'same'}
{'all', 'isn', 'other', 'did', 'after', 'wouldn', 'yourself', 'with', 'having', 'are', 'which', 'being', 'who', 'does', 'do', 'because', 'off', "it's", 'him', 'it', 'how', 'been', 'whom', 'shouldn', 'that', 'below', 'they', 'doesn', 'couldn', 'didn', 'and', 'o', 's', 'some', "she's", 'why', 'again', 'while', "you're", 'doing', 'will', 'here', 'she', 'a', 'there', 'herself', 'of', 'ain', 'yourselves', 'can', 'most', 'further', 'my', 'then', 'very', 'once', "should've", 'you', "you'd", 'at', 'our', "you'll", 'so', 'about', 'more', 'hasn', 'just', 'into', 'only', 'theirs', 'as', 'too', 'y', 'before', 'mightn', 'myself', 'than', 'during', "you've", 'them', 'now', 'am', 'to', 'f', 'when', 'the', 'be', 'these', 'won', 'over', 'above', 'haven', 'under', 'in', 'or', 'until', 'few', 'needn', 'have', 'i', 'its', 'wasn', 'by', 'don', 'is', 'has', 'aren', 'for', 'himself', 'mustn', "that'll", 'hers', 'll', 'weren', 'should', 'your', 'shan', 'from', 'themselves', 'yours', 'm', 're', 'any', 'me', 'we', 'if', 'such', 'hadn', 'he', 'own', 'those', 'out', 'ours', 'itself', 'but', 'through', 'her', 'had', 'an', 'where', 'down', 'on', 've', 'against', 'what', 'this', 'ourselves', 't', 'between', 'their', 'was', 'were', 'e', 'his', 'd', 'both', 'up', 'each', 'ma', 'same'}
#STOPWORDS = set(stopwords.words('english'))
def remove_stopwords(text):
"""custom function to remove the stopwords"""
return " ".join([word for word in str(text).split() if word not in stop_words])
finalticketsummary["CleanTextAfterRemoveStopword"] = finalticketsummary["cleanedsummary"].apply(lambda text: remove_stopwords(text))
finalticketsummary["CleanTextAfterRemoveStopword"].head()
0 login issue verify user detail employee manage... 1 outlook receive hello team meeting skype meeti... 2 not log vpn receive hi not vpn best 3 unable access hr tool page 4 unable log engineering tool skype Name: CleanTextAfterRemoveStopword, dtype: object
finalticketsummary["tokenizesummaryafterstopword"]=finalticketsummary["CleanTextAfterRemoveStopword"].apply(clean_tokenization)
wordcloud_spam = WordCloud(width = 800, height = 800,
background_color ='white',
min_font_size = 10).generate_from_text(' '.join(word for w in finalticketsummary["tokenizesummaryafterstopword"] for word in w))
# Lines 2 - 5
plt.figure(figsize = (8,8))
plt.imshow(wordcloud_spam, interpolation='bilinear')
plt.axis("off")
plt.show()
Counter(" ".join(finalticketsummary["CleanTextAfterRemoveStopword"]).split()).most_common(50)
[('job', 3387),
('not', 2606),
('receive', 2523),
('please', 2004),
('password', 1496),
('no', 1377),
('tool', 1251),
('issue', 1222),
('erp', 1216),
('company', 1138),
('user', 1123),
('work', 1027),
('sid', 1016),
('reset', 988),
('scheduler', 970),
('fail', 941),
('ticket', 916),
('unable', 888),
('error', 866),
('access', 835),
('need', 766),
('account', 763),
('hello', 715),
('help', 693),
('system', 687),
('email', 678),
('get', 635),
('name', 617),
('network', 608),
('hostname', 597),
('would', 588),
('yes', 587),
('use', 584),
('outlook', 571),
('vendor', 567),
('login', 533),
('message', 518),
('na', 505),
('power', 504),
('see', 484),
('telecom', 479),
('update', 473),
('change', 457),
('check', 443),
('problem', 441),
('start', 439),
('phone', 428),
('event', 426),
('try', 425),
('team', 422)]
plt.figure(figsize = (15,15))
wc = WordCloud(width = 1600 , height = 800,collocations=False).generate(" ".join(w for w in finalticketsummary.CleanTextAfterRemoveStopword))
plt.imshow(wc , interpolation = 'bilinear')
plt.axis("off")
(-0.5, 1599.5, 799.5, -0.5)
finalticketsummary.head()
| Short description | Description | Caller | Assignment group | Summary | newsummary | cleanedsummary | tokenizesummary | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | login issue | -verified user details.(employee# & manager na... | spxjnwir pjlcoqds | GRP_0 | login issue -verified user details.(employee# ... | login issue -verified user details.(employee# ... | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... |
| 1 | outlook | \r\n\r\nreceived from: hmjdrvpb.komuaywn@gmail... | hmjdrvpb komuaywn | GRP_0 | outlook \r\n\r\nreceived from: hmjdrvpb.komuay... | outlook \r\n\r\nreceived from: hmjdrvpb.komuay... | outlook receive from hello team my meeting sky... | [outlook, receive, from, hello, team, my, meet... | outlook receive hello team meeting skype meeti... | [outlook, receive, hello, team, meeting, skype... |
| 2 | cant log in to vpn | \r\n\r\nreceived from: eylqgodm.ybqkwiam@gmail... | eylqgodm ybqkwiam | GRP_0 | cant log in to vpn \r\n\r\nreceived from: eylq... | cant log in to vpn \r\n\r\nreceived from: eylq... | can not log in to vpn receive from hi i can no... | [can, not, log, in, to, vpn, receive, from, hi... | not log vpn receive hi not vpn best | [not, log, vpn, receive, hi, not, vpn, best] |
| 3 | unable to access hr_tool page | unable to access hr_tool page | xbkucsvz gcpydteq | GRP_0 | unable to access hr_tool page unable to access... | unable to access hr_tool page unable to access... | unable to access hr tool page | [unable, to, access, hr, tool, page] | unable access hr tool page | [unable, access, hr, tool, page] |
| 4 | unable to log in to engineering tool and skype | unable to log in to engineering tool and skype | eflahbxn ltdgrvkz | GRP_0 | unable to log in to engineering tool and skype... | unable to log in to engineering tool and skype... | unable to log in engineering tool and skype | [unable, to, log, in, engineering, tool, and, ... | unable log engineering tool skype | [unable, log, engineering, tool, skype] |
finalticketsummary=finalticketsummary.drop(["Short description","Description","Summary","cleanedsummary","tokenizesummary","newsummary","Caller"], axis=1)
finalticketsummary.head()
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | |
|---|---|---|---|
| 0 | GRP_0 | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... |
| 1 | GRP_0 | outlook receive hello team meeting skype meeti... | [outlook, receive, hello, team, meeting, skype... |
| 2 | GRP_0 | not log vpn receive hi not vpn best | [not, log, vpn, receive, hi, not, vpn, best] |
| 3 | GRP_0 | unable access hr tool page | [unable, access, hr, tool, page] |
| 4 | GRP_0 | unable log engineering tool skype | [unable, log, engineering, tool, skype] |
0 8 24 12 9
Top 5 group data
finalticketsummary['Assignment group'].value_counts().nlargest(5)
GRP_0 3976 GRP_8 661 GRP_24 289 GRP_12 257 GRP_9 252 Name: Assignment group, dtype: int64
finalticketsummary=finalticketsummary.loc[finalticketsummary['Assignment group'].isin(['GRP_0','GRP_8','GRP_24','GRP_12','GRP_9'])]
finalticketsummary.shape
(5435, 3)
finalticketsummary['Assignment group'].value_counts()
GRP_0 3976 GRP_8 661 GRP_24 289 GRP_12 257 GRP_9 252 Name: Assignment group, dtype: int64
finalticketsummary.head()
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | |
|---|---|---|---|
| 0 | GRP_0 | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... |
| 1 | GRP_0 | outlook receive hello team meeting skype meeti... | [outlook, receive, hello, team, meeting, skype... |
| 2 | GRP_0 | not log vpn receive hi not vpn best | [not, log, vpn, receive, hi, not, vpn, best] |
| 3 | GRP_0 | unable access hr tool page | [unable, access, hr, tool, page] |
| 4 | GRP_0 | unable log engineering tool skype | [unable, log, engineering, tool, skype] |
import os
os.chdir('/content/drive/My Drive/')
finalticketsummary.to_pickle('final_top5.pkl')
finaldata = '/content/drive/My Drive/final_top5.pkl'
finaldataset=pd.read_pickle(finaldata)
finaldataset.to_csv('/content/drive/My Drive/Final_top5.csv')
We have tokenized the cleaned text and removed the stopword.Our final feature is ready now and the frequent words values have a significant change and also the word cloud is more prominent.Now we are good to go for embedding.We have top 5 pickled data set and also complete data set for observations
3.1.1. Convert the target column to label encoded output
3.1.2.Try TFIDF and Count vectorizaer and apply transformed input to different conventional Machine Learning models with test train split
3.1.3. Creation of Data frame to compare the models
3.1.4.Observations
3.2.1.Try multiple models for transformed input with Count vectorizer and compare their performence.Plot Accuracy,Precision F1 score and Recall comparison plot for different models.
3.2.2.Creation of a common function on model building with all the performence metrices
3.2.3.Sample classification report of ML models
3.2.4.Observations
3.3.1.Try multiple models for transformed input with tfidf vectorizer and compare their performence.Plot Accuracy,Precision F1 score and Recall comparison plot for different models.
3.3.2.Comparison data frame of different machine learning models
3.3.3.Observations
3.4.1.Try multiple models for transformed input with Pipeline with Count then TIDF vectorizer and compare their performence.Plot Accuracy,Precision F1 score and Recall comparison plot for different models.
3.4.2.Comparison data frame of different machine learning models
3.4.3.Observations
finalticketsummary=finaldataset
# label_encoder object knows how to understand word labels.
label_encoder = preprocessing.LabelEncoder()
# Encode labels in column 'species'.
finalticketsummary['Assignment group_num']= label_encoder.fit_transform(finalticketsummary['Assignment group'])
finalticketsummary['Assignment group_num'].tail()
8491 2 8492 2 8493 2 8494 2 8496 0 Name: Assignment group_num, dtype: int64
finalticketsummary[4020:4040]
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | Assignment group_num | |
|---|---|---|---|---|
| 6298 | GRP_0 | audio not work | [audio, not, work] | 0 |
| 6299 | GRP_0 | erp blank screen | [erp, blank, screen] | 0 |
| 6300 | GRP_0 | unable start computer show startup repair | [unable, start, computer, show, startup, repair] | 0 |
| 6301 | GRP_9 | job job fail job scheduler receive job | [job, job, fail, job, scheduler, receive, job] | 4 |
| 6303 | GRP_0 | erp sid password reset request ughzilfm cfibdamq | [erp, sid, password, reset, request, ughzilfm,... | 0 |
| 6305 | GRP_12 | read write access drive folder receive hi plea... | [read, write, access, drive, folder, receive, ... | 1 |
| 6306 | GRP_0 | unable outlook | [unable, outlook] | 0 |
| 6307 | GRP_0 | reset password mfvkxghn mzjasxqd sid erp need ... | [reset, password, mfvkxghn, mzjasxqd, sid, erp... | 0 |
| 6308 | GRP_0 | account lock ad | [account, lock, ad] | 0 |
| 6309 | GRP_0 | ticket update ticket no | [ticket, update, ticket, no] | 0 |
| 6311 | GRP_0 | skype disconnecting call time minute koenigsee... | [skype, disconnecting, call, time, minute, koe... | 0 |
| 6312 | GRP_0 | account get lock monday | [account, get, lock, monday] | 0 |
| 6313 | GRP_0 | vip symantec login not synch password hitacni ... | [vip, symantec, login, not, synch, password, h... | 0 |
| 6314 | GRP_0 | account lock ad | [account, lock, ad] | 0 |
| 6315 | GRP_8 | job job fail job scheduler receive job | [job, job, fail, job, scheduler, receive, job] | 3 |
| 6316 | GRP_0 | unable login erp sid production account lock | [unable, login, erp, sid, production, account,... | 0 |
| 6317 | GRP_8 | job job fail job scheduler receive job | [job, job, fail, job, scheduler, receive, job] | 3 |
| 6318 | GRP_0 | reset password erp vvkthyiska account block re... | [reset, password, erp, vvkthyiska, account, bl... | 0 |
| 6319 | GRP_0 | help excel update crm receive could please adv... | [help, excel, update, crm, receive, could, ple... | 0 |
| 6320 | GRP_0 | miss archive email receive hello not email lau... | [miss, archive, email, receive, hello, not, em... | 0 |
#Test train split
x_train_count, x_test_count, y_train_count, y_test_count = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"], finalticketsummary['Assignment group_num'], test_size=0.2,random_state=0)
print(x_train_count.shape,x_test_count.shape)
print(y_train_count.shape,y_test_count.shape)
(4348,) (1087,) (4348,) (1087,)
vectorizer = CountVectorizer()
X_train_count = vectorizer.fit_transform(x_train_count)
X_train_count.shape
X_test_count = vectorizer.transform(x_test_count)
X_test_count.shape
X_train_count
#Count Vectorizer Transformation
<4348x5871 sparse matrix of type '<class 'numpy.int64'>' with 50358 stored elements in Compressed Sparse Row format>
count_tokens = vectorizer.get_feature_names()
print(count_tokens)
['aa', 'ab', 'abap', 'abbc', 'abc', 'abd', 'abdhtyu', 'abend', 'abended', 'abgebildet', 'abgrtyreu', 'abholen', 'ability', 'abl', 'able', 'abort', 'aborted', 'absender', 'absolutely', 'abstech', 'ac', 'acc', 'accdb', 'acce', 'accees', 'accept', 'acceptance', 'accesible', 'acceso', 'access', 'accessible', 'accessing', 'accidentally', 'accompany', 'accomplish', 'accord', 'accordance', 'accordingly', 'accound', 'account', 'accounting', 'accounts', 'accout', 'accse', 'accsess', 'acct', 'accurate', 'acess', 'acgyuna', 'achghar', 'achghyardr', 'achim', 'acl', 'acqpinyd', 'acquire', 'acrobat', 'across', 'act', 'action', 'activate', 'activation', 'active', 'activesync', 'activex', 'activitiess', 'activity', 'actual', 'actually', 'aczyfqjr', 'ad', 'adapter', 'add', 'added', 'addin', 'addition', 'additional', 'additionally', 'addon', 'address', 'addressee', 'adelhmk', 'adgtym', 'adjtmlzn', 'adjust', 'admin', 'administra', 'administrador', 'administration', 'administrative', 'administrator', 'adobe', 'adressaten', 'adresse', 'advance', 'advanced', 'advantage', 'advice', 'advise', 'advisor', 'adwjfpbreu', 'ae', 'aeea', 'aenderungsantrag', 'aeophctw', 'aerospace', 'aerp', 'aese', 'aetwpiox', 'aevzsogn', 'afefsano', 'affect', 'affected', 'afghtyjith', 'aficio', 'afkstcev', 'afplnyxb', 'africa', 'afternoon', 'afukzhnm', 'ag', 'agathon', 'agdsqbwv', 'agent', 'agentid', 'agfxelwz', 'aggergrythator', 'aghl', 'aghw', 'aghynil', 'agian', 'ago', 'agreement', 'agrtywal', 'agvw', 'ahbgjrqz', 'ahead', 'ahlqgjwx', 'ahmet', 'ahyiuqev', 'ahypftjx', 'aimcfeko', 'aiqjxhuv', 'aircap', 'aisl', 'aitsgqwo', 'ak', 'akiowsmp', 'akirtyethsyd', 'aktion', 'aktplhre', 'al', 'alarm', 'albaney', 'alert', 'alerting', 'alex', 'alexandfrre', 'alexandre', 'alicona', 'alle', 'allein', 'allert', 'allgemeines', 'allocate', 'allow', 'allowe', 'alluser', 'allway', 'almost', 'almrgtyeiba', 'alone', 'along', 'already', 'alrthyu', 'also', 'alt', 'alte', 'alternate', 'alternative', 'although', 'altogether', 'always', 'alwaysupservice', 'amadeu', 'amar', 'amend', 'amerirtca', 'amerirtcas', 'amet', 'amhywoqg', 'amihtar', 'amlswjfr', 'amniujsh', 'amount', 'amssm', 'analtyicspro', 'analysis', 'analyst', 'analytic', 'analyze', 'analyzer', 'anantadth', 'ancile', 'andere', 'anderen', 'andrdgrtew', 'android', 'andthyerh', 'anfghyudrejy', 'anftgup', 'angezeigt', 'angyta', 'anh', 'anira', 'anivdcor', 'anleitung', 'annehman', 'annette', 'anniversary', 'announce', 'annoying', 'anonymize', 'another', 'anrgtdy', 'answer', 'answering', 'anti', 'anticipation', 'antivirus', 'antjuyhony', 'anup', 'anvqzdif', 'anwendungstechniker', 'anybody', 'anyhusppa', 'anymore', 'anyother', 'anything', 'anytime', 'anyway', 'anyways', 'ao', 'aofnvyzt', 'aolhgbps', 'aorthyme', 'aoshpjiu', 'aoyrspjv', 'ap', 'apac', 'aparecido', 'aplication', 'apologize', 'app', 'appair', 'apparently', 'appear', 'appeare', 'appendix', 'apple', 'applicable', 'application', 'applications', 'apply', 'appointment', 'appoval', 'appreciate', 'appreciatehub', 'apprentice', 'appricatehub', 'appropriate', 'approval', 'approve', 'approver', 'approx', 'approximate', 'apps', 'april', 'apusm', 'apvpn', 'aqihfoly', 'aqstdryv', 'aqzcisjy', 'arac', 'arbeitsstationsvertrauensstellung', 'arc', 'arcade', 'arcgonvy', 'architecture', 'archive', 'archived', 'area', 'arexjftu', 'argentina', 'argtxmvcumar', 'around', 'arrange', 'arrangement', 'arsbtkvd', 'article', 'aryndruh', 'asa', 'asano', 'asfgthok', 'ashdtyf', 'asheshopsw', 'ashley', 'asia', 'asistance', 'asjadj', 'ask', 'aspx', 'asset', 'assign', 'assignment', 'assist', 'assistance', 'assistant', 'associate', 'asst', 'assume', 'assurance', 'aswl', 'aswyuysm', 'atache', 'athjyul', 'atm', 'att', 'attach', 'attachment', 'attack', 'attacker', 'attempt', 'attend', 'attendance', 'attention', 'attn', 'attribute', 'atttache', 'auch', 'audi', 'audible', 'audio', 'audit', 'auditor', 'auf', 'aufgrund', 'auftr', 'auftrgasbearb', 'aug', 'augdec', 'august', 'aurangabad', 'aus', 'ausgabe', 'ausgenommen', 'ausgeschaltet', 'ausliefern', 'australia', 'autamatically', 'authentic', 'authenticate', 'authentication', 'authorisation', 'authorization', 'authorize', 'auto', 'automatci', 'automatic', 'automatically', 'automation', 'automatisch', 'autoresolve', 'autorice', 'av', 'availability', 'available', 'ave', 'average', 'avez', 'avsbdhyu', 'aw', 'await', 'award', 'awards', 'aware', 'awareness', 'away', 'awddmwdol', 'awhile', 'awkrdqzb', 'awswere', 'awyl', 'awysinic', 'awyw', 'awywx', 'axesnghb', 'axhkewnv', 'aylrbosw', 'ayrhcfxi', 'aytjedki', 'azbtkqwx', 'azoyklqe', 'azubis', 'azure', 'azvixyqg', 'babanlal', 'babhjbu', 'back', 'backdate', 'background', 'backorder', 'backup', 'bad', 'badgknqs', 'bagtylleg', 'bahdqrcs', 'balance', 'balancing', 'balzer', 'band', 'bank', 'bankrd', 'bar', 'barcelona', 'barcode', 'base', 'basis', 'batch', 'bathylardb', 'battel', 'battery', 'batuhan', 'bay', 'bb', 'bc', 'bcd', 'bctypmjw', 'bdwdwarbara', 'beabsichtigten', 'bearbeiten', 'beathe', 'becke', 'beckshtyw', 'beckshtywsnh', 'become', 'bedord', 'bee', 'beeping', 'begin', 'behalf', 'behavior', 'behind', 'bei', 'beim', 'bejvhsfx', 'belhadjhamida', 'believe', 'bellusco', 'belo', 'belong', 'belwo', 'benachrichtigen', 'benefit', 'bengtjamin', 'benoittry', 'benutzer', 'benz', 'beosjgxt', 'ber', 'beratung', 'berechtigung', 'bereits', 'bergehend', 'berirtch', 'berirtchtswesen', 'berpr', 'bertes', 'bescheid', 'beschreibung', 'beshryu', 'beside', 'best', 'bestand', 'bestimmt', 'betap', 'betapdachform', 'betapfasen', 'beteiligung', 'betreff', 'betshdy', 'bettymcdanghtnuell', 'bex', 'beyhtcykea', 'beyond', 'bfghabu', 'bfhjtuiwell', 'bfnackrw', 'bfqnvezs', 'bfrgtonersp', 'bfrx', 'bghakch', 'bghrbie', 'bgtyrant', 'bgwneavl', 'bhayhtrathramdnty', 'bhergtyemm', 'bhqvklgc', 'bhrtty', 'bhty', 'bhughjdra', 'bi', 'biaprod', 'big', 'bigdrtyh', 'bihrtyull', 'biintll', 'bildschirmschoner', 'bill', 'billghj', 'billing', 'bio', 'bios', 'bis', 'bisschen', 'bit', 'bite', 'bitte', 'bixsapwu', 'bjehirkx', 'bjnqikym', 'bk', 'bkbackup', 'bkwin', 'bkzcfmse', 'blade', 'blank', 'blast', 'blaster', 'bld', 'blink', 'block', 'blocker', 'blockiert', 'blokker', 'bloque', 'bloqueado', 'blrmfvyh', 'bls', 'blue', 'bluescreen', 'bluetooth', 'bmdawzoi', 'bmhxwvys', 'bmudkpie', 'bnoupaki', 'bnsh', 'bnthygl', 'bob', 'bobj', 'bobjee', 'bobs', 'bofffgtyin', 'bog', 'bohyub', 'bokrgadu', 'bonhyb', 'book', 'bookmarkhty', 'boot', 'booth', 'boss', 'bothms', 'bottom', 'botton', 'box', 'bplnyedg', 'bqdlegnp', 'bqirpxag', 'bqmjyprz', 'br', 'bra', 'bradstreet', 'bragtydlc', 'brahdthyu', 'brandeerthy', 'brandhyht', 'break', 'breakdown', 'bregtnnl', 'brembo', 'breqgycv', 'brescsfgryiani', 'bridge', 'briefly', 'bring', 'broad', 'broadband', 'broadcast', 'broken', 'brook', 'browse', 'browser', 'browsing', 'brrgtyanthet', 'brthyrtiv', 'bsopzxhi', 'bsqofdlx', 'btelgpcx', 'bthrob', 'budhtya', 'buero', 'buffer', 'bufwxeiy', 'bug', 'build', 'building', 'bujiesrg', 'bunch', 'bung', 'bur', 'buraxcij', 'burnhntyham', 'business', 'busse', 'bussiness', 'bussy', 'busy', 'button', 'buy', 'buyer', 'bvcdpxrt', 'bw', 'bwdpmbkp', 'bwgldaoe', 'bwhrattr', 'bwhrchgr', 'bwhrertran', 'bwsdslspln', 'byczkowski', 'byhdderni', 'byoezmla', 'byte', 'bytes', 'byuihand', 'bzekndcu', 'bzw', 'bzwrchnd', 'ca', 'cabane', 'cable', 'cache', 'cad', 'caexmols', 'cagrty', 'cajdwtgq', 'calculate', 'calculator', 'calendar', 'calendars', 'calibration', 'call', 'callback', 'caller', 'callie', 'camera', 'campaign', 'campbell', 'campus', 'canada', 'canadian', 'cancel', 'cann', 'canner', 'cannnot', 'cannont', 'cantabria', 'caoryhuq', 'capacity', 'capture', 'car', 'carb', 'carbide', 'carcau', 'card', 'cardfrmeca', 'cards', 'care', 'careful', 'carmer', 'carrier', 'carthygyrol', 'carve', 'case', 'catalog', 'catalogue', 'catch', 'category', 'cater', 'catgyhilp', 'cathytyma', 'cause', 'caution', 'cbhnxafz', 'cbikymvf', 'cc', 'ccfterguss', 'ccftv', 'ccghksdm', 'cd', 'cdbaoqt', 'ce', 'cec', 'cedsairg', 'ceea', 'ceffcf', 'cell', 'cemvwyso', 'center', 'central', 'ceo', 'ceramdntyic', 'cert', 'certain', 'certificate', 'certify', 'cesgrtar', 'cfgxpvzi', 'cfibdamq', 'cflrqoew', 'chain', 'chairman', 'chance', 'chane', 'change', 'changed', 'channel', 'character', 'charatcher', 'charge', 'chassis', 'chat', 'che', 'check', 'chefghtyn', 'chefgtnp', 'cheghthan', 'chek', 'chg', 'chhyene', 'chian', 'chicago', 'chief', 'child', 'china', 'chinese', 'chkdsk', 'chkmejsn', 'chkzbeav', 'chn', 'chnbghyg', 'choice', 'choose', 'choppy', 'chosuygq', 'christgry', 'christgrytoph', 'chrithysgd', 'chriuimjiann', 'chrome', 'chrthryui', 'chucashadqc', 'cid', 'cighytol', 'cihaz', 'circle', 'circuit', 'ciruit', 'cisco', 'citrix', 'ck', 'ckmeldung', 'cksetzen', 'cksetzten', 'ckt', 'cl', 'clappdico', 'clarification', 'classification', 'classify', 'classroom', 'clcking', 'clean', 'cleaner', 'clear', 'clearance', 'clearly', 'cleoprzq', 'clhqsm', 'clhr', 'click', 'client', 'clientless', 'clint', 'clock', 'close', 'closed', 'closely', 'closet', 'closing', 'cloud', 'clrgtydia', 'cluster', 'cmor', 'cmp', 'cnhqgzwt', 'cnmfbdui', 'co', 'coast', 'coat', 'coatea', 'coating', 'code', 'cold', 'colin', 'collaboration', 'collapse', 'colleague', 'college', 'collegue', 'color', 'column', 'com', 'combi', 'comcast', 'come', 'command', 'comment', 'commodity', 'common', 'commstorage', 'communicate', 'communication', 'communicator', 'company', 'companyguest', 'companys', 'companysecure', 'companyssecure', 'companytm', 'compare', 'comparison', 'compatible', 'compensation', 'competrhyrncy', 'complain', 'complete', 'completely', 'completion', 'compliance', 'component', 'computation', 'computer', 'computerkonto', 'con', 'concall', 'concern', 'condition', 'conf', 'conference', 'confidential', 'confidentiality', 'configuration', 'configure', 'configured', 'confirm', 'confirmation', 'confirmationofhpcpo', 'conflict', 'confusion', 'congratuldhyation', 'connc', 'connect', 'connected', 'connection', 'connections', 'connectivity', 'connectt', 'connetction', 'consider', 'consignment', 'constance', 'constant', 'constantly', 'construction', 'consult', 'consultant', 'consulting', 'consume', 'contact', 'contacted', 'contain', 'contatc', 'content', 'continue', 'continuous', 'continuously', 'contract', 'contrase', 'contribute', 'control', 'controll', 'controller', 'convenience', 'conversation', 'conversion', 'convert', 'converted', 'convey', 'cookies', 'copier', 'copy', 'copying', 'core', 'corporate', 'correct', 'correction', 'correctly', 'correlation', 'correspond', 'corresponding', 'corrupt', 'coshopfloor', 'cost', 'could', 'counsel', 'count', 'countermeasure', 'counterpart', 'countersinking', 'country', 'couple', 'courage', 'course', 'court', 'couskjgd', 'coworker', 'cpbzkrel', 'cpeioxdz', 'cpic', 'cpihaxbs', 'cpinsety', 'cpmaidhj', 'cpmmecial', 'cpu', 'cqvuexjz', 'cqxahony', 'craigfgh', 'cran', 'crash', 'crashing', 'create', 'creation', 'credential', 'credentials', 'credit', 'crete', 'crhyley', 'crime', 'critical', 'crm', 'crohuani', 'cross', 'cruz', 'cruzjc', 'cs', 'cse', 'csenjruz', 'csn', 'csqe', 'csr', 'ctainstanceid', 'ctask', 'ctc', 'cthaasnoc', 'cthryhris', 'ctrl', 'ctry', 'ctusaqpr', 'ctxjsolz', 'ctzykflo', 'cugjzqlf', 'culixwse', 'cumbersome', 'current', 'currently', 'cursor', 'cust', 'custom', 'customer', 'cut', 'cuthyunniy', 'cutview', 'cuzhydjl', 'cvd', 'cvdebrc', 'cve', 'cvn', 'cvss', 'cvyg', 'cwdzunxs', 'cwivnxuk', 'cwkjruni', 'cwryvksu', 'cwuqzyvm', 'cwxtsvkm', 'cyber', 'cycle', 'cyndy', 'cyxieuwk', 'cyzuomxa', 'da', 'dabhruji', 'dabhrujirthy', 'dac', 'dacl', 'dadurch', 'daghyunny', 'daily', 'dailyorderbillingreport', 'dallas', 'dan', 'dank', 'danke', 'danl', 'dann', 'danyhuie', 'darda', 'dardabthyr', 'dartnl', 'dartvis', 'das', 'dash', 'dashbankrd', 'dat', 'data', 'database', 'datacenter', 'datagramdnty', 'dataloads', 'dataservice', 'date', 'datenbank', 'datum', 'davidthd', 'day', 'daylight', 'daypay', 'days', 'dazu', 'db', 'dbe', 'dbfc', 'dbgrtqhs', 'dbkdwwd', 'dbrslnhe', 'dc', 'dcc', 'dce', 'dceghpwn', 'dcgwuvfk', 'dctvfjrn', 'dde', 'ddmefoche', 'dds', 'ddwjm', 'de', 'deactivate', 'deadlock', 'deadlocke', 'dealer', 'dear', 'deb', 'debgrtybie', 'dec', 'decent', 'decision', 'dedalus', 'dedicate', 'deeghyupak', 'default', 'defect', 'defective', 'defekt', 'defekte', 'defence', 'defender', 'define', 'definitely', 'definition', 'delay', 'delegate', 'delegation', 'delete', 'deletion', 'deliver', 'delivery', 'dell', 'dem', 'demjqrfl', 'den', 'dene', 'denen', 'denghyrt', 'dengic', 'denial', 'denied', 'density', 'deny', 'departement', 'department', 'departments', 'depend', 'depfugcy', 'deploy', 'deployment', 'deposit', 'dept', 'der', 'des', 'describe', 'description', 'design', 'designate', 'desk', 'desktop', 'despite', 'dest', 'destination', 'destine', 'destrtgoy', 'detail', 'detailed', 'detect', 'determine', 'deu', 'deutschland', 'dev', 'device', 'devise', 'dewicrth', 'dewkiodshpande', 'deyhtwet', 'df', 'dfhtyuison', 'dfrt', 'dg', 'dgbfptos', 'dhadwuz', 'dhec', 'dhjuyick', 'dhkovprf', 'dhoalycb', 'dhqwtcsr', 'dhthykts', 'diagnostic', 'dial', 'dialing', 'dialog', 'dialogue', 'dicafxhv', 'die', 'diehm', 'dienstag', 'dierppear', 'dierppeare', 'dierppeared', 'diese', 'diesem', 'dieser', 'different', 'differently', 'difficult', 'difficulty', 'difnjlkp', 'difozlav', 'digital', 'dind', 'dinge', 'dinner', 'dinthyesh', 'direct', 'directeur', 'direction', 'directly', 'director', 'directory', 'dirttwan', 'disable', 'disabled', 'disagree', 'disappear', 'disaster', 'discconect', 'disclaimer', 'disclosure', 'disconnect', 'disconnected', 'disconnecting', 'disconnection', 'discount', 'discuss', 'disk', 'dispatch', 'display', 'dispositivo', 'disruption', 'dissemination', 'dist', 'distance', 'distribuator', 'distribution', 'distributor', 'distrtgoye', 'disturb', 'divestiture', 'dixhtyuit', 'djhznybt', 'djwbyact', 'djwkylif', 'dkklddww', 'dknejifu', 'dl', 'dljvtebc', 'dll', 'dly', 'dmitazhw', 'dmvpn', 'dmvsclhp', 'dn', 'dnc', 'dnlhsgyo', 'dnrubpis', 'dns', 'dntym', 'dob', 'doc', 'dock', 'docking', 'document', 'documentation', 'doen', 'dofghbme', 'doflefne', 'dokumente', 'dolhyt', 'domain', 'dondwdgj', 'donnerstag', 'donwloade', 'door', 'dose', 'dot', 'dotnetframdntyework', 'doubleklick', 'doubt', 'download', 'downloaded', 'downs', 'doyhtuug', 'dp', 'dpajkrhy', 'dpozkmie', 'dpuifqeo', 'dpvaymxrest', 'dpyvjcxr', 'dqowbefk', 'dr', 'drac', 'draft', 'drafting', 'draftsight', 'draw', 'drawing', 'drill', 'drilling', 'drive', 'driver', 'drlab', 'drop', 'dropbox', 'dropdox', 'drops', 'drtawing', 'druck', 'druckauftr', 'drucker', 'drvier', 'ds', 'dsccache', 'dscsag', 'dslamtcb', 'dss', 'dst', 'dsthostname', 'dstport', 'dsw', 'dtbycsgf', 'dthyan', 'dtjvhyob', 'dtlmbcrx', 'dtwlrofu', 'dual', 'ducyua', 'dudekm', 'due', 'duel', 'dunham', 'duplicate', 'duplication', 'duration', 'durch', 'durchf', 'durnfyxb', 'durumu', 'duty', 'dv', 'dveuglzp', 'dviwuzhm', 'dvpnfbrc', 'dvqtziya', 'dvsrepro', 'dvsyxwbu', 'dw', 'dwfiykeo', 'dwgliuyt', 'dwight', 'dwjvfkqe', 'dwnload', 'dwon', 'dwwkd', 'dwwlhews', 'dxf', 'dxwuovgs', 'dyhtruutt', 'dymanics', 'dymo', 'dynamic', 'dynamics', 'dyqekzuc', 'dyrgfwbm', 'dyxrpmwo', 'dzrgpkyn', 'eagcldaten', 'eagcutview', 'eagl', 'eagvusbr', 'eagwt', 'eamnvwyh', 'eaodcgsw', 'ear', 'earbud', 'earlier', 'earliest', 'early', 'east', 'easy', 'ebhsm', 'ebkfwhgt', 'ebus', 'ebusiness', 'ecad', 'ecc', 'eccc', 'ecwtrjnq', 'ecygimqd', 'ed', 'edad', 'edfl', 'edfw', 'edge', 'edit', 'editor', 'edmlx', 'edpouqjl', 'edsp', 'edspmloy', 'edt', 'educate', 'ee', 'eemw', 'ef', 'efbwiadp', 'efdl', 'efdsm', 'efdw', 'efe', 'effective', 'effectively', 'effeghnk', 'efficiency', 'efficient', 'effort', 'efjzbtcm', 'efodqiuh', 'efyumrls', 'eg', 'eglavnhx', 'eglwsfkn', 'eh', 'ehs', 'eijzadco', 'eilt', 'eimhxowu', 'ein', 'eine', 'einen', 'eingabe', 'eingegangen', 'eingegeben', 'einzig', 'eiomnuba', 'either', 'eject', 'ejzkrchq', 'ekbl', 'ekim', 'ekpo', 'ekpsm', 'ekxw', 'el', 'elbaqmtp', 'ele', 'element', 'eligibility', 'elituyt', 'elrndiuy', 'else', 'eluvxqhw', 'em', 'email', 'emails', 'emal', 'embed', 'embertell', 'emc', 'emea', 'emp', 'empf', 'empkirty', 'employee', 'employment', 'empty', 'empw', 'emsw', 'en', 'enable', 'encl', 'enclose', 'enclosed', 'enclsoe', 'encounter', 'encrypt', 'encryption', 'end', 'endg', 'endlkglfeghart', 'endpoint', 'ene', 'eng', 'engagement', 'engilsh', 'engine', 'engineer', 'engineering', 'english', 'engracia', 'enhance', 'enhancement', 'enough', 'enquiry', 'ensure', 'enter', 'enterence', 'enterprise', 'enth', 'enthalten', 'entire', 'entry', 'entsprechend', 'enviroment', 'environment', 'environmental', 'envoy', 'eovkxgpn', 'eozqgims', 'ep', 'eplan', 'epmap', 'epmsystem', 'eq', 'eqiyskhm', 'eqtofwbm', 'equipment', 'eqxyvfpi', 'er', 'erase', 'eraser', 'erathyur', 'erfasse', 'erfolg', 'ergebnis', 'erhalten', 'erhmuncq', 'eri', 'erirtc', 'erkheim', 'erode', 'eror', 'erosion', 'erp', 'erpgui', 'erro', 'error', 'errormessage', 'errror', 'erthryika', 'ervuyin', 'es', 'escalate', 'escalation', 'eseer', 'especially', 'esprit', 'esqcuwbg', 'esrs', 'ess', 'essa', 'est', 'establish', 'estimate', 'estorage', 'et', 'etasthon', 'etbmgjvo', 'etc', 'ethernet', 'ethic', 'ethical', 'ethics', 'ethyxekirty', 'etime', 'etlfrucw', 'eto', 'etr', 'etsmnuba', 'etvzjmhx', 'etyhumpdil', 'eu', 'eulalla', 'eulsvchi', 'euobrlcn', 'euromote', 'europe', 'european', 'evakuierung', 'evaluationmodels', 'even', 'evening', 'event', 'eventtypeid', 'eventtypepriority', 'eventually', 'ever', 'every', 'everybody', 'everyday', 'everyone', 'everything', 'everytime', 'everywhere', 'evh', 'evhw', 'evolution', 'evry', 'evzbhgru', 'ewe', 'eweausbildung', 'ewel', 'ewew', 'ewewx', 'ewgihcnz', 'ex', 'example', 'exceed', 'excel', 'excell', 'excellence', 'except', 'exception', 'excessive', 'exchange', 'exclude', 'exe', 'exec', 'execute', 'execution', 'executive', 'exekirty', 'exel', 'exempt', 'exemption', 'exepsne', 'exgjscql', 'exist', 'exit', 'exlbkpoj', 'expect', 'expedite', 'expense', 'experience', 'expert', 'expiration', 'expire', 'expiry', 'explain', 'explicit', 'exploit', 'exploitation', 'explore', 'explorer', 'export', 'exszgtwd', 'ext', 'extend', 'extended', 'extension', 'extensive', 'extent', 'external', 'extr', 'extra', 'extract', 'extraction', 'extremely', 'exurcwkm', 'ey', 'ez', 'ezbmonjr', 'fa', 'fabio', 'fabry', 'fabxjimdghtyo', 'face', 'facet', 'facility', 'fact', 'factory', 'fading', 'fahdlecz', 'fail', 'failagain', 'faile', 'failure', 'faint', 'falsch', 'familiar', 'fan', 'fandyhgg', 'faq', 'far', 'fast', 'faster', 'fastethernet', 'fault', 'faulty', 'favorite', 'fax', 'fb', 'fbadnjhu', 'fbhyeksq', 'fbmugzrl', 'fbusqrlt', 'fc', 'fd', 'fdbgoamk', 'fdd', 'fduinmtw', 'fdyietau', 'fe', 'feature', 'february', 'federal', 'feedback', 'feel', 'fehlende', 'fehler', 'fehlermeldung', 'fehlversuche', 'felix', 'fellow', 'feluybrn', 'fen', 'fence', 'fengapac', 'fenthgh', 'fernandez', 'fernando', 'fertigung', 'fever', 'ff', 'ffnen', 'fgvv', 'fhagjskd', 'fi', 'fiber', 'fidleyhtjp', 'field', 'fievgddtrr', 'figure', 'file', 'files', 'fileserver', 'filesys', 'fill', 'filler', 'fillipini', 'filter', 'fim', 'final', 'finalize', 'finally', 'finance', 'financemssg', 'financial', 'find', 'findet', 'fine', 'finish', 'finished', 'firewall', 'first', 'firstly', 'fix', 'fjaqbgnld', 'fjohugzb', 'fjtrnslb', 'fjzywdpg', 'fkicawph', 'flags', 'flap', 'flapokym', 'flash', 'flbnyqzc', 'fledge', 'fleisrgtyk', 'flicker', 'floor', 'flowchart', 'fm', 'fmcxikqz', 'fmeozwng', 'fmxcnwpu', 'fmzdkyqv', 'fnr', 'fntmbpla', 'fo', 'folder', 'folgende', 'folgender', 'folk', 'follow', 'following', 'followup', 'follwe', 'font', 'forbid', 'forecast', 'forecasting', 'foreseeconndirection', 'foreseeglobalmodelassessmt', 'foreseeinternalip', 'foreseemaliciouscomment', 'foreseemalprobglobalmodel', 'forget', 'forgot', 'form', 'forma', 'format', 'formatheywte', 'formatheywting', 'former', 'formerly', 'fort', 'forth', 'forward', 'forwarded', 'fothrmijm', 'foundry', 'fourth', 'fp', 'fq', 'fqdn', 'fqhlvcxn', 'fqpybgri', 'fr', 'fragmentation', 'framdntye', 'framdntyework', 'framdntywork', 'francestrhuco', 'franhtyu', 'franhtyuj', 'frau', 'fre', 'free', 'freeze', 'freezing', 'freight', 'freimachen', 'frequent', 'frequently', 'freundliche', 'freundlichem', 'freundlichen', 'frgtyetij', 'frhr', 'friday', 'friend', 'fro', 'front', 'frseoupk', 'frustrated', 'frustrating', 'ftgvlneh', 'ftnijxup', 'ftp', 'ftsf', 'fueiklyv', 'fuer', 'fufrtal', 'fugwxdqh', 'fujitsu', 'fulfil', 'fulfill', 'full', 'function', 'functionality', 'fund', 'fung', 'funke', 'funktionert', 'funktionieren', 'funktioniert', 'furnace', 'furth', 'future', 'fuydxemo', 'fvaihgpx', 'fvqfjrgjrjbkdgus', 'fvwhyenp', 'fw', 'fwchqjor', 'fwd', 'fwknxupq', 'fx', 'fxnkzaqu', 'fxwjhapo', 'fy', 'fybwjzhx', 'fyedqgzt', 'fygrwuna', 'fyi', 'fyzceglp', 'fzsdnmrk', 'gabryltk', 'gabryltke', 'gacfhedw', 'gadisyxr', 'gaeycbwd', 'gage', 'gain', 'gaiopkun', 'gajthyana', 'galaxy', 'gard', 'gb', 'gbaljypo', 'gbr', 'gbytu', 'gcknzthb', 'gdblxiva', 'gdcuhzqw', 'gdgy', 'gdhdyrham', 'gdhyrt', 'gdthrujt', 'gdthryd', 'ge', 'geb', 'geben', 'gebiet', 'geblockt', 'gebucht', 'geehrter', 'geetha', 'gel', 'geloescht', 'geltendem', 'gen', 'general', 'generate', 'generator', 'genetic', 'genius', 'gentleman', 'genuine', 'geoyhurg', 'geplant', 'ger', 'gergryth', 'german', 'germany', 'gesamte', 'gesch', 'gesellschaft', 'gesendet', 'gest', 'gestartet', 'gestellt', 'get', 'getassignment', 'gethyoff', 'geuacyltoe', 'gew', 'gf', 'gflewxmn', 'ghaltiek', 'ghjvreicj', 'ghost', 'gi', 'gigabitet', 'gigabitethernet', 'gilbrmuyt', 'ginemkl', 'girnda', 'giuliasana', 'give', 'gjbtuwek', 'gkrlmxne', 'gkzedilm', 'gl', 'glf', 'glimpse', 'global', 'globalengservice', 'globalmodelversion', 'globalview', 'gmbh', 'gmhkdsnw', 'gmkiatjs', 'gmlhrtvp', 'gn', 'gnasmtvx', 'gncpezhx', 'gneral', 'go', 'gogtyekhan', 'gogtyekthyto', 'gokcerthy', 'gomcekzi', 'gomeshthyru', 'gonzale', 'gonzales', 'good', 'google', 'got', 'governance', 'govind', 'govt', 'gowhjtya', 'gowzv', 'gpbfkqeu', 'gpkovbah', 'gprs', 'gqhfieys', 'gqjcbufx', 'gr', 'grab', 'grade', 'grant', 'graphic', 'grargtfl', 'grargtzzt', 'gray', 'grbhybrdg', 'great', 'greatly', 'grechduy', 'green', 'greeting', 'grergtger', 'grethyg', 'grey', 'grhryueg', 'grind', 'grinding', 'grknswyo', 'groet', 'group', 'grp', 'grtaoivq', 'gru', 'gruesse', 'grugermany', 'grund', 'gsc', 'gslpdhey', 'gso', 'gstry', 'gtbfkisl', 'gte', 'gtehdnyu', 'gtehdnyushot', 'guard', 'gueduel', 'guess', 'guest', 'gui', 'guide', 'guidge', 'guprgtta', 'gurhyqsath', 'gurpthy', 'gurublxkizmh', 'guruythupyhtyad', 'guvgytniak', 'guy', 'gv', 'gvderpbx', 'gviwlsrm', 'gvtbduyf', 'gwptzvxm', 'gxuvbcpr', 'gyhus', 'gzjtweph', 'gzwasqoc', 'ha', 'habe', 'haben', 'habit', 'hadfiunr', 'hai', 'hajghtdul', 'hakim', 'hakityum', 'half', 'hall', 'hallo', 'hamper', 'hana', 'hand', 'handelt', 'handheld', 'handle', 'handling', 'handset', 'hang', 'hangs', 'hanna', 'hannas', 'hanx', 'happen', 'harald', 'hard', 'hardcopy', 'harden', 'hardkopy', 'hardness', 'hardpoint', 'hardware', 'harrfgyibs', 'harrhntyl', 'hartbearbeitung', 'hartghymutg', 'hartstoffe', 'hasta', 'hat', 'hatryupsfshytd', 'haug', 'haujtimpton', 'haunm', 'haveing', 'hbmwlprq', 'hcbmiqdp', 'hcljzivn', 'hcm', 'hctgfeal', 'hcuixqgj', 'hdd', 'hdjm', 'hdldgeman', 'hdmi', 'hdswinlo', 'hdtyr', 'hdytrkfiu', 'head', 'header', 'headset', 'hear', 'heat', 'hebrew', 'hedjdbwlmut', 'hegdergyt', 'hegdthy', 'heghjyder', 'hehr', 'helftgyldt', 'hello', 'hellow', 'help', 'helpdesk', 'helpful', 'helpline', 'helpteam', 'hence', 'heptuizn', 'heptuizns', 'herghan', 'hernet', 'herr', 'hertel', 'heruntergeladen', 'heu', 'hfm', 'hfyujqti', 'hfyzudql', 'hgermany', 'hgrvubzo', 'hgv', 'hgygrtui', 'hgywselena', 'hhnght', 'hi', 'hidhys', 'hierarchy', 'high', 'highlight', 'highly', 'hilfe', 'hipghkinjyt', 'hire', 'hiremath', 'hiring', 'historically', 'history', 'hit', 'hitacni', 'hixsodl', 'hiyhllt', 'hiyhtull', 'hkydrfdw', 'hmzfewks', 'hnbetvfk', 'hnorauaperabdlbtc', 'hntl', 'hntubjela', 'hnyeajrw', 'hnynhsth', 'hohgajnn', 'hold', 'holemaking', 'holiday', 'homburg', 'home', 'homepage', 'homwadbs', 'honest', 'hop', 'hope', 'hopqcvza', 'hor', 'hortl', 'host', 'hostname', 'hotel', 'hotf', 'hoti', 'hotline', 'hotspot', 'hotwlygp', 'hour', 'hourly', 'house', 'however', 'howfanzi', 'howthrelte', 'hp', 'hpcxnyrq', 'hpmjtgik', 'hpormqtx', 'hpqc', 'hprdlbxf', 'hq', 'hqntn', 'hr', 'hrb', 'hren', 'hrer', 'hrm', 'hrmann', 'hrp', 'hrs', 'hrss', 'hrssc', 'hrsync', 'hrt', 'hrtgsd', 'hsh', 'htsnaodb', 'http', 'htv', 'hub', 'hugely', 'hughdthe', 'human', 'hunt', 'hurried', 'hvjbmdgi', 'hvolsgqn', 'hwvjympt', 'hxgaycze', 'hxgayczee', 'hxgayczeen', 'hxgayczeet', 'hxgayczeing', 'hxgayczemii', 'hxgayczeraum', 'hxwtidja', 'hybegvwo', 'hydluapo', 'hydstheud', 'hyeonthygwon', 'hygxzklauthuchidambaramdnty', 'hyperlink', 'hysrbgad', 'hzptilsw', 'hzudxyqb', 'ia', 'iam', 'iauqlrjk', 'iba', 'ic', 'iceyusnd', 'ich', 'icloud', 'icon', 'idea', 'identical', 'identify', 'idf', 'idfhtoqv', 'idg', 'idocs', 'ie', 'iehs', 'ieqgdpbm', 'iewnguxv', 'ifblxjmc', 'iforme', 'ignore', 'igurwxhv', 'ihkolepb', 'ihlsmzdn', 'ihnen', 'ihrem', 'ihsepkwz', 'ihuogcqd', 'ihusvgcw', 'ii', 'iid', 'iis', 'ijyuvind', 'ik', 'il', 'ileatdatacenter', 'ilfvyodx', 'ilkpqtjh', 'iltywzjm', 'ilypdtno', 'image', 'imaging', 'imei', 'imjwbogq', 'immediate', 'immediately', 'immer', 'imminent', 'imp', 'impact', 'impacts', 'implementation', 'imply', 'import', 'importance', 'important', 'impossible', 'improperly', 'improvement', 'imqgfadb', 'imvetgoa', 'ina', 'inactive', 'inbound', 'inbox', 'inboxe', 'inc', 'incase', 'incident', 'include', 'inco', 'incoming', 'incompatibility', 'inconsistency', 'inconsistent', 'incorrect', 'incorrectly', 'increase', 'incredibly', 'ind', 'index', 'indexing', 'indgic', 'india', 'indiana', 'indicate', 'indication', 'indicator', 'indirect', 'individual', 'indra', 'indrakurtyar', 'industrial', 'inf', 'infection', 'info', 'infomation', 'infonet', 'infopath', 'inform', 'information', 'informationen', 'infotype', 'infrastructure', 'ingdirect', 'ingresar', 'ingreso', 'inhalt', 'inhalte', 'inhekdol', 'inin', 'inincident', 'initial', 'initialize', 'initially', 'initiate', 'initiative', 'inn', 'inplant', 'input', 'inq', 'inquiry', 'inqury', 'insert', 'insertapps', 'inside', 'inspectoreventid', 'inspectorruleid', 'inspiron', 'instal', 'install', 'installation', 'installed', 'installl', 'instance', 'instandsetzung', 'instead', 'instruct', 'instruction', 'insufficient', 'insurance', 'insure', 'integrity', 'intellectual', 'intelligence', 'intend', 'interaction', 'interactive', 'interface', 'intermittent', 'intern', 'internal', 'internet', 'internetconnection', 'interrupt', 'interrupted', 'interruption', 'intranet', 'intrusion', 'intune', 'invalid', 'invalidate', 'invalidated', 'investigate', 'investigation', 'investor', 'invitation', 'invite', 'involve', 'inwarehouse', 'io', 'iom', 'ios', 'ip', 'ipad', 'ipc', 'iphone', 'iphonec', 'ipv', 'iqustfzh', 'irfhcgzq', 'irgsthy', 'irreceivedtime', 'iscl', 'isensplant', 'isjzcotm', 'isr', 'israel', 'israey', 'issie', 'issue', 'ist', 'italy', 'itar', 'itbof', 'itclukpe', 'item', 'itjzudor', 'itnakpmc', 'itry', 'itslpwra', 'ivhnpdbu', 'ivohcdpw', 'ivrhjmnx', 'iwtvrhnz', 'ixahzmvf', 'ixcanwbm', 'iygsxftl', 'izgul', 'izmxqfud', 'izohlgcq', 'jabra', 'jack', 'jadqhguy', 'jagthyin', 'jahtyuj', 'jamgpnqe', 'jamhdtyes', 'jan', 'janhytrn', 'jankowski', 'jannek', 'january', 'japan', 'jargqpkm', 'jartnine', 'jashtyckie', 'jashyht', 'java', 'javascript', 'jaya', 'jayatramdntydba', 'jbgcvlmf', 'jctnelqs', 'jdamieul', 'jdcbiezx', 'jdhdw', 'jdqvuhlr', 'jeffrghryey', 'jeffrghryeyrghryey', 'jeffrghryeytyf', 'jerhtyua', 'jertyur', 'jeshyensky', 'jesjnlyenm', 'jet', 'jetcxpda', 'jetzt', 'jfhying', 'jfhytu', 'jftyff', 'jfwvuzdn', 'jghjimdghty', 'jgxmafwk', 'jidhewlg', 'jilgtyq', 'jimdghty', 'jinxyhdi', 'jion', 'jionmpsf', 'jirecvta', 'jkddwkwd', 'jlcavxgi', 'jmxrabzy', 'jncvkrzm', 'job', 'joerg', 'jofghyuach', 'jofgyst', 'joftgost', 'jogt', 'johghajknn', 'johghajknnes', 'johthryu', 'join', 'jonnht', 'jose', 'josefghph', 'jpecxuty', 'jpg', 'jpsfikow', 'jpwrfuhk', 'jqxtbspr', 'jrhoqdix', 'jruz', 'jsuyhwssad', 'jtgmpdcr', 'juarez', 'judthtihty', 'jufskody', 'jul', 'julgttie', 'juli', 'july', 'jump', 'jundiai', 'june', 'junior', 'junk', 'justification', 'jutpdcqf', 'juvfghtla', 'jvpkulxw', 'jvshydix', 'jvxtfhkg', 'jwbsdd', 'jwnsyzbv', 'jwoqbuml', 'jwzlebap', 'jxphgfmb', 'jywvemun', 'kahrthyeuiuiw', 'kahtuithra', 'kambthryes', 'kanghytaim', 'kanjdye', 'kann', 'kantenverrunden', 'karaffa', 'karansb', 'karashsnnsb', 'karghytuthik', 'karno', 'karnos', 'kas', 'kashfyujqti', 'kasphryer', 'kassia', 'kassiaryu', 'kathght', 'kb', 'kbt', 'kcompany', 'kcudbnrw', 'kd', 'kdeqjncw', 'kebogxzp', 'keep', 'keghn', 'keheu', 'kehtxprg', 'kein', 'keine', 'keinyujo', 'keith', 'kenci', 'kennconnect', 'kernel', 'kesrgtyu', 'key', 'keybankrd', 'keyboard', 'keyhtyvin', 'keynes', 'kfdyzexr', 'kfshormi', 'kg', 'kghaozew', 'kgvrfwcj', 'khdgd', 'khfjzyto', 'khrtyujuine', 'khspqlnj', 'kick', 'kijhcwur', 'kime', 'kimli', 'kimtc', 'kimufghtyry', 'kind', 'kindly', 'king', 'kingdom', 'kinght', 'kingston', 'kinhytudel', 'kiosk', 'kirathrydan', 'kirty', 'kirtyle', 'kirvecja', 'kirxdspz', 'kis', 'kisp', 'kkc', 'klarp', 'kls', 'km', 'kmfgfr', 'kmvwxdti', 'knemilvx', 'knepkhsw', 'knethyen', 'knicrhtyt', 'knighdjhtyt', 'knlrgsiv', 'knock', 'knovel', 'know', 'knowledge', 'knowledgebase', 'knrlepglper', 'knxaipyj', 'ko', 'koahsriq', 'koburvmc', 'koenigsee', 'koiergyvh', 'koithc', 'komar', 'kommt', 'konferenzraum', 'konnica', 'konu', 'kopieren', 'kopqcjdh', 'kovaddcth', 'kpm', 'kqelgbis', 'kr', 'krcfhoxj', 'kreghtmph', 'krishnyhda', 'krisyuhnyrt', 'krlszbqo', 'krthdelly', 'krutnylz', 'ksgytjqr', 'ksiyurvlir', 'kstdaddaad', 'ksxchbaf', 'kt', 'ktghvuwr', 'kthassia', 'ktthasb', 'kudhnyuhnm', 'kujfgtat', 'kujigalore', 'kullan', 'kuluz', 'kurtyar', 'kutgynka', 'kuyiomar', 'kvrmnuix', 'kvwrbfet', 'kw', 'kwehgxts', 'kwfwdw', 'kwtcyazx', 'kxbifzoh', 'kxvwsatr', 'kyswcpei', 'kzbws', 'kzishqfu', 'kzq', 'kzvbr', 'la', 'label', 'labelwriter', 'laboratory', 'lacw', 'lady', 'laeusvjo', 'laffekr', 'lafgseimer', 'lafgturie', 'laijuttr', 'laijuttryhr', 'lalthy', 'lan', 'langsamer', 'language', 'langytge', 'lanhuage', 'lansuiwe', 'laode', 'lap', 'laptop', 'laqdwvgo', 'large', 'laser', 'laserjet', 'lasplant', 'lassen', 'last', 'lat', 'late', 'latency', 'later', 'latitude', 'lauacyltoe', 'lauftqmd', 'laugdghjhlin', 'launch', 'launcher', 'laurent', 'law', 'lay', 'layered', 'lbcqfnie', 'lbdl', 'lbxgodfu', 'lbxugpjw', 'lcamiopz', 'lcoke', 'lcosm', 'lcow', 'lcowx', 'ldbsm', 'ldgm', 'ldikdowdfm', 'ldil', 'ldiwsf', 'ldpequhm', 'ldsm', 'lead', 'leader', 'leadership', 'lean', 'least', 'leave', 'lebqthwv', 'lee', 'leegtysm', 'left', 'legal', 'legit', 'legitimate', 'legitmate', 'lehsm', 'leibdrty', 'leider', 'leitung', 'length', 'lertfty', 'less', 'let', 'lethre', 'letim', 'letter', 'level', 'lfal', 'lfmpxbcn', 'lghuiezj', 'lgiovknd', 'lhbsm', 'lhejbwkc', 'lhmxposv', 'lhqksbd', 'lhqksbdx', 'lhqksbdxa', 'lhql', 'lhqsid', 'lhqsm', 'lhqsv', 'lhqwsf', 'lhqwxsf', 'lhutkpxm', 'liable', 'lib', 'libcktnm', 'library', 'lic', 'license', 'lichtyuiwu', 'licwu', 'liefern', 'liefert', 'life', 'light', 'ligsnzur', 'lijsyte', 'like', 'likely', 'lilp', 'limit', 'limitation', 'limited', 'line', 'link', 'linnemann', 'linnes', 'linz', 'lipfnxsy', 'list', 'listen', 'little', 'liuytre', 'live', 'lixwgnto', 'lizensiertes', 'lizhwdoe', 'ljtzbdqg', 'ljztkmds', 'lkwspqce', 'lmsl', 'lmuxizht', 'lmxl', 'lnbdm', 'lndypaqg', 'lnpgjhus', 'lnphmsco', 'load', 'loading', 'local', 'locally', 'locate', 'location', 'locator', 'lock', 'locked', 'lockout', 'log', 'logfile', 'loggin', 'login', 'logistik', 'logn', 'logo', 'logoff', 'logon', 'logtimestamp', 'loin', 'lokce', 'long', 'longer', 'lonn', 'look', 'lookup', 'loop', 'loosing', 'lopgin', 'lortwe', 'lorwsf', 'lose', 'loss', 'lot', 'lotus', 'loud', 'louis', 'lovsan', 'low', 'lowe', 'loy', 'lpa', 'lpapr', 'lpawhdt', 'lpfzasmv', 'lpoebzsc', 'lpriokwa', 'lqdwjdwd', 'lra', 'lriupqct', 'lrrsm', 'lrrw', 'lryturhy', 'lryturhyyth', 'lsne', 'lsuepvyx', 'lt', 'ltd', 'lte', 'ltfskygw', 'ltig', 'ltige', 'ltigung', 'ltjkirwy', 'ltksxmyv', 'ltmoubvy', 'luciano', 'luck', 'ludwidjfft', 'luesebrink', 'luji', 'lunch', 'lv', 'lvidgknc', 'lvlw', 'lwizucan', 'lwohuizr', 'lxfnwyuv', 'lxkecjgr', 'lxrponic', 'lxvunpiz', 'lync', 'lyszwcxg', 'lzapwbnc', 'lzspyjki', 'lzuwmhpr', 'lzvdyouh', 'maaryuyten', 'mabelteghj', 'machine', 'madam', 'madhaw', 'maerza', 'mafghyrina', 'magda', 'magtyrtijc', 'maharashtra', 'mahatndhyua', 'mahcine', 'mahtyurch', 'maier', 'maihtyrhu', 'mail', 'mailbox', 'mailing', 'mails', 'mailserver', 'mailto', 'main', 'mainswitch', 'maint', 'maintenance', 'major', 'make', 'malaysia', 'malware', 'mam', 'mamilujli', 'manage', 'management', 'manager', 'managing', 'mandate', 'mandatory', 'mandgtryjuth', 'manjgtiry', 'mann', 'manual', 'manually', 'manufacture', 'manufacturing', 'many', 'map', 'mapp', 'mapper', 'mapping', 'mar', 'marcel', 'marcom', 'marfhtyio', 'marftgytin', 'margin', 'mark', 'markhty', 'markhtyed', 'markhtyet', 'markhtyete', 'markhtyeting', 'marrthyu', 'marry', 'marty', 'maschine', 'mason', 'masonb', 'mass', 'massive', 'master', 'match', 'matching', 'material', 'materials', 'matghyuthdw', 'matheywter', 'matheywtyuews', 'matlxjgi', 'mavxgqbs', 'max', 'maximum', 'may', 'maybe', 'mb', 'mbps', 'mbr', 'mbrreporte', 'mbs', 'mbyte', 'mc', 'mccoyimgs', 'mcfaullfhry', 'mchectg', 'md', 'mdb', 'mddwwyleh', 'mdevcqjk', 'mdghayi', 'mdpviqbf', 'mdvlkbac', 'mean', 'meaning', 'meantime', 'measure', 'measurement', 'measuring', 'mecftgobusa', 'med', 'media', 'mediante', 'medium', 'meet', 'meeting', 'meetinmg', 'megfgthyhana', 'mehr', 'mehrfach', 'mehrugshy', 'mein', 'meine', 'meinerseits', 'meixni', 'melbourne', 'meldung', 'member', 'memo', 'memory', 'mention', 'menu', 'mercedes', 'merdivan', 'merktc', 'mertut', 'mess', 'messag', 'message', 'messmaschine', 'metal', 'metalworke', 'meter', 'metroligic', 'mex', 'mexico', 'mfeyouli', 'mfg', 'mfvkxghn', 'mfyivqes', 'mg', 'mghllenbecfnfk', 'mgjxwept', 'mgmt', 'mgndhtillen', 'mgr', 'mgvpoyqd', 'mhasttdd', 'mhdyhtya', 'mhtyike', 'mi', 'mic', 'michbhuael', 'micheyi', 'michghytuael', 'michigan', 'michthey', 'microphone', 'microphones', 'microsoft', 'mictbdhryhle', 'might', 'migration', 'mii', 'miiserver', 'mijhmijhmile', 'mikhghytr', 'milan', 'mileage', 'milli', 'miltgntyuon', 'milton', 'min', 'mine', 'minimize', 'minimum', 'minolta', 'mins', 'minute', 'mirror', 'misconfigure', 'mismatch', 'misplace', 'misplaced', 'miss', 'missing', 'mistake', 'mit', 'mitarbeiter', 'mitctdrh', 'mitteilung', 'mittwoch', 'mityhuch', 'mizpywld', 'mizumoto', 'mjudivse', 'mjvfxnka', 'mkdfetuq', 'mkjubdti', 'mkt', 'mktgen', 'mkuhtyhui', 'ml', 'mlroijfp', 'mm', 'mnakehrf', 'mngr', 'mnlvhtug', 'mnslwfqv', 'mo', 'mob', 'mobaidfx', 'mobil', 'mobile', 'mobilen', 'mobility', 'mode', 'model', 'modeli', 'modify', 'modul', 'module', 'mohgrtyan', 'mohnrysu', 'moin', 'mojfbwds', 'mokolthrla', 'moment', 'momitor', 'monatswechsel', 'monday', 'mondhrbaz', 'money', 'monitor', 'monitoring', 'monitorixepyfbga', 'montag', 'month', 'monthly', 'monthy', 'morhyerw', 'morning', 'moto', 'motorola', 'mount', 'mouse', 'move', 'moxnqszg', 'mp', 'mpfdivlh', 'mpls', 'mpvhakdq', 'mqetjxwp', 'mqjdyizg', 'mr', 'mrs', 'ms', 'msblast', 'msc', 'mscrm', 'msd', 'msfc', 'msg', 'mshost', 'msoffice', 'mss', 'mtb', 'mtbelengineering', 'mtbu', 'mtd', 'mtg', 'mthyuleng', 'mti', 'mtlghwex', 'mu', 'much', 'muggftyali', 'multidetail', 'multiple', 'music', 'must', 'muthdyrta', 'mutual', 'muywpnof', 'mvunqihf', 'mwddwansuke', 'mwetuhqf', 'mwgdenbs', 'mws', 'mwtrouyl', 'mwuateyx', 'mx', 'mycompany', 'myhzrtsi', 'myportal', 'mzjasxqd', 'mzyejqvd', 'na', 'naa', 'nabjwvtd', 'nach', 'nachi', 'nachricht', 'nagdyiyst', 'nagfghtyudra', 'nahumo', 'nakagtwsgs', 'name', 'narefgttndra', 'narthdyhy', 'naruedlk', 'nasftgcijj', 'naslrwdb', 'natytse', 'naveuythen', 'navigate', 'navigation', 'nazarr', 'nbr', 'nc', 'nd', 'nderen', 'nderildi', 'ndkrcxjb', 'ndling', 'ndobtzpw', 'ne', 'nealxjbc', 'nearby', 'nearly', 'necessarily', 'necessary', 'nedeni', 'nee', 'need', 'needful', 'needs', 'neerthyu', 'nehtjuavathi', 'nein', 'neither', 'net', 'netbio', 'netbios', 'netch', 'netframdntyework', 'netscape', 'netviewer', 'netweaver', 'network', 'networking', 'neu', 'never', 'nevinmw', 'nevins', 'new', 'newducsl', 'newly', 'news', 'newweaver', 'next', 'nexusk', 'nfayqjhg', 'nfc', 'nfdtriwx', 'nftgyair', 'nfybpxdg', 'ngen', 'nger', 'ngerungskabel', 'ngkcdjye', 'ngliche', 'ngm', 'ngprt', 'ngt', 'ngtr', 'nguqityl', 'ngvwoukp', 'nhgvmqdl', 'nicdhylas', 'nice', 'nicht', 'nicrhty', 'nidqknwjktin', 'nieghjyukea', 'night', 'nijdaukz', 'nikulatrhdy', 'nil', 'nimmt', 'nipt', 'niptbwdq', 'nivqoxyt', 'nizholae', 'njdrcagt', 'njhaqket', 'njpwxmdi', 'nk', 'nkademwy', 'nkjtoxwv', 'nkqafhod', 'nkthumgf', 'nlig', 'nmpworvu', 'nmywsqrg', 'nnen', 'nnlein', 'no', 'nobody', 'nobook', 'noc', 'noch', 'node', 'noggtyuerp', 'nogo', 'nogui', 'noi', 'noise', 'nologin', 'non', 'none', 'noon', 'nor', 'nord', 'normal', 'north', 'noscwdpm', 'not', 'notch', 'note', 'noteb', 'notebook', 'notepad', 'nothing', 'notice', 'notification', 'notify', 'nouveau', 'november', 'nozahtbr', 'nozjtgwi', 'npgxuzeq', 'npmzxbek', 'nqclatbw', 'nrbcqwgj', 'nrlfhbmu', 'nsu', 'nsyapewg', 'nter', 'nthryitin', 'ntner', 'nuerthytzg', 'nuksytoh', 'null', 'number', 'numerirtc', 'nummer', 'numwqahj', 'nunber', 'nur', 'nutzung', 'nv', 'nvamcrpq', 'nvawmlch', 'nvihmbwc', 'nvjyhizu', 'nvodbrfluppasadabasavaraj', 'nvyjtmca', 'nwcobvpl', 'nwfodmhc', 'nwqktzlx', 'nwwiebler', 'nx', 'nxcfastp', 'nxd', 'nxjvzcta', 'nxloukai', 'nythug', 'nzuofeam', 'oa', 'ob', 'obanjrhg', 'obj', 'object', 'oblghuyf', 'obqridjk', 'observation', 'observe', 'observerd', 'obtain', 'obviously', 'oc', 'occur', 'occurence', 'occurrence', 'och', 'ockthiyj', 'oct', 'october', 'odbc', 'oder', 'oe', 'oemcold', 'offenlegung', 'offer', 'office', 'officer', 'official', 'offline', 'often', 'ofuhdesi', 'ofwxjriq', 'ogabwxzv', 'oh', 'ohio', 'ohne', 'ohxdwngl', 'oicrjsfh', 'oikhfqyl', 'oinqckds', 'ojdukgzc', 'ojflyruq', 'ojgrpafb', 'ojrplsmx', 'ok', 'okay', 'okhyipgr', 'oktober', 'olckhmvx', 'old', 'olibercsu', 'olivgtyemc', 'olivgtyera', 'olthyivectr', 'olvidley', 'olympus', 'omleknjd', 'omokam', 'ompeztak', 'omufjcxr', 'onbankrding', 'one', 'oneteam', 'onfiirm', 'online', 'ontario', 'onto', 'ontologyid', 'ony', 'oon', 'ooo', 'ooshstyizen', 'op', 'ope', 'open', 'opener', 'opening', 'openne', 'openorderbook', 'opentext', 'operate', 'operating', 'operation', 'operational', 'operator', 'opeyctrhbkm', 'oppo', 'opportstorage', 'opportunity', 'opposite', 'optic', 'optimization', 'option', 'optiplex', 'oqlcdvwi', 'oracle', 'orange', 'orde', 'order', 'ordinate', 'orelikon', 'orelli', 'org', 'organization', 'orientation', 'original', 'orshop', 'os', 'ost', 'osterwalder', 'ot', 'otc', 'otherwise', 'othyoiz', 'oulook', 'outage', 'outbox', 'outbreak', 'outdated', 'outgoing', 'outil', 'outllok', 'outlock', 'outlook', 'outloook', 'outook', 'output', 'outrlook', 'outside', 'outsoure', 'ouutlook', 'overall', 'overview', 'ovuweygj', 'owa', 'oweklxnm', 'owenghyga', 'owenssdcl', 'owjduxai', 'owner', 'owqplduj', 'owslfzqi', 'owtlmpuv', 'owupktcg', 'owwddwens', 'oxvakgcl', 'oypnxftq', 'oyunatye', 'ozhnjyef', 'oziflwma', 'pa', 'paasword', 'pacific', 'pack', 'package', 'packet', 'pacvbetl', 'page', 'pagthyuathy', 'pain', 'palff', 'pallutyr', 'palo', 'pande', 'pane', 'paneer', 'panel', 'panghyiraj', 'paper', 'paragraph', 'paralegal', 'paramdntyeter', 'parameter', 'parent', 'parfgtkym', 'paris', 'parkeyhrt', 'part', 'partial', 'participant', 'participate', 'particular', 'partir', 'partner', 'party', 'pass', 'passiep', 'passoword', 'passowrd', 'passsw', 'passw', 'password', 'passwordmanager', 'passwords', 'passwort', 'passwprd', 'past', 'paste', 'pasting', 'pasword', 'pat', 'patch', 'patching', 'patent', 'paternoster', 'path', 'pathryu', 'pathuick', 'patirjy', 'pavan', 'pay', 'payable', 'paycheck', 'payroll', 'payslip', 'pbx', 'pbxqtcek', 'pc', 'pcd', 'pcl', 'pcqobjnd', 'pcqobjndadditional', 'pcs', 'pdf', 'pdfmailer', 'pdlc', 'pdu', 'pe', 'pedxruyf', 'peer', 'peilerk', 'pende', 'people', 'per', 'percent', 'perfect', 'perfectly', 'perform', 'performance', 'perhaps', 'period', 'periodic', 'permanently', 'permission', 'permit', 'permition', 'perry', 'person', 'personal', 'personally', 'personel', 'personen', 'personnel', 'pethrywr', 'petrghada', 'pf', 'pfad', 'pfjwinbg', 'pfneutkg', 'pfxwuvce', 'pfzxecbo', 'pghjkanijkraj', 'ph', 'phbnwmkl', 'phd', 'phil', 'philadelph', 'phishe', 'phishing', 'phjencfg', 'phlpiops', 'phone', 'photo', 'phr', 'phvkowml', 'physical', 'pi', 'picjthkd', 'pick', 'picking', 'picture', 'piece', 'pihddltzr', 'pilot', 'piltzrnj', 'pin', 'ping', 'pinging', 'pinkow', 'pinter', 'pintfgtyo', 'pinto', 'pintoddsa', 'piolfghim', 'piper', 'pipfhypeu', 'pivot', 'pjwvdiuz', 'pk', 'pkj', 'pkwcdbrv', 'pl', 'pla', 'place', 'plan', 'planck', 'planner', 'planning', 'plant', 'plantronic', 'plase', 'platform', 'plaunyud', 'play', 'player', 'plc', 'please', 'plm', 'ploxzut', 'pls', 'plsseald', 'pltndoab', 'plug', 'plugin', 'plus', 'pluytd', 'plvnuxmry', 'pm', 'pmm', 'pmqansex', 'pmrvxbnjhivaramdntyaiah', 'pnabslgh', 'png', 'pngufmvq', 'pnwbkitv', 'poaty', 'pobleme', 'pofgtzdravem', 'pogredrty', 'point', 'pol', 'poland', 'policy', 'pollaurid', 'pollaurido', 'poloidgthyl', 'poloisky', 'polycom', 'poncacity', 'pop', 'populate', 'popup', 'port', 'portable', 'portal', 'portelance', 'porteta', 'portfolio', 'portion', 'porwrloisky', 'pos', 'position', 'positionen', 'posrt', 'posrte', 'possibility', 'possible', 'post', 'potential', 'pour', 'povich', 'povictcfgt', 'powder', 'power', 'powerpoint', 'pozna', 'pp', 'ppm', 'ppt', 'pqjrhsul', 'pqkthilr', 'pr', 'practice', 'pradtheyp', 'pragtyhusa', 'pragtyhusas', 'prakaythsh', 'prb', 'prbsddqd', 'pre', 'precall', 'prefetch', 'preparation', 'prepare', 'preparedness', 'prerequisite', 'present', 'presenter', 'presently', 'president', 'press', 'presse', 'presume', 'prevent', 'prevention', 'previous', 'previously', 'prgxwzco', 'price', 'pricing', 'primarily', 'primary', 'print', 'printer', 'printing', 'printout', 'printscreen', 'printserver', 'prior', 'prioritize', 'priority', 'prishry', 'private', 'privilege', 'pro', 'proactive', 'probably', 'probe', 'probieren', 'problem', 'probleme', 'problleme', 'procedure', 'proceed', 'process', 'processing', 'procte', 'proctected', 'prod', 'produce', 'product', 'production', 'productive', 'productivity', 'productly', 'productmanagement', 'produkt', 'produkte', 'produktion', 'professional', 'profil', 'profile', 'program', 'programdnty', 'programdntym', 'programdntyme', 'programdntys', 'prohibit', 'project', 'projection', 'projekt', 'projekte', 'promote', 'prompt', 'prompting', 'prompts', 'proofreading', 'propagate', 'proper', 'properly', 'property', 'proplem', 'protection', 'protel', 'proto', 'protocol', 'prototype', 'provide', 'provider', 'provigjtyswkb', 'proxy', 'proygkjt', 'prt', 'prtgghjk', 'prtgn', 'prtikusy', 'prtor', 'prtoru', 'prtqc', 'prtqi', 'prtqv', 'prtqz', 'prtsg', 'przcxbml', 'ps', 'psf', 'pssword', 'pte', 'pthyu', 'ptirhcwv', 'ptmzsbhk', 'ptuqhrwk', 'ptygkvzl', 'pu', 'public', 'publication', 'publish', 'pubreport', 'puedo', 'pulcqkzo', 'pull', 'pulverleitstand', 'purartnpn', 'purchase', 'purchasing', 'purple', 'purpose', 'push', 'pushixepyfbga', 'put', 'puxsvfwr', 'pvd', 'pw', 'pwd', 'pwrhmc', 'py', 'pyeothbl', 'pyua', 'pzcmv', 'qa', 'qamyesuv', 'qaohugxw', 'qasdhyzm', 'qauighdpnager', 'qbgclmit', 'qbgjwaye', 'qcjevayr', 'qcxivzag', 'qdapolnv', 'qdztknml', 'qfwijzbd', 'qgtxjsdc', 'qgwypesz', 'qhjkxoyw', 'qidgvtwa', 'qieagkos', 'qieswrfu', 'qifzkoej', 'qiwhfkdv', 'qjeymnzs', 'qkmgtnla', 'qlhmawgi', 'qmglkaru', 'qngschtz', 'qnigujek', 'qnxhoryg', 'qolrvbip', 'qs', 'qsmrwvle', 'qty', 'qualit', 'quality', 'qualitycontrol', 'quantity', 'quarant', 'quarantine', 'que', 'queretaro', 'querrie', 'query', 'question', 'questions', 'queuing', 'quick', 'quickly', 'quit', 'quite', 'quota', 'quote', 'qvbutayx', 'qvhixotw', 'qvncizuf', 'qwghlvdx', 'qwijaspo', 'qwvpgayb', 'qwynjdbk', 'qzhgdoua', 'qzkyugce', 'rabbit', 'rabkypet', 'rack', 'rad', 'radgthika', 'raflghneib', 'raghfhgh', 'raghu', 'ragini', 'ragsbdhryu', 'rai', 'raid', 'railgnfb', 'raise', 'rak', 'rakthyesh', 'ramdnty', 'ramdntya', 'ramdntygy', 'ramdntythanjesh', 'ramdntythanjeshkurtyar', 'ran', 'randomly', 'randstad', 'ranjhruy', 'ranlpbmw', 'ransomware', 'rantlypb', 'rappel', 'rar', 'rather', 'ray', 'rayhtuorv', 'rbmfhiox', 'rbmosifh', 'rbozivdq', 'rbzymfvx', 'rc', 'rce', 'rcf', 'rckf', 'rckfthy', 'rclqfpgt', 'rcwpvkyb', 'rd', 'rden', 'rdig', 'rdp', 'rdyrty', 'reach', 'reachable', 'react', 'reactivate', 'read', 'reader', 'reading', 'realize', 'really', 'reason', 'reassign', 'reatle', 'reboot', 'rebuild', 'recall', 'receipt', 'receive', 'received', 'recent', 'recently', 'rechecke', 'rechner', 'recht', 'recieve', 'recipient', 'recode', 'recognition', 'recognize', 'reconfigure', 'reconnect', 'reconnecte', 'record', 'recording', 'recover', 'recovery', 'recreate', 'recsynqt', 'rectify', 'red', 'reduce', 'redytudy', 'ref', 'refer', 'reference', 'refinery', 'reflect', 'refresh', 'refreshing', 'refuse', 'reg', 'regard', 'regardless', 'regards', 'regen', 'region', 'regional', 'register', 'registergerirtcht', 'registration', 'registry', 'regster', 'regular', 'regularly', 'rehtyulds', 'reiceve', 'reichlhdyl', 'reimbursement', 'reinhard', 'reinstall', 'reinstate', 'reisekosten', 'reject', 'rekwlqmu', 'relate', 'related', 'relation', 'relationship', 'relatively', 'relaunche', 'release', 'remain', 'remappe', 'remedy', 'remember', 'remfg', 'remind', 'reminder', 'remote', 'remotely', 'remove', 'removed', 'renew', 'reoccurre', 'reopen', 'rep', 'repair', 'repeat', 'repeatedly', 'replace', 'replacement', 'replay', 'replicate', 'reply', 'report', 'reporting', 'reportncqulao', 'repoter', 'representative', 'reproduction', 'reprot', 'republish', 'reputation', 'request', 'requester', 'require', 'requirement', 'requisition', 'reroute', 'rerun', 'reschedule', 'research', 'reselect', 'resending', 'reset', 'resetfor', 'reside', 'resign', 'resolution', 'resolve', 'resource', 'respect', 'respective', 'respond', 'response', 'responsibility', 'responsible', 'resset', 'rest', 'restare', 'restart', 'restoration', 'restore', 'restriction', 'result', 'resume', 'rethtyuzkd', 'retrieval', 'retrieve', 'retry', 'return', 'rev', 'revelj', 'revenue', 'revert', 'review', 'revocation', 'reward', 'reyshakw', 'rfa', 'rfc', 'rfvchzmp', 'rfvmeyho', 'rfwlsoej', 'rgds', 'rghkiriuyte', 'rgtry', 'rgtsm', 'rgtyob', 'rhaycqjg', 'rhbsawmf', 'rhfyd', 'rhozsfty', 'rhquvzfm', 'ribbon', 'ricagthyr', 'richoscan', 'richtige', 'rick', 'ricoh', 'riess', 'right', 'rightly', 'ring', 'riqmdnzs', 'risk', 'riuheqsg', 'rjc', 'rjeyfxlg', 'rjsulvat', 'rk', 'rkdwohas', 'rkyjnbqh', 'rlhuwmve', 'rmb', 'rmt', 'rnafleys', 'rname', 'rnsuipbk', 'ro', 'road', 'roaghyunokepc', 'roanoke', 'robdyhr', 'robhyertyj', 'robhyertyjs', 'robot', 'roboworker', 'roceshun', 'rockehsty', 'rod', 'rodny', 'roesshnktler', 'rofghach', 'rohitdrf', 'rohlings', 'rohntyub', 'rohthsit', 'role', 'roles', 'rolghtyuando', 'roll', 'rollfgyuej', 'rolling', 'rollout', 'ron', 'room', 'root', 'roshyario', 'rotate', 'round', 'route', 'router', 'routine', 'routinely', 'row', 'rowville', 'royhtub', 'rpc', 'rpmwh', 'rqeu', 'rqeuest', 'rqflkeuc', 'rqxmaindept', 'rqxsm', 'rrc', 'rsa', 'rspqvzgu', 'rt', 'rter', 'rtgdcoun', 'rtgyon', 'rth', 'rtnyumbg', 'rtnzvplq', 'rtr', 'rtro', 'ru', 'rubiargty', 'rubyfgty', 'rucfxpla', 'ruchitgrr', 'ruckruf', 'rudimentary', 'rudra', 'ruf', 'rujpckto', 'rule', 'run', 'running', 'runtime', 'rus', 'russ', 'russia', 'russoddfac', 'rvjlnpef', 'rwcxkflq', 'rwnhqiyv', 'rxiumhfk', 'rxloutpn', 'rxpjomyf', 'rxutkyha', 'ryafbthn', 'ryhunan', 'ryljar', 'rzonkfua', 'rzpmnylt', 'rzxfgmcu', 'sa', 'sab', 'sabrthy', 'sadghryiosh', 'sadghryioshkurtyar', 'sadiertpta', 'sadjuetha', 'safe', 'safely', 'safrgyynjit', 'sagfhoshgzpkmilu', 'sahryu', 'sahtym', 'sal', 'salary', 'sale', 'salesman', 'salesorg', 'salutation', 'samacocuntname', 'sammelarbpl', 'sample', 'samsung', 'samsungsmgf', 'sandblast', 'sandblasting', 'sandir', 'sandplant', 'sandrgru', 'sanhjtyhru', 'sanmhty', 'santiago', 'santolgiy', 'santrhyat', 'sao', 'sarhfa', 'sarhytukas', 'sartlgeo', 'sathyrui', 'satisfy', 'saturday', 'save', 'saver', 'savgrtyuille', 'savin', 'saving', 'say', 'saztolpx', 'sbcheyu', 'sbgvrncj', 'sbltduco', 'sbtvploj', 'sc', 'scam', 'scan', 'scannen', 'scanner', 'scanning', 'scenario', 'schaem', 'schdule', 'sche', 'schedule', 'scheduled', 'scheduler', 'scheduling', 'schen', 'scherfgpd', 'schetrhsdlw', 'schhdgtmip', 'schicken', 'schlumhdyhter', 'schneider', 'schoegdythu', 'schoemerujt', 'schoenfeld', 'school', 'schr', 'scht', 'schtrtgoyht', 'schuette', 'schung', 'schutzw', 'schyhty', 'scm', 'scn', 'scorecard', 'scot', 'scrap', 'screen', 'screensaver', 'screenshot', 'script', 'scroll', 'scthyott', 'sctqwgmj', 'sd', 'sdjdskjdkyr', 'sdlixwmb', 'se', 'search', 'sebfghkasthian', 'sebxvtdj', 'sec', 'seceffa', 'second', 'secondary', 'section', 'secure', 'securework', 'security', 'see', 'seeing', 'seek', 'seem', 'seemor', 'seep', 'seghyurghei', 'segment', 'sehr', 'sein', 'seite', 'sekarft', 'sektoren', 'select', 'selection', 'self', 'semi', 'send', 'sender', 'sending', 'senior', 'sensation', 'sensor', 'sep', 'separate', 'sept', 'september', 'sequence', 'serch', 'serevrs', 'serial', 'serve', 'server', 'servers', 'service', 'services', 'servicing', 'session', 'set', 'sethdyr', 'setting', 'setun', 'setup', 'setzten', 'sev', 'several', 'severe', 'severeal', 'severity', 'sewilrxm', 'sfb', 'sfmrzdth', 'sgnubadl', 'sgwipoxn', 'sgxqsuojr', 'shadakjsdd', 'shagfferon', 'shall', 'share', 'shared', 'sharee', 'shathyra', 'shatryung', 'shaungtyr', 'sheet', 'sherlockruleid', 'sherwtgyu', 'shesyhur', 'shfhyw', 'shhkioaprhkuoash', 'shhuivashankar', 'shi', 'shift', 'shigthyuva', 'ship', 'shipment', 'shipping', 'shiragavi', 'shiv', 'shivakuhdty', 'shoot', 'shop', 'shopfloor', 'short', 'shortcut', 'shortly', 'shot', 'shourxyp', 'show', 'shrugott', 'shryresh', 'shthuihog', 'shut', 'shutdown', 'shwhdbthyuiethadri', 'shwyhdtu', 'shynhjundar', 'si', 'siavgtby', 'sich', 'sicherheisdatenbank', 'sicne', 'sid', 'side', 'sie', 'sifco', 'sign', 'signal', 'signature', 'signin', 'sihtvocw', 'silvaes', 'silvgtyar', 'sim', 'simekdty', 'similar', 'similarly', 'simple', 'sinc', 'since', 'sincerely', 'sincronizaci', 'sind', 'singapore', 'single', 'singular', 'sinic', 'sir', 'sistemi', 'sit', 'site', 'situation', 'sitz', 'sitze', 'size', 'sk', 'skirtylport', 'skpe', 'skv', 'skwbuvjyheelavant', 'sky', 'skype', 'sl', 'slide', 'slight', 'slimware', 'slip', 'slo', 'slow', 'slowly', 'sls', 'sm', 'small', 'smart', 'smb', 'smcxerwk', 'smdbqnef', 'smkpfjzv', 'sms', 'smtp', 'sn', 'snagit', 'snap', 'snapshot', 'sndaofyw', 'snip', 'snp', 'sntvfpbl', 'soap', 'sobald', 'sobkz', 'soc', 'soedjitv', 'soemec', 'soflex', 'software', 'sogo', 'sohytganvi', 'sokdelfgty', 'sole', 'solely', 'solid', 'sollte', 'solution', 'solutions', 'solve', 'solver', 'somebody', 'someone', 'something', 'sometimes', 'somewhere', 'sonar', 'songhyody', 'sonia', 'soon', 'sooner', 'sorahdyggs', 'sorry', 'sort', 'sound', 'source', 'south', 'southeast', 'souzarft', 'sp', 'space', 'spain', 'spam', 'spamme', 'spare', 'spdczoth', 'speak', 'speake', 'speaker', 'special', 'specialist', 'specially', 'specific', 'specifically', 'specification', 'specify', 'specs', 'speed', 'speichern', 'speicherort', 'spend', 'spengineere', 'spimolgz', 'spin', 'spit', 'splash', 'sponsor', 'spread', 'spreadsheet', 'sprhouiv', 'spxqmiry', 'sql', 'sqlcuhep', 'sqlmtixr', 'sqqqd', 'sr', 'src', 'srcassetofinter', 'srchostname', 'srcport', 'sre', 'srinfhyath', 'srirgrtyam', 'srujan', 'srv', 'srvlavstorage', 'ssen', 'sso', 'ssofgrtymerset', 'ssp', 'sst', 'st', 'stack', 'staebefertigung', 'staerte', 'staff', 'stage', 'stahyru', 'stamp', 'standard', 'stankewitz', 'start', 'starten', 'startpassword', 'startup', 'stat', 'state', 'statement', 'states', 'static', 'station', 'statistic', 'status', 'stavenheim', 'stay', 'steal', 'steel', 'stefdgthy', 'stefdgthyo', 'stefyty', 'stefytyn', 'stehdgty', 'steli', 'step', 'stepfhryhan', 'stgyott', 'sthytachnik', 'stiarhlu', 'stibo', 'stick', 'still', 'stl', 'stock', 'stoebtrt', 'stop', 'stope', 'storage', 'store', 'storno', 'stp', 'stra', 'strahlraum', 'strange', 'strasse', 'stream', 'streng', 'strgrtyiet', 'strictly', 'strigtyet', 'strixner', 'structural', 'structure', 'stuarthsyt', 'stub', 'stuck', 'stundenlang', 'stuwbacm', 'stwpzxbf', 'su', 'sub', 'subbathykrisyuhnyrt', 'subdirectory', 'subfolder', 'subject', 'submission', 'submit', 'submittal', 'subscribe', 'subsystem', 'success', 'successful', 'successfully', 'suddenly', 'sudghnthdra', 'sufficient', 'sugajadd', 'suggest', 'sugisdfy', 'suhrhtyju', 'suite', 'summary', 'summit', 'sunday', 'suniythulkuujmar', 'supervisor', 'supply', 'support', 'suppose', 'sure', 'surge', 'surthryr', 'survey', 'suspect', 'suspend', 'suspicious', 'suspision', 'suthye', 'sv', 'svuxjkpg', 'sw', 'swap', 'swicth', 'swisscom', 'switch', 'switchover', 'switzerland', 'switzerlandik', 'switzerlandim', 'syghmesa', 'syhunil', 'sykpe', 'sylvthryia', 'sylyhtsvesuyter', 'symantec', 'symbol', 'symmetrix', 'syn', 'sync', 'synced', 'synch', 'synche', 'synched', 'synchronisiert', 'synchronisierung', 'synchronization', 'synchronize', 'synchronizer', 'syncronize', 'sype', 'sys', 'sysetem', 'system', 'systems', 'szcbhvwe', 'szockfpj', 'szumyhtulas', 'tab', 'table', 'tablearu', 'tablet', 'tafgtyng', 'tag', 'tagen', 'tagsyrhu', 'tahamt', 'take', 'takeshi', 'takheghshi', 'taking', 'talk', 'tank', 'tape', 'target', 'targetlist', 'task', 'taskmgr', 'tax', 'taxis', 'tbkywpqz', 'tbnovxdp', 'tc', 'tcb', 'tcflirwg', 'tcjnuswg', 'tcode', 'tcp', 'tcwrdqboinition', 'tdlwdkunis', 'tdmgolwn', 'te', 'team', 'teamcall', 'teammeete', 'teamordner', 'teams', 'teamviewer', 'tebenutzer', 'tebetriebssystem', 'tech', 'techn', 'technical', 'technically', 'technician', 'technische', 'technologist', 'technology', 'teh', 'tehrsytu', 'tel', 'telecom', 'telekom', 'telephone', 'telephony', 'teleservice', 'tell', 'temodell', 'temp', 'temperory', 'template', 'temporal', 'temporarily', 'temporary', 'ten', 'terhyury', 'term', 'terminal', 'terminate', 'terralink', 'territory', 'tess', 'tesscenter', 'tetyp', 'teufeae', 'tevkia', 'text', 'tezugriffsstatus', 'tfsehruw', 'tgewaniq', 'tgeyd', 'tghkris', 'tghrlok', 'tgryhu', 'th', 'tha', 'thadasgg', 'thadhylman', 'thank', 'thanking', 'thanx', 'thaybd', 'thdjzolw', 'thdjzolwronization', 'theajdlkadyt', 'theeadjjd', 'theecanse', 'theft', 'thehub', 'thema', 'theme', 'themfg', 'therefore', 'theydbar', 'thing', 'think', 'thinking', 'third', 'thiw', 'thjquiyl', 'thnsguzj', 'thomafghk', 'thomklmas', 'though', 'thought', 'thoyht', 'threat', 'three', 'threshold', 'thrgxqsuojr', 'thrice', 'throughout', 'throw', 'thru', 'thry', 'thryad', 'thryd', 'thrydad', 'thrydsss', 'thrydufg', 'thsadyu', 'thsaqsh', 'thsgy', 'thsyrley', 'thumb', 'thursday', 'thvnfs', 'thx', 'thyel', 'ti', 'ticker', 'ticket', 'ticketing', 'tier', 'tif', 'tiffrtany', 'tifpdchb', 'tikona', 'till', 'tim', 'time', 'timecard', 'timeclock', 'timeframdntye', 'timely', 'timeout', 'times', 'timnhyt', 'tinmuym', 'tinyurl', 'tipset', 'titcket', 'title', 'tiyhum', 'tjlizqgc', 'tjwdhwdw', 'tkhaymqg', 'tkpfumeb', 'tm', 'tmqfjard', 'tmunkaiv', 'tn', 'tnhymatj', 'tnk', 'tnlshpwb', 'tnorudbf', 'tnxiuramdnty', 'today', 'todghtyud', 'tofinance', 'together', 'toll', 'tologin', 'tom', 'tomashtgd', 'tomlin', 'tomorrow', 'tone', 'tonight', 'tony', 'tool', 'toolcal', 'tooldplcmmaninp', 'toolher', 'toolhone', 'toolical', 'tooling', 'toolkuznetsk', 'toollant', 'toolmail', 'toolometer', 'toolrently', 'toolroom', 'toolscal', 'toolte', 'tooltion', 'top', 'topcustomersendmarkhtyet', 'topefd', 'tor', 'toriaytun', 'tortm', 'torvxeda', 'tot', 'total', 'totally', 'touch', 'tower', 'town', 'township', 'tpfnzkli', 'tpurnjvi', 'tqnbkjgu', 'tqvpohwj', 'tr', 'trace', 'tracert', 'track', 'tracker', 'trade', 'traffic', 'trail', 'train', 'trainer', 'training', 'transaction', 'transfer', 'transition', 'transmit', 'transportation', 'trask', 'travel', 'traveler', 'traversecity', 'treat', 'trghwyng', 'trgqbeax', 'trhdaa', 'trhfyd', 'trhsydsff', 'trhsyvdur', 'trial', 'trip', 'trkwehzg', 'trmzwbyc', 'tro', 'trouble', 'troubleshoot', 'troubleshooting', 'trtgoy', 'true', 'trunk', 'trup', 'trurthyuft', 'trust', 'truview', 'try', 'tryhutehdtui', 'ts', 'tsbnfixp', 'tsicojkp', 'tsk', 'tskvmwag', 'tsmanagement', 'tsrp', 'tszvorba', 'ttl', 'tu', 'tuesday', 'tujutnis', 'turbo', 'turkey', 'turn', 'turnover', 'tuzkadxv', 'tvcdfqgp', 'twejhda', 'twice', 'two', 'tx', 'tyhuellis', 'tyhufrey', 'type', 'typing', 'tyss', 'tyyhtuler', 'tzrekwqf', 'tzung', 'uacyltoe', 'uadkqcsj', 'uanigkqc', 'uaoyhcep', 'ubayizsq', 'ubyjolnc', 'ubznqpsy', 'udrzjxkm', 'ueiybanz', 'uekapfzt', 'ug', 'ugelctsz', 'ughynofq', 'ughzilfm', 'ugnthxky', 'ugrmkdhx', 'ugyothfz', 'uhammet', 'uhefoqtg', 'ui', 'uidgt', 'uitfqsen', 'uiu', 'ujtmipzv', 'uk', 'ukynmfig', 'ulrike', 'ulv', 'um', 'umbau', 'umsok', 'umykjweg', 'umzcxfah', 'umzug', 'un', 'unable', 'unannounced', 'unauthorised', 'unauthorized', 'unavailable', 'unbale', 'unbekannten', 'unblock', 'unblocked', 'unchecked', 'unconverted', 'und', 'undate', 'undeliverable', 'understand', 'understanding', 'undock', 'unexpected', 'unfortunate', 'unfortunately', 'unfreeze', 'uninstall', 'uninstalle', 'uninstalled', 'unique', 'unit', 'united', 'universal', 'unknown', 'unless', 'unlicensed', 'unlock', 'unlocked', 'unlocking', 'unlook', 'unmonitored', 'unplanned', 'unrbafjx', 'unread', 'unresolved', 'unsuccessful', 'unsupported', 'unter', 'unterst', 'untinstall', 'unzip', 'upadate', 'upcoming', 'update', 'updated', 'updation', 'uperform', 'upgrade', 'upgtrvnj', 'upitdmhz', 'upiyobvj', 'upload', 'upon', 'upper', 'uprmwlgb', 'uprodleq', 'ups', 'uqjbkydr', 'urgapyzt', 'urgent', 'urgently', 'urhbvfgd', 'url', 'urlaubsplanung', 'urspr', 'urvitans', 'us', 'usa', 'usaed', 'usage', 'usalikfj', 'usas', 'usb', 'usd', 'use', 'useid', 'user', 'userid', 'userlogin', 'username', 'users', 'usperhki', 'usrr', 'ustvaifg', 'usual', 'usually', 'usx', 'utbnkyop', 'uthagtpgc', 'utiliuytretion', 'utilization', 'utilize', 'utrimobs', 'utthku', 'utvimnwo', 'utwijzag', 'uwe', 'uwtakcmj', 'uxhq', 'uxndyfrs', 'uyjlodhq', 'uylvgtfi', 'uyocgasl', 'uypsqcbm', 'uzojtkmh', 'uzpycdho', 'uzvsnlbd', 'va', 'vacation', 'vaghyliort', 'vahxnfgl', 'vaigycet', 'vajtodny', 'valid', 'validate', 'validity', 'value', 'vanghtydec', 'vanthyrdys', 'variable', 'variant', 'various', 'vasanqi', 'vatpgsxn', 'vaugtyghtl', 'vault', 'vcenter', 'vdhfy', 'vdjqoeip', 'veiw', 'vendor', 'venfgugjhytpal', 'venkbghksh', 'venkthrysh', 'ver', 'verbindung', 'verboma', 'verboncouer', 'verboten', 'verbreitung', 'verggermany', 'verified', 'verify', 'verizon', 'verkauf', 'verkaufsgebiet', 'verl', 'versand', 'versehens', 'version', 'versions', 'verteilung', 'vertiayhtu', 'vertraulich', 'vervielf', 'vfdglqnp', 'vfjsubao', 'vfkwscao', 'vfnraqxc', 'vg', 'vga', 'vh', 'vhihrty', 'via', 'vic', 'vice', 'vicinity', 'victim', 'vid', 'video', 'vidya', 'viele', 'vielen', 'view', 'viewer', 'vig', 'vignbhyesh', 'vijeghtyundra', 'vikrhtyas', 'vikrhtyaskurtyar', 'vil', 'village', 'viotto', 'vip', 'virakv', 'virtual', 'virtualcenter', 'virus', 'visibility', 'visible', 'visit', 'visitble', 'visitor', 'vitalyst', 'vithrkas', 'vivbhuek', 'vivian', 'vivthyek', 'vjuybcwz', 'vkdobexr', 'vksfrhdx', 'vkzwafuh', 'vlan', 'vlinspectkiosk', 'vm', 'vmax', 'vmhfteqo', 'vmqcyzda', 'vmsliazh', 'vmthcrkf', 'vmware', 'vnglqiht', 'vnhaycfo', 'vnjdghui', 'vnjwsadx', 'vnlqkgpb', 'vobluewg', 'vocalization', 'vogelfontein', 'volume', 'vom', 'von', 'vor', 'voreingestellte', 'vorr', 'vous', 'vp', 'vpksyfco', 'vpn', 'vpns', 'vriendelijke', 'vrkoqaje', 'vroanwhu', 'vrtx', 'vs', 'vsbhyrt', 'vscdzjhg', 'vsdtxwry', 'vsid', 'vsknlfri', 'vsphere', 'vtokgley', 'vtykrubi', 'vulnerability', 'vulnerable', 'vupglewt', 'vuxdrbng', 'vvamrtryot', 'vvandwkjis', 'vvbloor', 'vvblorytor', 'vvblothryor', 'vvbthryhn', 'vvdfgtyuji', 'vvdgtyachac', 'vvfrtgarnb', 'vvftgor', 'vvgtybyrn', 'vvhthyoffc', 'vvkatt', 'vvkertgipn', 'vvkhyhum', 'vvkthyiska', 'vvkuthyrppg', 'vvmathkag', 'vvnergtubj', 'vvparthyrra', 'vvrajai', 'vvrtgwildj', 'vvrttraja', 'vvshyuwb', 'vvsthryomaa', 'vvtdfettc', 'vvterra', 'vvtghjscha', 'vvtgryhud', 'vvthuenka', 'vvthygschj', 'vvttraja', 'vvwtyeidt', 'vwaliogd', 'vwkasnxe', 'vxfkwaqh', 'vxuikqaf', 'vybdkuoa', 'vybmcrxo', 'vyjmlain', 'vyucbagx', 'vzqomdgt', 'wafglhdrhjop', 'wait', 'waldjrrm', 'walfgtkek', 'walk', 'wallpaper', 'wanayht', 'want', 'wanthryg', 'warden', 'warehouse', 'wareneingang', 'warm', 'warn', 'warning', 'warrrtyen', 'wasload', 'waste', 'watch', 'wauhocsk', 'way', 'wbsfavhg', 'wc', 'wcrbmgon', 'wcu', 'wdfwsggalleh', 'wdjwd', 'wdkfww', 'wdkwdwd', 'wdkyiqfx', 'wdleell', 'wdnwk', 'wdnwwl', 'wdq', 'wdugqatr', 'wdwddw', 'wdwmd', 'wear', 'weaver', 'web', 'webdhyt', 'webfnhtyer', 'webpage', 'webportal', 'webshop', 'webside', 'website', 'websty', 'wechseln', 'wednesday', 'week', 'weekday', 'weekend', 'weekly', 'wehlauer', 'wei', 'weit', 'welchia', 'welcome', 'well', 'wenn', 'werden', 'werk', 'werkzeuge', 'wesley', 'west', 'westcoast', 'wester', 'western', 'weszfyok', 'wethruiberg', 'wezeb', 'wg', 'wghjkftewj', 'wgpelvyn', 'wgpimkle', 'wgq', 'wgtyills', 'wgtyillsford', 'wgyhktic', 'whalep', 'whaley', 'wharehouse', 'whatever', 'whatlgp', 'whenever', 'whereas', 'wherein', 'whether', 'white', 'whoever', 'whole', 'whomever', 'whose', 'whovmtez', 'whsipqno', 'whwdiuw', 'wi', 'wichtige', 'wickhamtf', 'wie', 'wieder', 'wifi', 'wiggrtgyis', 'wiksufty', 'wildschuetz', 'wilsfgtjl', 'win', 'window', 'windows', 'windy', 'winow', 'winrar', 'winwip', 'wip', 'wir', 'wird', 'wire', 'wireless', 'wirftejas', 'wise', 'within', 'withn', 'without', 'witrh', 'wkly', 'wkqjcfgy', 'wlan', 'wly', 'wmsg', 'wnk', 'wnkpzcmv', 'wohzmlib', 'wolfthry', 'word', 'work', 'workaround', 'workbook', 'worker', 'workflow', 'working', 'worklist', 'workman', 'workmen', 'workplace', 'worksheet', 'workshop', 'workstation', 'world', 'worm', 'worry', 'worthy', 'wothyehre', 'would', 'wpcatozg', 'wpdxlbhz', 'wptbgchj', 'wqbsodni', 'wqfzjycu', 'wqinjkxs', 'wqtlzvxu', 'wrapper', 'wrcktgbd', 'write', 'wrong', 'wrtyuh', 'ws', 'wsb', 'wsboedtj', 'wseacnvi', 'wshqqhdqh', 'wsjkbw', 'wslifbzc', 'wsljdqqds', 'wtldpncx', 'wtqdyoin', 'wtqdyoinware', 'wtubpdsz', 'wu', 'wunderlist', 'wurde', 'wusdajqv', 'wvdxnkhf', 'wvngzrca', 'wvprteja', 'wvqgbdhm', 'wwdyuan', 'www', 'wxnetroc', 'wxstfouy', 'wy', 'wyighrjl', 'wyjsbzda', 'wynhtydf', 'wzfryxav', 'wznkpjis', 'wzrgyunp', 'xabkyoug', 'xacbc', 'xackgvmd', 'xaqzisrk', 'xawlkiey', 'xaykwtrf', 'xbdht', 'xbmyvnqf', 'xbsckemt', 'xbvghozp', 'xcel', 'xcwavhyu', 'xd', 'xedbf', 'xernsfqa', 'xex', 'xfizlnap', 'xhaomnjl', 'xhlg', 'xighjacj', 'xirwgjks', 'xjhpznd', 'xjhpznds', 'xjzcbgnp', 'xlsx', 'xmeytziq', 'xmgptwho', 'xmlbfjpg', 'xnklbfua', 'xnwtyebg', 'xocyhnkf', 'xosdfhbu', 'xoukpfvr', 'xovczlad', 'xp', 'xprwayoc', 'xpugntjv', 'xqgovpik', 'xrqnyzhb', 'xsdb', 'xsrkthvf', 'xszoedmc', 'xt', 'xtmjlari', 'xvgzdtqj', 'xvysrnmb', 'xwbesorf', 'xwbesorfs', 'xwelumfz', 'xwirzvda', 'xwlcqfsr', 'xxxxx', 'xyedbsnm', 'xyz', 'xzbtcfar', 'yahoo', 'yambwtfk', 'yandfgs', 'yathryu', 'ybtmorxp', 'ybuvlkjq', 'ycimqxdn', 'year', 'yecbmliq', 'yegzbvru', 'yepifgbl', 'yes', 'yesterday', 'yet', 'yevirgnl', 'yfeuhtib', 'yhhm', 'yhmwxsqj', 'yhrdw', 'yicpojmf', 'yidvloun', 'yihelxgp', 'yimwfntl', 'yjtdkfuo', 'yjurztgd', 'ykeilmog', 'ylhogjct', 'ylhptzmd', 'ylqvitsk', 'ymedkatw', 'yno', 'yofhirjs', 'yopvwrjq', 'yotyhga', 'youfzmgp', 'ypladjeu', 'yptglhoe', 'yqddquanw', 'yqxlbswt', 'yrjekzqv', 'yrjhd', 'ysfiwvmo', 'yspnqxgw', 'ytd', 'ytqhfmwi', 'yubtgy', 'yucgfmiq', 'yuglsrwx', 'yukdzwxs', 'yup', 'yvhlenaz', 'yvlswgxb', 'yvtjzkaw', 'ywqgrbnx', 'yzemkhbq', 'yzugpdco', 'zaf', 'zanegtyla', 'zarlgjes', 'zartupsw', 'zazrtulds', 'zcaermdt', 'zcqnuawo', 'zcustgrp', 'zdcheloy', 'zdfymgjp', 'zdsxmcwu', 'zebra', 'zedghkler', 'zedlet', 'zeigen', 'zeit', 'zeiterfassung', 'zeitwirtschaft', 'zembok', 'zgdckste', 'zhang', 'zheqafyo', 'zhhtyangq', 'zhrgtang', 'zhudrs', 'zhuyhts', 'ziewxqof', 'zifujpvr', 'zigioachstyac', 'zip', 'zjihgovn', 'zlettel', 'zlgmctws', 'zlkmlwdwdade', 'zlnfpuam', 'zlnxswvp', 'zload', 'zlqfptjx', 'zmc', 'zmm', 'zno', 'znq', 'znr', 'zns', 'zocjdutp', 'zollerfgh', 'zone', 'zopcrshl', 'zpfitlyu', 'zpononpo', 'zpumhlic', 'zpwgoqju', 'zqbmxdgy', 'zrfc', 'zscr', 'zslugaxq', 'zsluxctw', 'zspvxrfk', 'ztnfhiwq', 'zu', 'zugriff', 'zum', 'zuothryrt', 'zur', 'zuteillisten', 'zvjxuahe', 'zvnxlobq', 'zvygmnco', 'zwph', 'zwphj', 'zxdtskpw']
chi square method for better results
ch2 = SelectKBest(chi2, k=5000)
X_train_chi_count = ch2.fit_transform(X_train_count, y_train_count)
X_test_chi_count = ch2.transform(X_test_count)
X_train_chi_count, X_test_chi_count
#Selection of best features
(<4348x5000 sparse matrix of type '<class 'numpy.int64'>' with 49487 stored elements in Compressed Sparse Row format>, <1087x5000 sparse matrix of type '<class 'numpy.int64'>' with 11117 stored elements in Compressed Sparse Row format>)
data = {'ModelName':['TrainAccuracy', 'TestAccuracy', 'PrecisionScore', 'RecallScore','F1Score']}
modecomparedf= pd.DataFrame(data)
modecomparedf
| ModelName | |
|---|---|
| 0 | TrainAccuracy |
| 1 | TestAccuracy |
| 2 | PrecisionScore |
| 3 | RecallScore |
| 4 | F1Score |
1.Completed the count vectorizer transformation and created the transformed input to apply to model
2.Created the data frame to observe model comparison
3.Converted the target column to label encoded output
4.Also for selecting best features we have used chisquare method which gives a better accuracy
8.We have splitted the data to 80:20
mclf = MultinomialNB().fit(X_train_count, y_train_count)
data_m=predict_ml_model(mclf,X_train_chi_count,y_train_count,X_test_chi_count,y_test_count)
modecomparedf['MultinomialNB'] = data_m
accuracy 0.921803127874885 Training score: 93.81324747010119 Testing score: 92.1803127874885
rclf = RandomForestClassifier()
data_m=predict_ml_model(rclf,X_train_chi_count,y_train_count,X_test_chi_count,y_test_count)
modecomparedf['RandomForest'] = data_m
accuracy 0.922723091076357 Training score: 96.68813247470102 Testing score: 92.27230910763569
sclf= SGDClassifier(loss='hinge', penalty='l2',alpha=1e-3, random_state=42, max_iter=5, tol=None)
sclf.fit(X_train_chi_count, y_train_count)
y_pred = sclf.predict(X_test_chi_count)
print('accuracy %s' % accuracy_score(y_pred, y_test_count))
print('Training score:',sclf.score(X_train_chi_count, y_train_count)*100)
print('Testing score:',sclf.score(X_test_chi_count,y_test_count)*100)
accuracy 0.9080036798528058 Training score: 94.77920883164673 Testing score: 90.80036798528059
sclf=LogisticRegression(n_jobs=1, C=1e5)
data_m=predict_ml_model(sclf,X_train_chi_count,y_train_count,X_test_chi_count,y_test_count)
modecomparedf['LogisticRegression'] = data_m
accuracy 0.9254829806807727 Training score: 96.68813247470102 Testing score: 92.54829806807727
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
modecomparedf
| ModelName | MultinomialNB | RandomForest | LogisticRegression | |
|---|---|---|---|---|
| 0 | TrainAccuracy | 93.813247 | 96.688132 | 96.688132 |
| 1 | TestAccuracy | 92.180313 | 92.272309 | 92.548298 |
| 2 | PrecisionScore | 95.279737 | 94.993091 | 94.171008 |
| 3 | RecallScore | 92.180313 | 92.272309 | 92.548298 |
| 4 | F1Score | 93.328809 | 93.177341 | 93.096334 |
modecomparedf
modelCompare_countVect=modecomparedf.set_index('ModelName').rename_axis(None).T
modelCompare_countVect['Model_Name']=['MultinomialNB','RandomForest','LogisticRegression']
modelCompare_countVect
modelCompare_countVect.plot(kind='bar',x='Model_Name',y=['TrainAccuracy','TestAccuracy'], grid=True,width = 0.4)
plt.title('Training and Test accuracy')
plt.ylabel('Accuracy')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(15,10))
plt.show()
<Figure size 1080x720 with 0 Axes>
modelCompare_countVect.plot(kind='bar',x='Model_Name',y='PrecisionScore', grid=True)
plt.title('Precision Score')
plt.ylabel('PrecisionScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_countVect.plot(kind='bar',x='Model_Name',y='RecallScore', grid=True)
plt.title('Recall Score')
plt.ylabel('RecallScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_countVect.plot(kind='bar',x='Model_Name',y='F1Score', grid=True)
plt.title('F1 Score')
plt.ylabel('F1Score')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
#,'F1Score']
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
modelCompare_countVect.plot(kind='bar',x='Model_Name',y=['PrecisionScore','RecallScore','F1Score'], grid=True)
plt.title('Metrices Comparison')
plt.ylabel('Metrices')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 720x360 with 0 Axes>
modellist={'Random Forest': RandomForestClassifier(random_state=3),
'Multinomial Naive Bayes': MultinomialNB(),
'Logistic Regression': LogisticRegression()}
def classification_Report(modellist):
for k, item in modellist.items():
item.fit(X_train_chi_count.toarray(), y_train_count)
y_pred = item.predict(X_test_chi_count.toarray())
report = classification_report(y_test_count, y_pred)
print(k)
print(report)
classification_Report(modellist)
Random Forest
precision recall f1-score support
0 0.94 1.00 0.97 802
1 0.82 0.48 0.61 56
2 1.00 0.75 0.86 52
3 0.86 0.92 0.89 135
4 0.75 0.36 0.48 42
accuracy 0.92 1087
macro avg 0.87 0.70 0.76 1087
weighted avg 0.92 0.92 0.91 1087
Multinomial Naive Bayes
precision recall f1-score support
0 0.95 0.99 0.97 802
1 0.73 0.54 0.62 56
2 0.95 0.77 0.85 52
3 0.82 0.93 0.87 135
4 1.00 0.21 0.35 42
accuracy 0.92 1087
macro avg 0.89 0.69 0.73 1087
weighted avg 0.92 0.92 0.91 1087
Logistic Regression
precision recall f1-score support
0 0.95 0.99 0.97 802
1 0.87 0.59 0.70 56
2 1.00 0.73 0.84 52
3 0.86 0.93 0.89 135
4 0.74 0.40 0.52 42
accuracy 0.93 1087
macro avg 0.88 0.73 0.79 1087
weighted avg 0.93 0.93 0.92 1087
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
We have fitted the transformed input with chi square selection to Random forest Logistic Regression and Multinomial Naive Bayes models and plotted the test train accuracy plot.
From the comparison mentioned above it is inferred that though Logistic regression and Random forest gives better training accuracy but the test accuracy comes out to make large overfit . Multinomial NB gives 93% training accuracy in the training dataset and 91% in the testing data which shows that it has less amount of overfit. So, for count vectorizer, multinomial NB gives better result in terms of accuracy and precision. Also we can see the f1 score and precision is not good for second highest and 4th highest group.So we will dig more in other models
vectorizer = TfidfVectorizer()
vectorizer.fit(x_train_count)
TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',
dtype=<class 'numpy.float64'>, encoding='utf-8',
input='content', lowercase=True, max_df=1.0, max_features=None,
min_df=1, ngram_range=(1, 1), norm='l2', preprocessor=None,
smooth_idf=True, stop_words=None, strip_accents=None,
sublinear_tf=False, token_pattern='(?u)\\b\\w\\w+\\b',
tokenizer=None, use_idf=True, vocabulary=None)
tfidf_tokens = vectorizer.get_feature_names()
print(tfidf_tokens)
['aa', 'ab', 'abap', 'abbc', 'abc', 'abd', 'abdhtyu', 'abend', 'abended', 'abgebildet', 'abgrtyreu', 'abholen', 'ability', 'abl', 'able', 'abort', 'aborted', 'absender', 'absolutely', 'abstech', 'ac', 'acc', 'accdb', 'acce', 'accees', 'accept', 'acceptance', 'accesible', 'acceso', 'access', 'accessible', 'accessing', 'accidentally', 'accompany', 'accomplish', 'accord', 'accordance', 'accordingly', 'accound', 'account', 'accounting', 'accounts', 'accout', 'accse', 'accsess', 'acct', 'accurate', 'acess', 'acgyuna', 'achghar', 'achghyardr', 'achim', 'acl', 'acqpinyd', 'acquire', 'acrobat', 'across', 'act', 'action', 'activate', 'activation', 'active', 'activesync', 'activex', 'activitiess', 'activity', 'actual', 'actually', 'aczyfqjr', 'ad', 'adapter', 'add', 'added', 'addin', 'addition', 'additional', 'additionally', 'addon', 'address', 'addressee', 'adelhmk', 'adgtym', 'adjtmlzn', 'adjust', 'admin', 'administra', 'administrador', 'administration', 'administrative', 'administrator', 'adobe', 'adressaten', 'adresse', 'advance', 'advanced', 'advantage', 'advice', 'advise', 'advisor', 'adwjfpbreu', 'ae', 'aeea', 'aenderungsantrag', 'aeophctw', 'aerospace', 'aerp', 'aese', 'aetwpiox', 'aevzsogn', 'afefsano', 'affect', 'affected', 'afghtyjith', 'aficio', 'afkstcev', 'afplnyxb', 'africa', 'afternoon', 'afukzhnm', 'ag', 'agathon', 'agdsqbwv', 'agent', 'agentid', 'agfxelwz', 'aggergrythator', 'aghl', 'aghw', 'aghynil', 'agian', 'ago', 'agreement', 'agrtywal', 'agvw', 'ahbgjrqz', 'ahead', 'ahlqgjwx', 'ahmet', 'ahyiuqev', 'ahypftjx', 'aimcfeko', 'aiqjxhuv', 'aircap', 'aisl', 'aitsgqwo', 'ak', 'akiowsmp', 'akirtyethsyd', 'aktion', 'aktplhre', 'al', 'alarm', 'albaney', 'alert', 'alerting', 'alex', 'alexandfrre', 'alexandre', 'alicona', 'alle', 'allein', 'allert', 'allgemeines', 'allocate', 'allow', 'allowe', 'alluser', 'allway', 'almost', 'almrgtyeiba', 'alone', 'along', 'already', 'alrthyu', 'also', 'alt', 'alte', 'alternate', 'alternative', 'although', 'altogether', 'always', 'alwaysupservice', 'amadeu', 'amar', 'amend', 'amerirtca', 'amerirtcas', 'amet', 'amhywoqg', 'amihtar', 'amlswjfr', 'amniujsh', 'amount', 'amssm', 'analtyicspro', 'analysis', 'analyst', 'analytic', 'analyze', 'analyzer', 'anantadth', 'ancile', 'andere', 'anderen', 'andrdgrtew', 'android', 'andthyerh', 'anfghyudrejy', 'anftgup', 'angezeigt', 'angyta', 'anh', 'anira', 'anivdcor', 'anleitung', 'annehman', 'annette', 'anniversary', 'announce', 'annoying', 'anonymize', 'another', 'anrgtdy', 'answer', 'answering', 'anti', 'anticipation', 'antivirus', 'antjuyhony', 'anup', 'anvqzdif', 'anwendungstechniker', 'anybody', 'anyhusppa', 'anymore', 'anyother', 'anything', 'anytime', 'anyway', 'anyways', 'ao', 'aofnvyzt', 'aolhgbps', 'aorthyme', 'aoshpjiu', 'aoyrspjv', 'ap', 'apac', 'aparecido', 'aplication', 'apologize', 'app', 'appair', 'apparently', 'appear', 'appeare', 'appendix', 'apple', 'applicable', 'application', 'applications', 'apply', 'appointment', 'appoval', 'appreciate', 'appreciatehub', 'apprentice', 'appricatehub', 'appropriate', 'approval', 'approve', 'approver', 'approx', 'approximate', 'apps', 'april', 'apusm', 'apvpn', 'aqihfoly', 'aqstdryv', 'aqzcisjy', 'arac', 'arbeitsstationsvertrauensstellung', 'arc', 'arcade', 'arcgonvy', 'architecture', 'archive', 'archived', 'area', 'arexjftu', 'argentina', 'argtxmvcumar', 'around', 'arrange', 'arrangement', 'arsbtkvd', 'article', 'aryndruh', 'asa', 'asano', 'asfgthok', 'ashdtyf', 'asheshopsw', 'ashley', 'asia', 'asistance', 'asjadj', 'ask', 'aspx', 'asset', 'assign', 'assignment', 'assist', 'assistance', 'assistant', 'associate', 'asst', 'assume', 'assurance', 'aswl', 'aswyuysm', 'atache', 'athjyul', 'atm', 'att', 'attach', 'attachment', 'attack', 'attacker', 'attempt', 'attend', 'attendance', 'attention', 'attn', 'attribute', 'atttache', 'auch', 'audi', 'audible', 'audio', 'audit', 'auditor', 'auf', 'aufgrund', 'auftr', 'auftrgasbearb', 'aug', 'augdec', 'august', 'aurangabad', 'aus', 'ausgabe', 'ausgenommen', 'ausgeschaltet', 'ausliefern', 'australia', 'autamatically', 'authentic', 'authenticate', 'authentication', 'authorisation', 'authorization', 'authorize', 'auto', 'automatci', 'automatic', 'automatically', 'automation', 'automatisch', 'autoresolve', 'autorice', 'av', 'availability', 'available', 'ave', 'average', 'avez', 'avsbdhyu', 'aw', 'await', 'award', 'awards', 'aware', 'awareness', 'away', 'awddmwdol', 'awhile', 'awkrdqzb', 'awswere', 'awyl', 'awysinic', 'awyw', 'awywx', 'axesnghb', 'axhkewnv', 'aylrbosw', 'ayrhcfxi', 'aytjedki', 'azbtkqwx', 'azoyklqe', 'azubis', 'azure', 'azvixyqg', 'babanlal', 'babhjbu', 'back', 'backdate', 'background', 'backorder', 'backup', 'bad', 'badgknqs', 'bagtylleg', 'bahdqrcs', 'balance', 'balancing', 'balzer', 'band', 'bank', 'bankrd', 'bar', 'barcelona', 'barcode', 'base', 'basis', 'batch', 'bathylardb', 'battel', 'battery', 'batuhan', 'bay', 'bb', 'bc', 'bcd', 'bctypmjw', 'bdwdwarbara', 'beabsichtigten', 'bearbeiten', 'beathe', 'becke', 'beckshtyw', 'beckshtywsnh', 'become', 'bedord', 'bee', 'beeping', 'begin', 'behalf', 'behavior', 'behind', 'bei', 'beim', 'bejvhsfx', 'belhadjhamida', 'believe', 'bellusco', 'belo', 'belong', 'belwo', 'benachrichtigen', 'benefit', 'bengtjamin', 'benoittry', 'benutzer', 'benz', 'beosjgxt', 'ber', 'beratung', 'berechtigung', 'bereits', 'bergehend', 'berirtch', 'berirtchtswesen', 'berpr', 'bertes', 'bescheid', 'beschreibung', 'beshryu', 'beside', 'best', 'bestand', 'bestimmt', 'betap', 'betapdachform', 'betapfasen', 'beteiligung', 'betreff', 'betshdy', 'bettymcdanghtnuell', 'bex', 'beyhtcykea', 'beyond', 'bfghabu', 'bfhjtuiwell', 'bfnackrw', 'bfqnvezs', 'bfrgtonersp', 'bfrx', 'bghakch', 'bghrbie', 'bgtyrant', 'bgwneavl', 'bhayhtrathramdnty', 'bhergtyemm', 'bhqvklgc', 'bhrtty', 'bhty', 'bhughjdra', 'bi', 'biaprod', 'big', 'bigdrtyh', 'bihrtyull', 'biintll', 'bildschirmschoner', 'bill', 'billghj', 'billing', 'bio', 'bios', 'bis', 'bisschen', 'bit', 'bite', 'bitte', 'bixsapwu', 'bjehirkx', 'bjnqikym', 'bk', 'bkbackup', 'bkwin', 'bkzcfmse', 'blade', 'blank', 'blast', 'blaster', 'bld', 'blink', 'block', 'blocker', 'blockiert', 'blokker', 'bloque', 'bloqueado', 'blrmfvyh', 'bls', 'blue', 'bluescreen', 'bluetooth', 'bmdawzoi', 'bmhxwvys', 'bmudkpie', 'bnoupaki', 'bnsh', 'bnthygl', 'bob', 'bobj', 'bobjee', 'bobs', 'bofffgtyin', 'bog', 'bohyub', 'bokrgadu', 'bonhyb', 'book', 'bookmarkhty', 'boot', 'booth', 'boss', 'bothms', 'bottom', 'botton', 'box', 'bplnyedg', 'bqdlegnp', 'bqirpxag', 'bqmjyprz', 'br', 'bra', 'bradstreet', 'bragtydlc', 'brahdthyu', 'brandeerthy', 'brandhyht', 'break', 'breakdown', 'bregtnnl', 'brembo', 'breqgycv', 'brescsfgryiani', 'bridge', 'briefly', 'bring', 'broad', 'broadband', 'broadcast', 'broken', 'brook', 'browse', 'browser', 'browsing', 'brrgtyanthet', 'brthyrtiv', 'bsopzxhi', 'bsqofdlx', 'btelgpcx', 'bthrob', 'budhtya', 'buero', 'buffer', 'bufwxeiy', 'bug', 'build', 'building', 'bujiesrg', 'bunch', 'bung', 'bur', 'buraxcij', 'burnhntyham', 'business', 'busse', 'bussiness', 'bussy', 'busy', 'button', 'buy', 'buyer', 'bvcdpxrt', 'bw', 'bwdpmbkp', 'bwgldaoe', 'bwhrattr', 'bwhrchgr', 'bwhrertran', 'bwsdslspln', 'byczkowski', 'byhdderni', 'byoezmla', 'byte', 'bytes', 'byuihand', 'bzekndcu', 'bzw', 'bzwrchnd', 'ca', 'cabane', 'cable', 'cache', 'cad', 'caexmols', 'cagrty', 'cajdwtgq', 'calculate', 'calculator', 'calendar', 'calendars', 'calibration', 'call', 'callback', 'caller', 'callie', 'camera', 'campaign', 'campbell', 'campus', 'canada', 'canadian', 'cancel', 'cann', 'canner', 'cannnot', 'cannont', 'cantabria', 'caoryhuq', 'capacity', 'capture', 'car', 'carb', 'carbide', 'carcau', 'card', 'cardfrmeca', 'cards', 'care', 'careful', 'carmer', 'carrier', 'carthygyrol', 'carve', 'case', 'catalog', 'catalogue', 'catch', 'category', 'cater', 'catgyhilp', 'cathytyma', 'cause', 'caution', 'cbhnxafz', 'cbikymvf', 'cc', 'ccfterguss', 'ccftv', 'ccghksdm', 'cd', 'cdbaoqt', 'ce', 'cec', 'cedsairg', 'ceea', 'ceffcf', 'cell', 'cemvwyso', 'center', 'central', 'ceo', 'ceramdntyic', 'cert', 'certain', 'certificate', 'certify', 'cesgrtar', 'cfgxpvzi', 'cfibdamq', 'cflrqoew', 'chain', 'chairman', 'chance', 'chane', 'change', 'changed', 'channel', 'character', 'charatcher', 'charge', 'chassis', 'chat', 'che', 'check', 'chefghtyn', 'chefgtnp', 'cheghthan', 'chek', 'chg', 'chhyene', 'chian', 'chicago', 'chief', 'child', 'china', 'chinese', 'chkdsk', 'chkmejsn', 'chkzbeav', 'chn', 'chnbghyg', 'choice', 'choose', 'choppy', 'chosuygq', 'christgry', 'christgrytoph', 'chrithysgd', 'chriuimjiann', 'chrome', 'chrthryui', 'chucashadqc', 'cid', 'cighytol', 'cihaz', 'circle', 'circuit', 'ciruit', 'cisco', 'citrix', 'ck', 'ckmeldung', 'cksetzen', 'cksetzten', 'ckt', 'cl', 'clappdico', 'clarification', 'classification', 'classify', 'classroom', 'clcking', 'clean', 'cleaner', 'clear', 'clearance', 'clearly', 'cleoprzq', 'clhqsm', 'clhr', 'click', 'client', 'clientless', 'clint', 'clock', 'close', 'closed', 'closely', 'closet', 'closing', 'cloud', 'clrgtydia', 'cluster', 'cmor', 'cmp', 'cnhqgzwt', 'cnmfbdui', 'co', 'coast', 'coat', 'coatea', 'coating', 'code', 'cold', 'colin', 'collaboration', 'collapse', 'colleague', 'college', 'collegue', 'color', 'column', 'com', 'combi', 'comcast', 'come', 'command', 'comment', 'commodity', 'common', 'commstorage', 'communicate', 'communication', 'communicator', 'company', 'companyguest', 'companys', 'companysecure', 'companyssecure', 'companytm', 'compare', 'comparison', 'compatible', 'compensation', 'competrhyrncy', 'complain', 'complete', 'completely', 'completion', 'compliance', 'component', 'computation', 'computer', 'computerkonto', 'con', 'concall', 'concern', 'condition', 'conf', 'conference', 'confidential', 'confidentiality', 'configuration', 'configure', 'configured', 'confirm', 'confirmation', 'confirmationofhpcpo', 'conflict', 'confusion', 'congratuldhyation', 'connc', 'connect', 'connected', 'connection', 'connections', 'connectivity', 'connectt', 'connetction', 'consider', 'consignment', 'constance', 'constant', 'constantly', 'construction', 'consult', 'consultant', 'consulting', 'consume', 'contact', 'contacted', 'contain', 'contatc', 'content', 'continue', 'continuous', 'continuously', 'contract', 'contrase', 'contribute', 'control', 'controll', 'controller', 'convenience', 'conversation', 'conversion', 'convert', 'converted', 'convey', 'cookies', 'copier', 'copy', 'copying', 'core', 'corporate', 'correct', 'correction', 'correctly', 'correlation', 'correspond', 'corresponding', 'corrupt', 'coshopfloor', 'cost', 'could', 'counsel', 'count', 'countermeasure', 'counterpart', 'countersinking', 'country', 'couple', 'courage', 'course', 'court', 'couskjgd', 'coworker', 'cpbzkrel', 'cpeioxdz', 'cpic', 'cpihaxbs', 'cpinsety', 'cpmaidhj', 'cpmmecial', 'cpu', 'cqvuexjz', 'cqxahony', 'craigfgh', 'cran', 'crash', 'crashing', 'create', 'creation', 'credential', 'credentials', 'credit', 'crete', 'crhyley', 'crime', 'critical', 'crm', 'crohuani', 'cross', 'cruz', 'cruzjc', 'cs', 'cse', 'csenjruz', 'csn', 'csqe', 'csr', 'ctainstanceid', 'ctask', 'ctc', 'cthaasnoc', 'cthryhris', 'ctrl', 'ctry', 'ctusaqpr', 'ctxjsolz', 'ctzykflo', 'cugjzqlf', 'culixwse', 'cumbersome', 'current', 'currently', 'cursor', 'cust', 'custom', 'customer', 'cut', 'cuthyunniy', 'cutview', 'cuzhydjl', 'cvd', 'cvdebrc', 'cve', 'cvn', 'cvss', 'cvyg', 'cwdzunxs', 'cwivnxuk', 'cwkjruni', 'cwryvksu', 'cwuqzyvm', 'cwxtsvkm', 'cyber', 'cycle', 'cyndy', 'cyxieuwk', 'cyzuomxa', 'da', 'dabhruji', 'dabhrujirthy', 'dac', 'dacl', 'dadurch', 'daghyunny', 'daily', 'dailyorderbillingreport', 'dallas', 'dan', 'dank', 'danke', 'danl', 'dann', 'danyhuie', 'darda', 'dardabthyr', 'dartnl', 'dartvis', 'das', 'dash', 'dashbankrd', 'dat', 'data', 'database', 'datacenter', 'datagramdnty', 'dataloads', 'dataservice', 'date', 'datenbank', 'datum', 'davidthd', 'day', 'daylight', 'daypay', 'days', 'dazu', 'db', 'dbe', 'dbfc', 'dbgrtqhs', 'dbkdwwd', 'dbrslnhe', 'dc', 'dcc', 'dce', 'dceghpwn', 'dcgwuvfk', 'dctvfjrn', 'dde', 'ddmefoche', 'dds', 'ddwjm', 'de', 'deactivate', 'deadlock', 'deadlocke', 'dealer', 'dear', 'deb', 'debgrtybie', 'dec', 'decent', 'decision', 'dedalus', 'dedicate', 'deeghyupak', 'default', 'defect', 'defective', 'defekt', 'defekte', 'defence', 'defender', 'define', 'definitely', 'definition', 'delay', 'delegate', 'delegation', 'delete', 'deletion', 'deliver', 'delivery', 'dell', 'dem', 'demjqrfl', 'den', 'dene', 'denen', 'denghyrt', 'dengic', 'denial', 'denied', 'density', 'deny', 'departement', 'department', 'departments', 'depend', 'depfugcy', 'deploy', 'deployment', 'deposit', 'dept', 'der', 'des', 'describe', 'description', 'design', 'designate', 'desk', 'desktop', 'despite', 'dest', 'destination', 'destine', 'destrtgoy', 'detail', 'detailed', 'detect', 'determine', 'deu', 'deutschland', 'dev', 'device', 'devise', 'dewicrth', 'dewkiodshpande', 'deyhtwet', 'df', 'dfhtyuison', 'dfrt', 'dg', 'dgbfptos', 'dhadwuz', 'dhec', 'dhjuyick', 'dhkovprf', 'dhoalycb', 'dhqwtcsr', 'dhthykts', 'diagnostic', 'dial', 'dialing', 'dialog', 'dialogue', 'dicafxhv', 'die', 'diehm', 'dienstag', 'dierppear', 'dierppeare', 'dierppeared', 'diese', 'diesem', 'dieser', 'different', 'differently', 'difficult', 'difficulty', 'difnjlkp', 'difozlav', 'digital', 'dind', 'dinge', 'dinner', 'dinthyesh', 'direct', 'directeur', 'direction', 'directly', 'director', 'directory', 'dirttwan', 'disable', 'disabled', 'disagree', 'disappear', 'disaster', 'discconect', 'disclaimer', 'disclosure', 'disconnect', 'disconnected', 'disconnecting', 'disconnection', 'discount', 'discuss', 'disk', 'dispatch', 'display', 'dispositivo', 'disruption', 'dissemination', 'dist', 'distance', 'distribuator', 'distribution', 'distributor', 'distrtgoye', 'disturb', 'divestiture', 'dixhtyuit', 'djhznybt', 'djwbyact', 'djwkylif', 'dkklddww', 'dknejifu', 'dl', 'dljvtebc', 'dll', 'dly', 'dmitazhw', 'dmvpn', 'dmvsclhp', 'dn', 'dnc', 'dnlhsgyo', 'dnrubpis', 'dns', 'dntym', 'dob', 'doc', 'dock', 'docking', 'document', 'documentation', 'doen', 'dofghbme', 'doflefne', 'dokumente', 'dolhyt', 'domain', 'dondwdgj', 'donnerstag', 'donwloade', 'door', 'dose', 'dot', 'dotnetframdntyework', 'doubleklick', 'doubt', 'download', 'downloaded', 'downs', 'doyhtuug', 'dp', 'dpajkrhy', 'dpozkmie', 'dpuifqeo', 'dpvaymxrest', 'dpyvjcxr', 'dqowbefk', 'dr', 'drac', 'draft', 'drafting', 'draftsight', 'draw', 'drawing', 'drill', 'drilling', 'drive', 'driver', 'drlab', 'drop', 'dropbox', 'dropdox', 'drops', 'drtawing', 'druck', 'druckauftr', 'drucker', 'drvier', 'ds', 'dsccache', 'dscsag', 'dslamtcb', 'dss', 'dst', 'dsthostname', 'dstport', 'dsw', 'dtbycsgf', 'dthyan', 'dtjvhyob', 'dtlmbcrx', 'dtwlrofu', 'dual', 'ducyua', 'dudekm', 'due', 'duel', 'dunham', 'duplicate', 'duplication', 'duration', 'durch', 'durchf', 'durnfyxb', 'durumu', 'duty', 'dv', 'dveuglzp', 'dviwuzhm', 'dvpnfbrc', 'dvqtziya', 'dvsrepro', 'dvsyxwbu', 'dw', 'dwfiykeo', 'dwgliuyt', 'dwight', 'dwjvfkqe', 'dwnload', 'dwon', 'dwwkd', 'dwwlhews', 'dxf', 'dxwuovgs', 'dyhtruutt', 'dymanics', 'dymo', 'dynamic', 'dynamics', 'dyqekzuc', 'dyrgfwbm', 'dyxrpmwo', 'dzrgpkyn', 'eagcldaten', 'eagcutview', 'eagl', 'eagvusbr', 'eagwt', 'eamnvwyh', 'eaodcgsw', 'ear', 'earbud', 'earlier', 'earliest', 'early', 'east', 'easy', 'ebhsm', 'ebkfwhgt', 'ebus', 'ebusiness', 'ecad', 'ecc', 'eccc', 'ecwtrjnq', 'ecygimqd', 'ed', 'edad', 'edfl', 'edfw', 'edge', 'edit', 'editor', 'edmlx', 'edpouqjl', 'edsp', 'edspmloy', 'edt', 'educate', 'ee', 'eemw', 'ef', 'efbwiadp', 'efdl', 'efdsm', 'efdw', 'efe', 'effective', 'effectively', 'effeghnk', 'efficiency', 'efficient', 'effort', 'efjzbtcm', 'efodqiuh', 'efyumrls', 'eg', 'eglavnhx', 'eglwsfkn', 'eh', 'ehs', 'eijzadco', 'eilt', 'eimhxowu', 'ein', 'eine', 'einen', 'eingabe', 'eingegangen', 'eingegeben', 'einzig', 'eiomnuba', 'either', 'eject', 'ejzkrchq', 'ekbl', 'ekim', 'ekpo', 'ekpsm', 'ekxw', 'el', 'elbaqmtp', 'ele', 'element', 'eligibility', 'elituyt', 'elrndiuy', 'else', 'eluvxqhw', 'em', 'email', 'emails', 'emal', 'embed', 'embertell', 'emc', 'emea', 'emp', 'empf', 'empkirty', 'employee', 'employment', 'empty', 'empw', 'emsw', 'en', 'enable', 'encl', 'enclose', 'enclosed', 'enclsoe', 'encounter', 'encrypt', 'encryption', 'end', 'endg', 'endlkglfeghart', 'endpoint', 'ene', 'eng', 'engagement', 'engilsh', 'engine', 'engineer', 'engineering', 'english', 'engracia', 'enhance', 'enhancement', 'enough', 'enquiry', 'ensure', 'enter', 'enterence', 'enterprise', 'enth', 'enthalten', 'entire', 'entry', 'entsprechend', 'enviroment', 'environment', 'environmental', 'envoy', 'eovkxgpn', 'eozqgims', 'ep', 'eplan', 'epmap', 'epmsystem', 'eq', 'eqiyskhm', 'eqtofwbm', 'equipment', 'eqxyvfpi', 'er', 'erase', 'eraser', 'erathyur', 'erfasse', 'erfolg', 'ergebnis', 'erhalten', 'erhmuncq', 'eri', 'erirtc', 'erkheim', 'erode', 'eror', 'erosion', 'erp', 'erpgui', 'erro', 'error', 'errormessage', 'errror', 'erthryika', 'ervuyin', 'es', 'escalate', 'escalation', 'eseer', 'especially', 'esprit', 'esqcuwbg', 'esrs', 'ess', 'essa', 'est', 'establish', 'estimate', 'estorage', 'et', 'etasthon', 'etbmgjvo', 'etc', 'ethernet', 'ethic', 'ethical', 'ethics', 'ethyxekirty', 'etime', 'etlfrucw', 'eto', 'etr', 'etsmnuba', 'etvzjmhx', 'etyhumpdil', 'eu', 'eulalla', 'eulsvchi', 'euobrlcn', 'euromote', 'europe', 'european', 'evakuierung', 'evaluationmodels', 'even', 'evening', 'event', 'eventtypeid', 'eventtypepriority', 'eventually', 'ever', 'every', 'everybody', 'everyday', 'everyone', 'everything', 'everytime', 'everywhere', 'evh', 'evhw', 'evolution', 'evry', 'evzbhgru', 'ewe', 'eweausbildung', 'ewel', 'ewew', 'ewewx', 'ewgihcnz', 'ex', 'example', 'exceed', 'excel', 'excell', 'excellence', 'except', 'exception', 'excessive', 'exchange', 'exclude', 'exe', 'exec', 'execute', 'execution', 'executive', 'exekirty', 'exel', 'exempt', 'exemption', 'exepsne', 'exgjscql', 'exist', 'exit', 'exlbkpoj', 'expect', 'expedite', 'expense', 'experience', 'expert', 'expiration', 'expire', 'expiry', 'explain', 'explicit', 'exploit', 'exploitation', 'explore', 'explorer', 'export', 'exszgtwd', 'ext', 'extend', 'extended', 'extension', 'extensive', 'extent', 'external', 'extr', 'extra', 'extract', 'extraction', 'extremely', 'exurcwkm', 'ey', 'ez', 'ezbmonjr', 'fa', 'fabio', 'fabry', 'fabxjimdghtyo', 'face', 'facet', 'facility', 'fact', 'factory', 'fading', 'fahdlecz', 'fail', 'failagain', 'faile', 'failure', 'faint', 'falsch', 'familiar', 'fan', 'fandyhgg', 'faq', 'far', 'fast', 'faster', 'fastethernet', 'fault', 'faulty', 'favorite', 'fax', 'fb', 'fbadnjhu', 'fbhyeksq', 'fbmugzrl', 'fbusqrlt', 'fc', 'fd', 'fdbgoamk', 'fdd', 'fduinmtw', 'fdyietau', 'fe', 'feature', 'february', 'federal', 'feedback', 'feel', 'fehlende', 'fehler', 'fehlermeldung', 'fehlversuche', 'felix', 'fellow', 'feluybrn', 'fen', 'fence', 'fengapac', 'fenthgh', 'fernandez', 'fernando', 'fertigung', 'fever', 'ff', 'ffnen', 'fgvv', 'fhagjskd', 'fi', 'fiber', 'fidleyhtjp', 'field', 'fievgddtrr', 'figure', 'file', 'files', 'fileserver', 'filesys', 'fill', 'filler', 'fillipini', 'filter', 'fim', 'final', 'finalize', 'finally', 'finance', 'financemssg', 'financial', 'find', 'findet', 'fine', 'finish', 'finished', 'firewall', 'first', 'firstly', 'fix', 'fjaqbgnld', 'fjohugzb', 'fjtrnslb', 'fjzywdpg', 'fkicawph', 'flags', 'flap', 'flapokym', 'flash', 'flbnyqzc', 'fledge', 'fleisrgtyk', 'flicker', 'floor', 'flowchart', 'fm', 'fmcxikqz', 'fmeozwng', 'fmxcnwpu', 'fmzdkyqv', 'fnr', 'fntmbpla', 'fo', 'folder', 'folgende', 'folgender', 'folk', 'follow', 'following', 'followup', 'follwe', 'font', 'forbid', 'forecast', 'forecasting', 'foreseeconndirection', 'foreseeglobalmodelassessmt', 'foreseeinternalip', 'foreseemaliciouscomment', 'foreseemalprobglobalmodel', 'forget', 'forgot', 'form', 'forma', 'format', 'formatheywte', 'formatheywting', 'former', 'formerly', 'fort', 'forth', 'forward', 'forwarded', 'fothrmijm', 'foundry', 'fourth', 'fp', 'fq', 'fqdn', 'fqhlvcxn', 'fqpybgri', 'fr', 'fragmentation', 'framdntye', 'framdntyework', 'framdntywork', 'francestrhuco', 'franhtyu', 'franhtyuj', 'frau', 'fre', 'free', 'freeze', 'freezing', 'freight', 'freimachen', 'frequent', 'frequently', 'freundliche', 'freundlichem', 'freundlichen', 'frgtyetij', 'frhr', 'friday', 'friend', 'fro', 'front', 'frseoupk', 'frustrated', 'frustrating', 'ftgvlneh', 'ftnijxup', 'ftp', 'ftsf', 'fueiklyv', 'fuer', 'fufrtal', 'fugwxdqh', 'fujitsu', 'fulfil', 'fulfill', 'full', 'function', 'functionality', 'fund', 'fung', 'funke', 'funktionert', 'funktionieren', 'funktioniert', 'furnace', 'furth', 'future', 'fuydxemo', 'fvaihgpx', 'fvqfjrgjrjbkdgus', 'fvwhyenp', 'fw', 'fwchqjor', 'fwd', 'fwknxupq', 'fx', 'fxnkzaqu', 'fxwjhapo', 'fy', 'fybwjzhx', 'fyedqgzt', 'fygrwuna', 'fyi', 'fyzceglp', 'fzsdnmrk', 'gabryltk', 'gabryltke', 'gacfhedw', 'gadisyxr', 'gaeycbwd', 'gage', 'gain', 'gaiopkun', 'gajthyana', 'galaxy', 'gard', 'gb', 'gbaljypo', 'gbr', 'gbytu', 'gcknzthb', 'gdblxiva', 'gdcuhzqw', 'gdgy', 'gdhdyrham', 'gdhyrt', 'gdthrujt', 'gdthryd', 'ge', 'geb', 'geben', 'gebiet', 'geblockt', 'gebucht', 'geehrter', 'geetha', 'gel', 'geloescht', 'geltendem', 'gen', 'general', 'generate', 'generator', 'genetic', 'genius', 'gentleman', 'genuine', 'geoyhurg', 'geplant', 'ger', 'gergryth', 'german', 'germany', 'gesamte', 'gesch', 'gesellschaft', 'gesendet', 'gest', 'gestartet', 'gestellt', 'get', 'getassignment', 'gethyoff', 'geuacyltoe', 'gew', 'gf', 'gflewxmn', 'ghaltiek', 'ghjvreicj', 'ghost', 'gi', 'gigabitet', 'gigabitethernet', 'gilbrmuyt', 'ginemkl', 'girnda', 'giuliasana', 'give', 'gjbtuwek', 'gkrlmxne', 'gkzedilm', 'gl', 'glf', 'glimpse', 'global', 'globalengservice', 'globalmodelversion', 'globalview', 'gmbh', 'gmhkdsnw', 'gmkiatjs', 'gmlhrtvp', 'gn', 'gnasmtvx', 'gncpezhx', 'gneral', 'go', 'gogtyekhan', 'gogtyekthyto', 'gokcerthy', 'gomcekzi', 'gomeshthyru', 'gonzale', 'gonzales', 'good', 'google', 'got', 'governance', 'govind', 'govt', 'gowhjtya', 'gowzv', 'gpbfkqeu', 'gpkovbah', 'gprs', 'gqhfieys', 'gqjcbufx', 'gr', 'grab', 'grade', 'grant', 'graphic', 'grargtfl', 'grargtzzt', 'gray', 'grbhybrdg', 'great', 'greatly', 'grechduy', 'green', 'greeting', 'grergtger', 'grethyg', 'grey', 'grhryueg', 'grind', 'grinding', 'grknswyo', 'groet', 'group', 'grp', 'grtaoivq', 'gru', 'gruesse', 'grugermany', 'grund', 'gsc', 'gslpdhey', 'gso', 'gstry', 'gtbfkisl', 'gte', 'gtehdnyu', 'gtehdnyushot', 'guard', 'gueduel', 'guess', 'guest', 'gui', 'guide', 'guidge', 'guprgtta', 'gurhyqsath', 'gurpthy', 'gurublxkizmh', 'guruythupyhtyad', 'guvgytniak', 'guy', 'gv', 'gvderpbx', 'gviwlsrm', 'gvtbduyf', 'gwptzvxm', 'gxuvbcpr', 'gyhus', 'gzjtweph', 'gzwasqoc', 'ha', 'habe', 'haben', 'habit', 'hadfiunr', 'hai', 'hajghtdul', 'hakim', 'hakityum', 'half', 'hall', 'hallo', 'hamper', 'hana', 'hand', 'handelt', 'handheld', 'handle', 'handling', 'handset', 'hang', 'hangs', 'hanna', 'hannas', 'hanx', 'happen', 'harald', 'hard', 'hardcopy', 'harden', 'hardkopy', 'hardness', 'hardpoint', 'hardware', 'harrfgyibs', 'harrhntyl', 'hartbearbeitung', 'hartghymutg', 'hartstoffe', 'hasta', 'hat', 'hatryupsfshytd', 'haug', 'haujtimpton', 'haunm', 'haveing', 'hbmwlprq', 'hcbmiqdp', 'hcljzivn', 'hcm', 'hctgfeal', 'hcuixqgj', 'hdd', 'hdjm', 'hdldgeman', 'hdmi', 'hdswinlo', 'hdtyr', 'hdytrkfiu', 'head', 'header', 'headset', 'hear', 'heat', 'hebrew', 'hedjdbwlmut', 'hegdergyt', 'hegdthy', 'heghjyder', 'hehr', 'helftgyldt', 'hello', 'hellow', 'help', 'helpdesk', 'helpful', 'helpline', 'helpteam', 'hence', 'heptuizn', 'heptuizns', 'herghan', 'hernet', 'herr', 'hertel', 'heruntergeladen', 'heu', 'hfm', 'hfyujqti', 'hfyzudql', 'hgermany', 'hgrvubzo', 'hgv', 'hgygrtui', 'hgywselena', 'hhnght', 'hi', 'hidhys', 'hierarchy', 'high', 'highlight', 'highly', 'hilfe', 'hipghkinjyt', 'hire', 'hiremath', 'hiring', 'historically', 'history', 'hit', 'hitacni', 'hixsodl', 'hiyhllt', 'hiyhtull', 'hkydrfdw', 'hmzfewks', 'hnbetvfk', 'hnorauaperabdlbtc', 'hntl', 'hntubjela', 'hnyeajrw', 'hnynhsth', 'hohgajnn', 'hold', 'holemaking', 'holiday', 'homburg', 'home', 'homepage', 'homwadbs', 'honest', 'hop', 'hope', 'hopqcvza', 'hor', 'hortl', 'host', 'hostname', 'hotel', 'hotf', 'hoti', 'hotline', 'hotspot', 'hotwlygp', 'hour', 'hourly', 'house', 'however', 'howfanzi', 'howthrelte', 'hp', 'hpcxnyrq', 'hpmjtgik', 'hpormqtx', 'hpqc', 'hprdlbxf', 'hq', 'hqntn', 'hr', 'hrb', 'hren', 'hrer', 'hrm', 'hrmann', 'hrp', 'hrs', 'hrss', 'hrssc', 'hrsync', 'hrt', 'hrtgsd', 'hsh', 'htsnaodb', 'http', 'htv', 'hub', 'hugely', 'hughdthe', 'human', 'hunt', 'hurried', 'hvjbmdgi', 'hvolsgqn', 'hwvjympt', 'hxgaycze', 'hxgayczee', 'hxgayczeen', 'hxgayczeet', 'hxgayczeing', 'hxgayczemii', 'hxgayczeraum', 'hxwtidja', 'hybegvwo', 'hydluapo', 'hydstheud', 'hyeonthygwon', 'hygxzklauthuchidambaramdnty', 'hyperlink', 'hysrbgad', 'hzptilsw', 'hzudxyqb', 'ia', 'iam', 'iauqlrjk', 'iba', 'ic', 'iceyusnd', 'ich', 'icloud', 'icon', 'idea', 'identical', 'identify', 'idf', 'idfhtoqv', 'idg', 'idocs', 'ie', 'iehs', 'ieqgdpbm', 'iewnguxv', 'ifblxjmc', 'iforme', 'ignore', 'igurwxhv', 'ihkolepb', 'ihlsmzdn', 'ihnen', 'ihrem', 'ihsepkwz', 'ihuogcqd', 'ihusvgcw', 'ii', 'iid', 'iis', 'ijyuvind', 'ik', 'il', 'ileatdatacenter', 'ilfvyodx', 'ilkpqtjh', 'iltywzjm', 'ilypdtno', 'image', 'imaging', 'imei', 'imjwbogq', 'immediate', 'immediately', 'immer', 'imminent', 'imp', 'impact', 'impacts', 'implementation', 'imply', 'import', 'importance', 'important', 'impossible', 'improperly', 'improvement', 'imqgfadb', 'imvetgoa', 'ina', 'inactive', 'inbound', 'inbox', 'inboxe', 'inc', 'incase', 'incident', 'include', 'inco', 'incoming', 'incompatibility', 'inconsistency', 'inconsistent', 'incorrect', 'incorrectly', 'increase', 'incredibly', 'ind', 'index', 'indexing', 'indgic', 'india', 'indiana', 'indicate', 'indication', 'indicator', 'indirect', 'individual', 'indra', 'indrakurtyar', 'industrial', 'inf', 'infection', 'info', 'infomation', 'infonet', 'infopath', 'inform', 'information', 'informationen', 'infotype', 'infrastructure', 'ingdirect', 'ingresar', 'ingreso', 'inhalt', 'inhalte', 'inhekdol', 'inin', 'inincident', 'initial', 'initialize', 'initially', 'initiate', 'initiative', 'inn', 'inplant', 'input', 'inq', 'inquiry', 'inqury', 'insert', 'insertapps', 'inside', 'inspectoreventid', 'inspectorruleid', 'inspiron', 'instal', 'install', 'installation', 'installed', 'installl', 'instance', 'instandsetzung', 'instead', 'instruct', 'instruction', 'insufficient', 'insurance', 'insure', 'integrity', 'intellectual', 'intelligence', 'intend', 'interaction', 'interactive', 'interface', 'intermittent', 'intern', 'internal', 'internet', 'internetconnection', 'interrupt', 'interrupted', 'interruption', 'intranet', 'intrusion', 'intune', 'invalid', 'invalidate', 'invalidated', 'investigate', 'investigation', 'investor', 'invitation', 'invite', 'involve', 'inwarehouse', 'io', 'iom', 'ios', 'ip', 'ipad', 'ipc', 'iphone', 'iphonec', 'ipv', 'iqustfzh', 'irfhcgzq', 'irgsthy', 'irreceivedtime', 'iscl', 'isensplant', 'isjzcotm', 'isr', 'israel', 'israey', 'issie', 'issue', 'ist', 'italy', 'itar', 'itbof', 'itclukpe', 'item', 'itjzudor', 'itnakpmc', 'itry', 'itslpwra', 'ivhnpdbu', 'ivohcdpw', 'ivrhjmnx', 'iwtvrhnz', 'ixahzmvf', 'ixcanwbm', 'iygsxftl', 'izgul', 'izmxqfud', 'izohlgcq', 'jabra', 'jack', 'jadqhguy', 'jagthyin', 'jahtyuj', 'jamgpnqe', 'jamhdtyes', 'jan', 'janhytrn', 'jankowski', 'jannek', 'january', 'japan', 'jargqpkm', 'jartnine', 'jashtyckie', 'jashyht', 'java', 'javascript', 'jaya', 'jayatramdntydba', 'jbgcvlmf', 'jctnelqs', 'jdamieul', 'jdcbiezx', 'jdhdw', 'jdqvuhlr', 'jeffrghryey', 'jeffrghryeyrghryey', 'jeffrghryeytyf', 'jerhtyua', 'jertyur', 'jeshyensky', 'jesjnlyenm', 'jet', 'jetcxpda', 'jetzt', 'jfhying', 'jfhytu', 'jftyff', 'jfwvuzdn', 'jghjimdghty', 'jgxmafwk', 'jidhewlg', 'jilgtyq', 'jimdghty', 'jinxyhdi', 'jion', 'jionmpsf', 'jirecvta', 'jkddwkwd', 'jlcavxgi', 'jmxrabzy', 'jncvkrzm', 'job', 'joerg', 'jofghyuach', 'jofgyst', 'joftgost', 'jogt', 'johghajknn', 'johghajknnes', 'johthryu', 'join', 'jonnht', 'jose', 'josefghph', 'jpecxuty', 'jpg', 'jpsfikow', 'jpwrfuhk', 'jqxtbspr', 'jrhoqdix', 'jruz', 'jsuyhwssad', 'jtgmpdcr', 'juarez', 'judthtihty', 'jufskody', 'jul', 'julgttie', 'juli', 'july', 'jump', 'jundiai', 'june', 'junior', 'junk', 'justification', 'jutpdcqf', 'juvfghtla', 'jvpkulxw', 'jvshydix', 'jvxtfhkg', 'jwbsdd', 'jwnsyzbv', 'jwoqbuml', 'jwzlebap', 'jxphgfmb', 'jywvemun', 'kahrthyeuiuiw', 'kahtuithra', 'kambthryes', 'kanghytaim', 'kanjdye', 'kann', 'kantenverrunden', 'karaffa', 'karansb', 'karashsnnsb', 'karghytuthik', 'karno', 'karnos', 'kas', 'kashfyujqti', 'kasphryer', 'kassia', 'kassiaryu', 'kathght', 'kb', 'kbt', 'kcompany', 'kcudbnrw', 'kd', 'kdeqjncw', 'kebogxzp', 'keep', 'keghn', 'keheu', 'kehtxprg', 'kein', 'keine', 'keinyujo', 'keith', 'kenci', 'kennconnect', 'kernel', 'kesrgtyu', 'key', 'keybankrd', 'keyboard', 'keyhtyvin', 'keynes', 'kfdyzexr', 'kfshormi', 'kg', 'kghaozew', 'kgvrfwcj', 'khdgd', 'khfjzyto', 'khrtyujuine', 'khspqlnj', 'kick', 'kijhcwur', 'kime', 'kimli', 'kimtc', 'kimufghtyry', 'kind', 'kindly', 'king', 'kingdom', 'kinght', 'kingston', 'kinhytudel', 'kiosk', 'kirathrydan', 'kirty', 'kirtyle', 'kirvecja', 'kirxdspz', 'kis', 'kisp', 'kkc', 'klarp', 'kls', 'km', 'kmfgfr', 'kmvwxdti', 'knemilvx', 'knepkhsw', 'knethyen', 'knicrhtyt', 'knighdjhtyt', 'knlrgsiv', 'knock', 'knovel', 'know', 'knowledge', 'knowledgebase', 'knrlepglper', 'knxaipyj', 'ko', 'koahsriq', 'koburvmc', 'koenigsee', 'koiergyvh', 'koithc', 'komar', 'kommt', 'konferenzraum', 'konnica', 'konu', 'kopieren', 'kopqcjdh', 'kovaddcth', 'kpm', 'kqelgbis', 'kr', 'krcfhoxj', 'kreghtmph', 'krishnyhda', 'krisyuhnyrt', 'krlszbqo', 'krthdelly', 'krutnylz', 'ksgytjqr', 'ksiyurvlir', 'kstdaddaad', 'ksxchbaf', 'kt', 'ktghvuwr', 'kthassia', 'ktthasb', 'kudhnyuhnm', 'kujfgtat', 'kujigalore', 'kullan', 'kuluz', 'kurtyar', 'kutgynka', 'kuyiomar', 'kvrmnuix', 'kvwrbfet', 'kw', 'kwehgxts', 'kwfwdw', 'kwtcyazx', 'kxbifzoh', 'kxvwsatr', 'kyswcpei', 'kzbws', 'kzishqfu', 'kzq', 'kzvbr', 'la', 'label', 'labelwriter', 'laboratory', 'lacw', 'lady', 'laeusvjo', 'laffekr', 'lafgseimer', 'lafgturie', 'laijuttr', 'laijuttryhr', 'lalthy', 'lan', 'langsamer', 'language', 'langytge', 'lanhuage', 'lansuiwe', 'laode', 'lap', 'laptop', 'laqdwvgo', 'large', 'laser', 'laserjet', 'lasplant', 'lassen', 'last', 'lat', 'late', 'latency', 'later', 'latitude', 'lauacyltoe', 'lauftqmd', 'laugdghjhlin', 'launch', 'launcher', 'laurent', 'law', 'lay', 'layered', 'lbcqfnie', 'lbdl', 'lbxgodfu', 'lbxugpjw', 'lcamiopz', 'lcoke', 'lcosm', 'lcow', 'lcowx', 'ldbsm', 'ldgm', 'ldikdowdfm', 'ldil', 'ldiwsf', 'ldpequhm', 'ldsm', 'lead', 'leader', 'leadership', 'lean', 'least', 'leave', 'lebqthwv', 'lee', 'leegtysm', 'left', 'legal', 'legit', 'legitimate', 'legitmate', 'lehsm', 'leibdrty', 'leider', 'leitung', 'length', 'lertfty', 'less', 'let', 'lethre', 'letim', 'letter', 'level', 'lfal', 'lfmpxbcn', 'lghuiezj', 'lgiovknd', 'lhbsm', 'lhejbwkc', 'lhmxposv', 'lhqksbd', 'lhqksbdx', 'lhqksbdxa', 'lhql', 'lhqsid', 'lhqsm', 'lhqsv', 'lhqwsf', 'lhqwxsf', 'lhutkpxm', 'liable', 'lib', 'libcktnm', 'library', 'lic', 'license', 'lichtyuiwu', 'licwu', 'liefern', 'liefert', 'life', 'light', 'ligsnzur', 'lijsyte', 'like', 'likely', 'lilp', 'limit', 'limitation', 'limited', 'line', 'link', 'linnemann', 'linnes', 'linz', 'lipfnxsy', 'list', 'listen', 'little', 'liuytre', 'live', 'lixwgnto', 'lizensiertes', 'lizhwdoe', 'ljtzbdqg', 'ljztkmds', 'lkwspqce', 'lmsl', 'lmuxizht', 'lmxl', 'lnbdm', 'lndypaqg', 'lnpgjhus', 'lnphmsco', 'load', 'loading', 'local', 'locally', 'locate', 'location', 'locator', 'lock', 'locked', 'lockout', 'log', 'logfile', 'loggin', 'login', 'logistik', 'logn', 'logo', 'logoff', 'logon', 'logtimestamp', 'loin', 'lokce', 'long', 'longer', 'lonn', 'look', 'lookup', 'loop', 'loosing', 'lopgin', 'lortwe', 'lorwsf', 'lose', 'loss', 'lot', 'lotus', 'loud', 'louis', 'lovsan', 'low', 'lowe', 'loy', 'lpa', 'lpapr', 'lpawhdt', 'lpfzasmv', 'lpoebzsc', 'lpriokwa', 'lqdwjdwd', 'lra', 'lriupqct', 'lrrsm', 'lrrw', 'lryturhy', 'lryturhyyth', 'lsne', 'lsuepvyx', 'lt', 'ltd', 'lte', 'ltfskygw', 'ltig', 'ltige', 'ltigung', 'ltjkirwy', 'ltksxmyv', 'ltmoubvy', 'luciano', 'luck', 'ludwidjfft', 'luesebrink', 'luji', 'lunch', 'lv', 'lvidgknc', 'lvlw', 'lwizucan', 'lwohuizr', 'lxfnwyuv', 'lxkecjgr', 'lxrponic', 'lxvunpiz', 'lync', 'lyszwcxg', 'lzapwbnc', 'lzspyjki', 'lzuwmhpr', 'lzvdyouh', 'maaryuyten', 'mabelteghj', 'machine', 'madam', 'madhaw', 'maerza', 'mafghyrina', 'magda', 'magtyrtijc', 'maharashtra', 'mahatndhyua', 'mahcine', 'mahtyurch', 'maier', 'maihtyrhu', 'mail', 'mailbox', 'mailing', 'mails', 'mailserver', 'mailto', 'main', 'mainswitch', 'maint', 'maintenance', 'major', 'make', 'malaysia', 'malware', 'mam', 'mamilujli', 'manage', 'management', 'manager', 'managing', 'mandate', 'mandatory', 'mandgtryjuth', 'manjgtiry', 'mann', 'manual', 'manually', 'manufacture', 'manufacturing', 'many', 'map', 'mapp', 'mapper', 'mapping', 'mar', 'marcel', 'marcom', 'marfhtyio', 'marftgytin', 'margin', 'mark', 'markhty', 'markhtyed', 'markhtyet', 'markhtyete', 'markhtyeting', 'marrthyu', 'marry', 'marty', 'maschine', 'mason', 'masonb', 'mass', 'massive', 'master', 'match', 'matching', 'material', 'materials', 'matghyuthdw', 'matheywter', 'matheywtyuews', 'matlxjgi', 'mavxgqbs', 'max', 'maximum', 'may', 'maybe', 'mb', 'mbps', 'mbr', 'mbrreporte', 'mbs', 'mbyte', 'mc', 'mccoyimgs', 'mcfaullfhry', 'mchectg', 'md', 'mdb', 'mddwwyleh', 'mdevcqjk', 'mdghayi', 'mdpviqbf', 'mdvlkbac', 'mean', 'meaning', 'meantime', 'measure', 'measurement', 'measuring', 'mecftgobusa', 'med', 'media', 'mediante', 'medium', 'meet', 'meeting', 'meetinmg', 'megfgthyhana', 'mehr', 'mehrfach', 'mehrugshy', 'mein', 'meine', 'meinerseits', 'meixni', 'melbourne', 'meldung', 'member', 'memo', 'memory', 'mention', 'menu', 'mercedes', 'merdivan', 'merktc', 'mertut', 'mess', 'messag', 'message', 'messmaschine', 'metal', 'metalworke', 'meter', 'metroligic', 'mex', 'mexico', 'mfeyouli', 'mfg', 'mfvkxghn', 'mfyivqes', 'mg', 'mghllenbecfnfk', 'mgjxwept', 'mgmt', 'mgndhtillen', 'mgr', 'mgvpoyqd', 'mhasttdd', 'mhdyhtya', 'mhtyike', 'mi', 'mic', 'michbhuael', 'micheyi', 'michghytuael', 'michigan', 'michthey', 'microphone', 'microphones', 'microsoft', 'mictbdhryhle', 'might', 'migration', 'mii', 'miiserver', 'mijhmijhmile', 'mikhghytr', 'milan', 'mileage', 'milli', 'miltgntyuon', 'milton', 'min', 'mine', 'minimize', 'minimum', 'minolta', 'mins', 'minute', 'mirror', 'misconfigure', 'mismatch', 'misplace', 'misplaced', 'miss', 'missing', 'mistake', 'mit', 'mitarbeiter', 'mitctdrh', 'mitteilung', 'mittwoch', 'mityhuch', 'mizpywld', 'mizumoto', 'mjudivse', 'mjvfxnka', 'mkdfetuq', 'mkjubdti', 'mkt', 'mktgen', 'mkuhtyhui', 'ml', 'mlroijfp', 'mm', 'mnakehrf', 'mngr', 'mnlvhtug', 'mnslwfqv', 'mo', 'mob', 'mobaidfx', 'mobil', 'mobile', 'mobilen', 'mobility', 'mode', 'model', 'modeli', 'modify', 'modul', 'module', 'mohgrtyan', 'mohnrysu', 'moin', 'mojfbwds', 'mokolthrla', 'moment', 'momitor', 'monatswechsel', 'monday', 'mondhrbaz', 'money', 'monitor', 'monitoring', 'monitorixepyfbga', 'montag', 'month', 'monthly', 'monthy', 'morhyerw', 'morning', 'moto', 'motorola', 'mount', 'mouse', 'move', 'moxnqszg', 'mp', 'mpfdivlh', 'mpls', 'mpvhakdq', 'mqetjxwp', 'mqjdyizg', 'mr', 'mrs', 'ms', 'msblast', 'msc', 'mscrm', 'msd', 'msfc', 'msg', 'mshost', 'msoffice', 'mss', 'mtb', 'mtbelengineering', 'mtbu', 'mtd', 'mtg', 'mthyuleng', 'mti', 'mtlghwex', 'mu', 'much', 'muggftyali', 'multidetail', 'multiple', 'music', 'must', 'muthdyrta', 'mutual', 'muywpnof', 'mvunqihf', 'mwddwansuke', 'mwetuhqf', 'mwgdenbs', 'mws', 'mwtrouyl', 'mwuateyx', 'mx', 'mycompany', 'myhzrtsi', 'myportal', 'mzjasxqd', 'mzyejqvd', 'na', 'naa', 'nabjwvtd', 'nach', 'nachi', 'nachricht', 'nagdyiyst', 'nagfghtyudra', 'nahumo', 'nakagtwsgs', 'name', 'narefgttndra', 'narthdyhy', 'naruedlk', 'nasftgcijj', 'naslrwdb', 'natytse', 'naveuythen', 'navigate', 'navigation', 'nazarr', 'nbr', 'nc', 'nd', 'nderen', 'nderildi', 'ndkrcxjb', 'ndling', 'ndobtzpw', 'ne', 'nealxjbc', 'nearby', 'nearly', 'necessarily', 'necessary', 'nedeni', 'nee', 'need', 'needful', 'needs', 'neerthyu', 'nehtjuavathi', 'nein', 'neither', 'net', 'netbio', 'netbios', 'netch', 'netframdntyework', 'netscape', 'netviewer', 'netweaver', 'network', 'networking', 'neu', 'never', 'nevinmw', 'nevins', 'new', 'newducsl', 'newly', 'news', 'newweaver', 'next', 'nexusk', 'nfayqjhg', 'nfc', 'nfdtriwx', 'nftgyair', 'nfybpxdg', 'ngen', 'nger', 'ngerungskabel', 'ngkcdjye', 'ngliche', 'ngm', 'ngprt', 'ngt', 'ngtr', 'nguqityl', 'ngvwoukp', 'nhgvmqdl', 'nicdhylas', 'nice', 'nicht', 'nicrhty', 'nidqknwjktin', 'nieghjyukea', 'night', 'nijdaukz', 'nikulatrhdy', 'nil', 'nimmt', 'nipt', 'niptbwdq', 'nivqoxyt', 'nizholae', 'njdrcagt', 'njhaqket', 'njpwxmdi', 'nk', 'nkademwy', 'nkjtoxwv', 'nkqafhod', 'nkthumgf', 'nlig', 'nmpworvu', 'nmywsqrg', 'nnen', 'nnlein', 'no', 'nobody', 'nobook', 'noc', 'noch', 'node', 'noggtyuerp', 'nogo', 'nogui', 'noi', 'noise', 'nologin', 'non', 'none', 'noon', 'nor', 'nord', 'normal', 'north', 'noscwdpm', 'not', 'notch', 'note', 'noteb', 'notebook', 'notepad', 'nothing', 'notice', 'notification', 'notify', 'nouveau', 'november', 'nozahtbr', 'nozjtgwi', 'npgxuzeq', 'npmzxbek', 'nqclatbw', 'nrbcqwgj', 'nrlfhbmu', 'nsu', 'nsyapewg', 'nter', 'nthryitin', 'ntner', 'nuerthytzg', 'nuksytoh', 'null', 'number', 'numerirtc', 'nummer', 'numwqahj', 'nunber', 'nur', 'nutzung', 'nv', 'nvamcrpq', 'nvawmlch', 'nvihmbwc', 'nvjyhizu', 'nvodbrfluppasadabasavaraj', 'nvyjtmca', 'nwcobvpl', 'nwfodmhc', 'nwqktzlx', 'nwwiebler', 'nx', 'nxcfastp', 'nxd', 'nxjvzcta', 'nxloukai', 'nythug', 'nzuofeam', 'oa', 'ob', 'obanjrhg', 'obj', 'object', 'oblghuyf', 'obqridjk', 'observation', 'observe', 'observerd', 'obtain', 'obviously', 'oc', 'occur', 'occurence', 'occurrence', 'och', 'ockthiyj', 'oct', 'october', 'odbc', 'oder', 'oe', 'oemcold', 'offenlegung', 'offer', 'office', 'officer', 'official', 'offline', 'often', 'ofuhdesi', 'ofwxjriq', 'ogabwxzv', 'oh', 'ohio', 'ohne', 'ohxdwngl', 'oicrjsfh', 'oikhfqyl', 'oinqckds', 'ojdukgzc', 'ojflyruq', 'ojgrpafb', 'ojrplsmx', 'ok', 'okay', 'okhyipgr', 'oktober', 'olckhmvx', 'old', 'olibercsu', 'olivgtyemc', 'olivgtyera', 'olthyivectr', 'olvidley', 'olympus', 'omleknjd', 'omokam', 'ompeztak', 'omufjcxr', 'onbankrding', 'one', 'oneteam', 'onfiirm', 'online', 'ontario', 'onto', 'ontologyid', 'ony', 'oon', 'ooo', 'ooshstyizen', 'op', 'ope', 'open', 'opener', 'opening', 'openne', 'openorderbook', 'opentext', 'operate', 'operating', 'operation', 'operational', 'operator', 'opeyctrhbkm', 'oppo', 'opportstorage', 'opportunity', 'opposite', 'optic', 'optimization', 'option', 'optiplex', 'oqlcdvwi', 'oracle', 'orange', 'orde', 'order', 'ordinate', 'orelikon', 'orelli', 'org', 'organization', 'orientation', 'original', 'orshop', 'os', 'ost', 'osterwalder', 'ot', 'otc', 'otherwise', 'othyoiz', 'oulook', 'outage', 'outbox', 'outbreak', 'outdated', 'outgoing', 'outil', 'outllok', 'outlock', 'outlook', 'outloook', 'outook', 'output', 'outrlook', 'outside', 'outsoure', 'ouutlook', 'overall', 'overview', 'ovuweygj', 'owa', 'oweklxnm', 'owenghyga', 'owenssdcl', 'owjduxai', 'owner', 'owqplduj', 'owslfzqi', 'owtlmpuv', 'owupktcg', 'owwddwens', 'oxvakgcl', 'oypnxftq', 'oyunatye', 'ozhnjyef', 'oziflwma', 'pa', 'paasword', 'pacific', 'pack', 'package', 'packet', 'pacvbetl', 'page', 'pagthyuathy', 'pain', 'palff', 'pallutyr', 'palo', 'pande', 'pane', 'paneer', 'panel', 'panghyiraj', 'paper', 'paragraph', 'paralegal', 'paramdntyeter', 'parameter', 'parent', 'parfgtkym', 'paris', 'parkeyhrt', 'part', 'partial', 'participant', 'participate', 'particular', 'partir', 'partner', 'party', 'pass', 'passiep', 'passoword', 'passowrd', 'passsw', 'passw', 'password', 'passwordmanager', 'passwords', 'passwort', 'passwprd', 'past', 'paste', 'pasting', 'pasword', 'pat', 'patch', 'patching', 'patent', 'paternoster', 'path', 'pathryu', 'pathuick', 'patirjy', 'pavan', 'pay', 'payable', 'paycheck', 'payroll', 'payslip', 'pbx', 'pbxqtcek', 'pc', 'pcd', 'pcl', 'pcqobjnd', 'pcqobjndadditional', 'pcs', 'pdf', 'pdfmailer', 'pdlc', 'pdu', 'pe', 'pedxruyf', 'peer', 'peilerk', 'pende', 'people', 'per', 'percent', 'perfect', 'perfectly', 'perform', 'performance', 'perhaps', 'period', 'periodic', 'permanently', 'permission', 'permit', 'permition', 'perry', 'person', 'personal', 'personally', 'personel', 'personen', 'personnel', 'pethrywr', 'petrghada', 'pf', 'pfad', 'pfjwinbg', 'pfneutkg', 'pfxwuvce', 'pfzxecbo', 'pghjkanijkraj', 'ph', 'phbnwmkl', 'phd', 'phil', 'philadelph', 'phishe', 'phishing', 'phjencfg', 'phlpiops', 'phone', 'photo', 'phr', 'phvkowml', 'physical', 'pi', 'picjthkd', 'pick', 'picking', 'picture', 'piece', 'pihddltzr', 'pilot', 'piltzrnj', 'pin', 'ping', 'pinging', 'pinkow', 'pinter', 'pintfgtyo', 'pinto', 'pintoddsa', 'piolfghim', 'piper', 'pipfhypeu', 'pivot', 'pjwvdiuz', 'pk', 'pkj', 'pkwcdbrv', 'pl', 'pla', 'place', 'plan', 'planck', 'planner', 'planning', 'plant', 'plantronic', 'plase', 'platform', 'plaunyud', 'play', 'player', 'plc', 'please', 'plm', 'ploxzut', 'pls', 'plsseald', 'pltndoab', 'plug', 'plugin', 'plus', 'pluytd', 'plvnuxmry', 'pm', 'pmm', 'pmqansex', 'pmrvxbnjhivaramdntyaiah', 'pnabslgh', 'png', 'pngufmvq', 'pnwbkitv', 'poaty', 'pobleme', 'pofgtzdravem', 'pogredrty', 'point', 'pol', 'poland', 'policy', 'pollaurid', 'pollaurido', 'poloidgthyl', 'poloisky', 'polycom', 'poncacity', 'pop', 'populate', 'popup', 'port', 'portable', 'portal', 'portelance', 'porteta', 'portfolio', 'portion', 'porwrloisky', 'pos', 'position', 'positionen', 'posrt', 'posrte', 'possibility', 'possible', 'post', 'potential', 'pour', 'povich', 'povictcfgt', 'powder', 'power', 'powerpoint', 'pozna', 'pp', 'ppm', 'ppt', 'pqjrhsul', 'pqkthilr', 'pr', 'practice', 'pradtheyp', 'pragtyhusa', 'pragtyhusas', 'prakaythsh', 'prb', 'prbsddqd', 'pre', 'precall', 'prefetch', 'preparation', 'prepare', 'preparedness', 'prerequisite', 'present', 'presenter', 'presently', 'president', 'press', 'presse', 'presume', 'prevent', 'prevention', 'previous', 'previously', 'prgxwzco', 'price', 'pricing', 'primarily', 'primary', 'print', 'printer', 'printing', 'printout', 'printscreen', 'printserver', 'prior', 'prioritize', 'priority', 'prishry', 'private', 'privilege', 'pro', 'proactive', 'probably', 'probe', 'probieren', 'problem', 'probleme', 'problleme', 'procedure', 'proceed', 'process', 'processing', 'procte', 'proctected', 'prod', 'produce', 'product', 'production', 'productive', 'productivity', 'productly', 'productmanagement', 'produkt', 'produkte', 'produktion', 'professional', 'profil', 'profile', 'program', 'programdnty', 'programdntym', 'programdntyme', 'programdntys', 'prohibit', 'project', 'projection', 'projekt', 'projekte', 'promote', 'prompt', 'prompting', 'prompts', 'proofreading', 'propagate', 'proper', 'properly', 'property', 'proplem', 'protection', 'protel', 'proto', 'protocol', 'prototype', 'provide', 'provider', 'provigjtyswkb', 'proxy', 'proygkjt', 'prt', 'prtgghjk', 'prtgn', 'prtikusy', 'prtor', 'prtoru', 'prtqc', 'prtqi', 'prtqv', 'prtqz', 'prtsg', 'przcxbml', 'ps', 'psf', 'pssword', 'pte', 'pthyu', 'ptirhcwv', 'ptmzsbhk', 'ptuqhrwk', 'ptygkvzl', 'pu', 'public', 'publication', 'publish', 'pubreport', 'puedo', 'pulcqkzo', 'pull', 'pulverleitstand', 'purartnpn', 'purchase', 'purchasing', 'purple', 'purpose', 'push', 'pushixepyfbga', 'put', 'puxsvfwr', 'pvd', 'pw', 'pwd', 'pwrhmc', 'py', 'pyeothbl', 'pyua', 'pzcmv', 'qa', 'qamyesuv', 'qaohugxw', 'qasdhyzm', 'qauighdpnager', 'qbgclmit', 'qbgjwaye', 'qcjevayr', 'qcxivzag', 'qdapolnv', 'qdztknml', 'qfwijzbd', 'qgtxjsdc', 'qgwypesz', 'qhjkxoyw', 'qidgvtwa', 'qieagkos', 'qieswrfu', 'qifzkoej', 'qiwhfkdv', 'qjeymnzs', 'qkmgtnla', 'qlhmawgi', 'qmglkaru', 'qngschtz', 'qnigujek', 'qnxhoryg', 'qolrvbip', 'qs', 'qsmrwvle', 'qty', 'qualit', 'quality', 'qualitycontrol', 'quantity', 'quarant', 'quarantine', 'que', 'queretaro', 'querrie', 'query', 'question', 'questions', 'queuing', 'quick', 'quickly', 'quit', 'quite', 'quota', 'quote', 'qvbutayx', 'qvhixotw', 'qvncizuf', 'qwghlvdx', 'qwijaspo', 'qwvpgayb', 'qwynjdbk', 'qzhgdoua', 'qzkyugce', 'rabbit', 'rabkypet', 'rack', 'rad', 'radgthika', 'raflghneib', 'raghfhgh', 'raghu', 'ragini', 'ragsbdhryu', 'rai', 'raid', 'railgnfb', 'raise', 'rak', 'rakthyesh', 'ramdnty', 'ramdntya', 'ramdntygy', 'ramdntythanjesh', 'ramdntythanjeshkurtyar', 'ran', 'randomly', 'randstad', 'ranjhruy', 'ranlpbmw', 'ransomware', 'rantlypb', 'rappel', 'rar', 'rather', 'ray', 'rayhtuorv', 'rbmfhiox', 'rbmosifh', 'rbozivdq', 'rbzymfvx', 'rc', 'rce', 'rcf', 'rckf', 'rckfthy', 'rclqfpgt', 'rcwpvkyb', 'rd', 'rden', 'rdig', 'rdp', 'rdyrty', 'reach', 'reachable', 'react', 'reactivate', 'read', 'reader', 'reading', 'realize', 'really', 'reason', 'reassign', 'reatle', 'reboot', 'rebuild', 'recall', 'receipt', 'receive', 'received', 'recent', 'recently', 'rechecke', 'rechner', 'recht', 'recieve', 'recipient', 'recode', 'recognition', 'recognize', 'reconfigure', 'reconnect', 'reconnecte', 'record', 'recording', 'recover', 'recovery', 'recreate', 'recsynqt', 'rectify', 'red', 'reduce', 'redytudy', 'ref', 'refer', 'reference', 'refinery', 'reflect', 'refresh', 'refreshing', 'refuse', 'reg', 'regard', 'regardless', 'regards', 'regen', 'region', 'regional', 'register', 'registergerirtcht', 'registration', 'registry', 'regster', 'regular', 'regularly', 'rehtyulds', 'reiceve', 'reichlhdyl', 'reimbursement', 'reinhard', 'reinstall', 'reinstate', 'reisekosten', 'reject', 'rekwlqmu', 'relate', 'related', 'relation', 'relationship', 'relatively', 'relaunche', 'release', 'remain', 'remappe', 'remedy', 'remember', 'remfg', 'remind', 'reminder', 'remote', 'remotely', 'remove', 'removed', 'renew', 'reoccurre', 'reopen', 'rep', 'repair', 'repeat', 'repeatedly', 'replace', 'replacement', 'replay', 'replicate', 'reply', 'report', 'reporting', 'reportncqulao', 'repoter', 'representative', 'reproduction', 'reprot', 'republish', 'reputation', 'request', 'requester', 'require', 'requirement', 'requisition', 'reroute', 'rerun', 'reschedule', 'research', 'reselect', 'resending', 'reset', 'resetfor', 'reside', 'resign', 'resolution', 'resolve', 'resource', 'respect', 'respective', 'respond', 'response', 'responsibility', 'responsible', 'resset', 'rest', 'restare', 'restart', 'restoration', 'restore', 'restriction', 'result', 'resume', 'rethtyuzkd', 'retrieval', 'retrieve', 'retry', 'return', 'rev', 'revelj', 'revenue', 'revert', 'review', 'revocation', 'reward', 'reyshakw', 'rfa', 'rfc', 'rfvchzmp', 'rfvmeyho', 'rfwlsoej', 'rgds', 'rghkiriuyte', 'rgtry', 'rgtsm', 'rgtyob', 'rhaycqjg', 'rhbsawmf', 'rhfyd', 'rhozsfty', 'rhquvzfm', 'ribbon', 'ricagthyr', 'richoscan', 'richtige', 'rick', 'ricoh', 'riess', 'right', 'rightly', 'ring', 'riqmdnzs', 'risk', 'riuheqsg', 'rjc', 'rjeyfxlg', 'rjsulvat', 'rk', 'rkdwohas', 'rkyjnbqh', 'rlhuwmve', 'rmb', 'rmt', 'rnafleys', 'rname', 'rnsuipbk', 'ro', 'road', 'roaghyunokepc', 'roanoke', 'robdyhr', 'robhyertyj', 'robhyertyjs', 'robot', 'roboworker', 'roceshun', 'rockehsty', 'rod', 'rodny', 'roesshnktler', 'rofghach', 'rohitdrf', 'rohlings', 'rohntyub', 'rohthsit', 'role', 'roles', 'rolghtyuando', 'roll', 'rollfgyuej', 'rolling', 'rollout', 'ron', 'room', 'root', 'roshyario', 'rotate', 'round', 'route', 'router', 'routine', 'routinely', 'row', 'rowville', 'royhtub', 'rpc', 'rpmwh', 'rqeu', 'rqeuest', 'rqflkeuc', 'rqxmaindept', 'rqxsm', 'rrc', 'rsa', 'rspqvzgu', 'rt', 'rter', 'rtgdcoun', 'rtgyon', 'rth', 'rtnyumbg', 'rtnzvplq', 'rtr', 'rtro', 'ru', 'rubiargty', 'rubyfgty', 'rucfxpla', 'ruchitgrr', 'ruckruf', 'rudimentary', 'rudra', 'ruf', 'rujpckto', 'rule', 'run', 'running', 'runtime', 'rus', 'russ', 'russia', 'russoddfac', 'rvjlnpef', 'rwcxkflq', 'rwnhqiyv', 'rxiumhfk', 'rxloutpn', 'rxpjomyf', 'rxutkyha', 'ryafbthn', 'ryhunan', 'ryljar', 'rzonkfua', 'rzpmnylt', 'rzxfgmcu', 'sa', 'sab', 'sabrthy', 'sadghryiosh', 'sadghryioshkurtyar', 'sadiertpta', 'sadjuetha', 'safe', 'safely', 'safrgyynjit', 'sagfhoshgzpkmilu', 'sahryu', 'sahtym', 'sal', 'salary', 'sale', 'salesman', 'salesorg', 'salutation', 'samacocuntname', 'sammelarbpl', 'sample', 'samsung', 'samsungsmgf', 'sandblast', 'sandblasting', 'sandir', 'sandplant', 'sandrgru', 'sanhjtyhru', 'sanmhty', 'santiago', 'santolgiy', 'santrhyat', 'sao', 'sarhfa', 'sarhytukas', 'sartlgeo', 'sathyrui', 'satisfy', 'saturday', 'save', 'saver', 'savgrtyuille', 'savin', 'saving', 'say', 'saztolpx', 'sbcheyu', 'sbgvrncj', 'sbltduco', 'sbtvploj', 'sc', 'scam', 'scan', 'scannen', 'scanner', 'scanning', 'scenario', 'schaem', 'schdule', 'sche', 'schedule', 'scheduled', 'scheduler', 'scheduling', 'schen', 'scherfgpd', 'schetrhsdlw', 'schhdgtmip', 'schicken', 'schlumhdyhter', 'schneider', 'schoegdythu', 'schoemerujt', 'schoenfeld', 'school', 'schr', 'scht', 'schtrtgoyht', 'schuette', 'schung', 'schutzw', 'schyhty', 'scm', 'scn', 'scorecard', 'scot', 'scrap', 'screen', 'screensaver', 'screenshot', 'script', 'scroll', 'scthyott', 'sctqwgmj', 'sd', 'sdjdskjdkyr', 'sdlixwmb', 'se', 'search', 'sebfghkasthian', 'sebxvtdj', 'sec', 'seceffa', 'second', 'secondary', 'section', 'secure', 'securework', 'security', 'see', 'seeing', 'seek', 'seem', 'seemor', 'seep', 'seghyurghei', 'segment', 'sehr', 'sein', 'seite', 'sekarft', 'sektoren', 'select', 'selection', 'self', 'semi', 'send', 'sender', 'sending', 'senior', 'sensation', 'sensor', 'sep', 'separate', 'sept', 'september', 'sequence', 'serch', 'serevrs', 'serial', 'serve', 'server', 'servers', 'service', 'services', 'servicing', 'session', 'set', 'sethdyr', 'setting', 'setun', 'setup', 'setzten', 'sev', 'several', 'severe', 'severeal', 'severity', 'sewilrxm', 'sfb', 'sfmrzdth', 'sgnubadl', 'sgwipoxn', 'sgxqsuojr', 'shadakjsdd', 'shagfferon', 'shall', 'share', 'shared', 'sharee', 'shathyra', 'shatryung', 'shaungtyr', 'sheet', 'sherlockruleid', 'sherwtgyu', 'shesyhur', 'shfhyw', 'shhkioaprhkuoash', 'shhuivashankar', 'shi', 'shift', 'shigthyuva', 'ship', 'shipment', 'shipping', 'shiragavi', 'shiv', 'shivakuhdty', 'shoot', 'shop', 'shopfloor', 'short', 'shortcut', 'shortly', 'shot', 'shourxyp', 'show', 'shrugott', 'shryresh', 'shthuihog', 'shut', 'shutdown', 'shwhdbthyuiethadri', 'shwyhdtu', 'shynhjundar', 'si', 'siavgtby', 'sich', 'sicherheisdatenbank', 'sicne', 'sid', 'side', 'sie', 'sifco', 'sign', 'signal', 'signature', 'signin', 'sihtvocw', 'silvaes', 'silvgtyar', 'sim', 'simekdty', 'similar', 'similarly', 'simple', 'sinc', 'since', 'sincerely', 'sincronizaci', 'sind', 'singapore', 'single', 'singular', 'sinic', 'sir', 'sistemi', 'sit', 'site', 'situation', 'sitz', 'sitze', 'size', 'sk', 'skirtylport', 'skpe', 'skv', 'skwbuvjyheelavant', 'sky', 'skype', 'sl', 'slide', 'slight', 'slimware', 'slip', 'slo', 'slow', 'slowly', 'sls', 'sm', 'small', 'smart', 'smb', 'smcxerwk', 'smdbqnef', 'smkpfjzv', 'sms', 'smtp', 'sn', 'snagit', 'snap', 'snapshot', 'sndaofyw', 'snip', 'snp', 'sntvfpbl', 'soap', 'sobald', 'sobkz', 'soc', 'soedjitv', 'soemec', 'soflex', 'software', 'sogo', 'sohytganvi', 'sokdelfgty', 'sole', 'solely', 'solid', 'sollte', 'solution', 'solutions', 'solve', 'solver', 'somebody', 'someone', 'something', 'sometimes', 'somewhere', 'sonar', 'songhyody', 'sonia', 'soon', 'sooner', 'sorahdyggs', 'sorry', 'sort', 'sound', 'source', 'south', 'southeast', 'souzarft', 'sp', 'space', 'spain', 'spam', 'spamme', 'spare', 'spdczoth', 'speak', 'speake', 'speaker', 'special', 'specialist', 'specially', 'specific', 'specifically', 'specification', 'specify', 'specs', 'speed', 'speichern', 'speicherort', 'spend', 'spengineere', 'spimolgz', 'spin', 'spit', 'splash', 'sponsor', 'spread', 'spreadsheet', 'sprhouiv', 'spxqmiry', 'sql', 'sqlcuhep', 'sqlmtixr', 'sqqqd', 'sr', 'src', 'srcassetofinter', 'srchostname', 'srcport', 'sre', 'srinfhyath', 'srirgrtyam', 'srujan', 'srv', 'srvlavstorage', 'ssen', 'sso', 'ssofgrtymerset', 'ssp', 'sst', 'st', 'stack', 'staebefertigung', 'staerte', 'staff', 'stage', 'stahyru', 'stamp', 'standard', 'stankewitz', 'start', 'starten', 'startpassword', 'startup', 'stat', 'state', 'statement', 'states', 'static', 'station', 'statistic', 'status', 'stavenheim', 'stay', 'steal', 'steel', 'stefdgthy', 'stefdgthyo', 'stefyty', 'stefytyn', 'stehdgty', 'steli', 'step', 'stepfhryhan', 'stgyott', 'sthytachnik', 'stiarhlu', 'stibo', 'stick', 'still', 'stl', 'stock', 'stoebtrt', 'stop', 'stope', 'storage', 'store', 'storno', 'stp', 'stra', 'strahlraum', 'strange', 'strasse', 'stream', 'streng', 'strgrtyiet', 'strictly', 'strigtyet', 'strixner', 'structural', 'structure', 'stuarthsyt', 'stub', 'stuck', 'stundenlang', 'stuwbacm', 'stwpzxbf', 'su', 'sub', 'subbathykrisyuhnyrt', 'subdirectory', 'subfolder', 'subject', 'submission', 'submit', 'submittal', 'subscribe', 'subsystem', 'success', 'successful', 'successfully', 'suddenly', 'sudghnthdra', 'sufficient', 'sugajadd', 'suggest', 'sugisdfy', 'suhrhtyju', 'suite', 'summary', 'summit', 'sunday', 'suniythulkuujmar', 'supervisor', 'supply', 'support', 'suppose', 'sure', 'surge', 'surthryr', 'survey', 'suspect', 'suspend', 'suspicious', 'suspision', 'suthye', 'sv', 'svuxjkpg', 'sw', 'swap', 'swicth', 'swisscom', 'switch', 'switchover', 'switzerland', 'switzerlandik', 'switzerlandim', 'syghmesa', 'syhunil', 'sykpe', 'sylvthryia', 'sylyhtsvesuyter', 'symantec', 'symbol', 'symmetrix', 'syn', 'sync', 'synced', 'synch', 'synche', 'synched', 'synchronisiert', 'synchronisierung', 'synchronization', 'synchronize', 'synchronizer', 'syncronize', 'sype', 'sys', 'sysetem', 'system', 'systems', 'szcbhvwe', 'szockfpj', 'szumyhtulas', 'tab', 'table', 'tablearu', 'tablet', 'tafgtyng', 'tag', 'tagen', 'tagsyrhu', 'tahamt', 'take', 'takeshi', 'takheghshi', 'taking', 'talk', 'tank', 'tape', 'target', 'targetlist', 'task', 'taskmgr', 'tax', 'taxis', 'tbkywpqz', 'tbnovxdp', 'tc', 'tcb', 'tcflirwg', 'tcjnuswg', 'tcode', 'tcp', 'tcwrdqboinition', 'tdlwdkunis', 'tdmgolwn', 'te', 'team', 'teamcall', 'teammeete', 'teamordner', 'teams', 'teamviewer', 'tebenutzer', 'tebetriebssystem', 'tech', 'techn', 'technical', 'technically', 'technician', 'technische', 'technologist', 'technology', 'teh', 'tehrsytu', 'tel', 'telecom', 'telekom', 'telephone', 'telephony', 'teleservice', 'tell', 'temodell', 'temp', 'temperory', 'template', 'temporal', 'temporarily', 'temporary', 'ten', 'terhyury', 'term', 'terminal', 'terminate', 'terralink', 'territory', 'tess', 'tesscenter', 'tetyp', 'teufeae', 'tevkia', 'text', 'tezugriffsstatus', 'tfsehruw', 'tgewaniq', 'tgeyd', 'tghkris', 'tghrlok', 'tgryhu', 'th', 'tha', 'thadasgg', 'thadhylman', 'thank', 'thanking', 'thanx', 'thaybd', 'thdjzolw', 'thdjzolwronization', 'theajdlkadyt', 'theeadjjd', 'theecanse', 'theft', 'thehub', 'thema', 'theme', 'themfg', 'therefore', 'theydbar', 'thing', 'think', 'thinking', 'third', 'thiw', 'thjquiyl', 'thnsguzj', 'thomafghk', 'thomklmas', 'though', 'thought', 'thoyht', 'threat', 'three', 'threshold', 'thrgxqsuojr', 'thrice', 'throughout', 'throw', 'thru', 'thry', 'thryad', 'thryd', 'thrydad', 'thrydsss', 'thrydufg', 'thsadyu', 'thsaqsh', 'thsgy', 'thsyrley', 'thumb', 'thursday', 'thvnfs', 'thx', 'thyel', 'ti', 'ticker', 'ticket', 'ticketing', 'tier', 'tif', 'tiffrtany', 'tifpdchb', 'tikona', 'till', 'tim', 'time', 'timecard', 'timeclock', 'timeframdntye', 'timely', 'timeout', 'times', 'timnhyt', 'tinmuym', 'tinyurl', 'tipset', 'titcket', 'title', 'tiyhum', 'tjlizqgc', 'tjwdhwdw', 'tkhaymqg', 'tkpfumeb', 'tm', 'tmqfjard', 'tmunkaiv', 'tn', 'tnhymatj', 'tnk', 'tnlshpwb', 'tnorudbf', 'tnxiuramdnty', 'today', 'todghtyud', 'tofinance', 'together', 'toll', 'tologin', 'tom', 'tomashtgd', 'tomlin', 'tomorrow', 'tone', 'tonight', 'tony', 'tool', 'toolcal', 'tooldplcmmaninp', 'toolher', 'toolhone', 'toolical', 'tooling', 'toolkuznetsk', 'toollant', 'toolmail', 'toolometer', 'toolrently', 'toolroom', 'toolscal', 'toolte', 'tooltion', 'top', 'topcustomersendmarkhtyet', 'topefd', 'tor', 'toriaytun', 'tortm', 'torvxeda', 'tot', 'total', 'totally', 'touch', 'tower', 'town', 'township', 'tpfnzkli', 'tpurnjvi', 'tqnbkjgu', 'tqvpohwj', 'tr', 'trace', 'tracert', 'track', 'tracker', 'trade', 'traffic', 'trail', 'train', 'trainer', 'training', 'transaction', 'transfer', 'transition', 'transmit', 'transportation', 'trask', 'travel', 'traveler', 'traversecity', 'treat', 'trghwyng', 'trgqbeax', 'trhdaa', 'trhfyd', 'trhsydsff', 'trhsyvdur', 'trial', 'trip', 'trkwehzg', 'trmzwbyc', 'tro', 'trouble', 'troubleshoot', 'troubleshooting', 'trtgoy', 'true', 'trunk', 'trup', 'trurthyuft', 'trust', 'truview', 'try', 'tryhutehdtui', 'ts', 'tsbnfixp', 'tsicojkp', 'tsk', 'tskvmwag', 'tsmanagement', 'tsrp', 'tszvorba', 'ttl', 'tu', 'tuesday', 'tujutnis', 'turbo', 'turkey', 'turn', 'turnover', 'tuzkadxv', 'tvcdfqgp', 'twejhda', 'twice', 'two', 'tx', 'tyhuellis', 'tyhufrey', 'type', 'typing', 'tyss', 'tyyhtuler', 'tzrekwqf', 'tzung', 'uacyltoe', 'uadkqcsj', 'uanigkqc', 'uaoyhcep', 'ubayizsq', 'ubyjolnc', 'ubznqpsy', 'udrzjxkm', 'ueiybanz', 'uekapfzt', 'ug', 'ugelctsz', 'ughynofq', 'ughzilfm', 'ugnthxky', 'ugrmkdhx', 'ugyothfz', 'uhammet', 'uhefoqtg', 'ui', 'uidgt', 'uitfqsen', 'uiu', 'ujtmipzv', 'uk', 'ukynmfig', 'ulrike', 'ulv', 'um', 'umbau', 'umsok', 'umykjweg', 'umzcxfah', 'umzug', 'un', 'unable', 'unannounced', 'unauthorised', 'unauthorized', 'unavailable', 'unbale', 'unbekannten', 'unblock', 'unblocked', 'unchecked', 'unconverted', 'und', 'undate', 'undeliverable', 'understand', 'understanding', 'undock', 'unexpected', 'unfortunate', 'unfortunately', 'unfreeze', 'uninstall', 'uninstalle', 'uninstalled', 'unique', 'unit', 'united', 'universal', 'unknown', 'unless', 'unlicensed', 'unlock', 'unlocked', 'unlocking', 'unlook', 'unmonitored', 'unplanned', 'unrbafjx', 'unread', 'unresolved', 'unsuccessful', 'unsupported', 'unter', 'unterst', 'untinstall', 'unzip', 'upadate', 'upcoming', 'update', 'updated', 'updation', 'uperform', 'upgrade', 'upgtrvnj', 'upitdmhz', 'upiyobvj', 'upload', 'upon', 'upper', 'uprmwlgb', 'uprodleq', 'ups', 'uqjbkydr', 'urgapyzt', 'urgent', 'urgently', 'urhbvfgd', 'url', 'urlaubsplanung', 'urspr', 'urvitans', 'us', 'usa', 'usaed', 'usage', 'usalikfj', 'usas', 'usb', 'usd', 'use', 'useid', 'user', 'userid', 'userlogin', 'username', 'users', 'usperhki', 'usrr', 'ustvaifg', 'usual', 'usually', 'usx', 'utbnkyop', 'uthagtpgc', 'utiliuytretion', 'utilization', 'utilize', 'utrimobs', 'utthku', 'utvimnwo', 'utwijzag', 'uwe', 'uwtakcmj', 'uxhq', 'uxndyfrs', 'uyjlodhq', 'uylvgtfi', 'uyocgasl', 'uypsqcbm', 'uzojtkmh', 'uzpycdho', 'uzvsnlbd', 'va', 'vacation', 'vaghyliort', 'vahxnfgl', 'vaigycet', 'vajtodny', 'valid', 'validate', 'validity', 'value', 'vanghtydec', 'vanthyrdys', 'variable', 'variant', 'various', 'vasanqi', 'vatpgsxn', 'vaugtyghtl', 'vault', 'vcenter', 'vdhfy', 'vdjqoeip', 'veiw', 'vendor', 'venfgugjhytpal', 'venkbghksh', 'venkthrysh', 'ver', 'verbindung', 'verboma', 'verboncouer', 'verboten', 'verbreitung', 'verggermany', 'verified', 'verify', 'verizon', 'verkauf', 'verkaufsgebiet', 'verl', 'versand', 'versehens', 'version', 'versions', 'verteilung', 'vertiayhtu', 'vertraulich', 'vervielf', 'vfdglqnp', 'vfjsubao', 'vfkwscao', 'vfnraqxc', 'vg', 'vga', 'vh', 'vhihrty', 'via', 'vic', 'vice', 'vicinity', 'victim', 'vid', 'video', 'vidya', 'viele', 'vielen', 'view', 'viewer', 'vig', 'vignbhyesh', 'vijeghtyundra', 'vikrhtyas', 'vikrhtyaskurtyar', 'vil', 'village', 'viotto', 'vip', 'virakv', 'virtual', 'virtualcenter', 'virus', 'visibility', 'visible', 'visit', 'visitble', 'visitor', 'vitalyst', 'vithrkas', 'vivbhuek', 'vivian', 'vivthyek', 'vjuybcwz', 'vkdobexr', 'vksfrhdx', 'vkzwafuh', 'vlan', 'vlinspectkiosk', 'vm', 'vmax', 'vmhfteqo', 'vmqcyzda', 'vmsliazh', 'vmthcrkf', 'vmware', 'vnglqiht', 'vnhaycfo', 'vnjdghui', 'vnjwsadx', 'vnlqkgpb', 'vobluewg', 'vocalization', 'vogelfontein', 'volume', 'vom', 'von', 'vor', 'voreingestellte', 'vorr', 'vous', 'vp', 'vpksyfco', 'vpn', 'vpns', 'vriendelijke', 'vrkoqaje', 'vroanwhu', 'vrtx', 'vs', 'vsbhyrt', 'vscdzjhg', 'vsdtxwry', 'vsid', 'vsknlfri', 'vsphere', 'vtokgley', 'vtykrubi', 'vulnerability', 'vulnerable', 'vupglewt', 'vuxdrbng', 'vvamrtryot', 'vvandwkjis', 'vvbloor', 'vvblorytor', 'vvblothryor', 'vvbthryhn', 'vvdfgtyuji', 'vvdgtyachac', 'vvfrtgarnb', 'vvftgor', 'vvgtybyrn', 'vvhthyoffc', 'vvkatt', 'vvkertgipn', 'vvkhyhum', 'vvkthyiska', 'vvkuthyrppg', 'vvmathkag', 'vvnergtubj', 'vvparthyrra', 'vvrajai', 'vvrtgwildj', 'vvrttraja', 'vvshyuwb', 'vvsthryomaa', 'vvtdfettc', 'vvterra', 'vvtghjscha', 'vvtgryhud', 'vvthuenka', 'vvthygschj', 'vvttraja', 'vvwtyeidt', 'vwaliogd', 'vwkasnxe', 'vxfkwaqh', 'vxuikqaf', 'vybdkuoa', 'vybmcrxo', 'vyjmlain', 'vyucbagx', 'vzqomdgt', 'wafglhdrhjop', 'wait', 'waldjrrm', 'walfgtkek', 'walk', 'wallpaper', 'wanayht', 'want', 'wanthryg', 'warden', 'warehouse', 'wareneingang', 'warm', 'warn', 'warning', 'warrrtyen', 'wasload', 'waste', 'watch', 'wauhocsk', 'way', 'wbsfavhg', 'wc', 'wcrbmgon', 'wcu', 'wdfwsggalleh', 'wdjwd', 'wdkfww', 'wdkwdwd', 'wdkyiqfx', 'wdleell', 'wdnwk', 'wdnwwl', 'wdq', 'wdugqatr', 'wdwddw', 'wdwmd', 'wear', 'weaver', 'web', 'webdhyt', 'webfnhtyer', 'webpage', 'webportal', 'webshop', 'webside', 'website', 'websty', 'wechseln', 'wednesday', 'week', 'weekday', 'weekend', 'weekly', 'wehlauer', 'wei', 'weit', 'welchia', 'welcome', 'well', 'wenn', 'werden', 'werk', 'werkzeuge', 'wesley', 'west', 'westcoast', 'wester', 'western', 'weszfyok', 'wethruiberg', 'wezeb', 'wg', 'wghjkftewj', 'wgpelvyn', 'wgpimkle', 'wgq', 'wgtyills', 'wgtyillsford', 'wgyhktic', 'whalep', 'whaley', 'wharehouse', 'whatever', 'whatlgp', 'whenever', 'whereas', 'wherein', 'whether', 'white', 'whoever', 'whole', 'whomever', 'whose', 'whovmtez', 'whsipqno', 'whwdiuw', 'wi', 'wichtige', 'wickhamtf', 'wie', 'wieder', 'wifi', 'wiggrtgyis', 'wiksufty', 'wildschuetz', 'wilsfgtjl', 'win', 'window', 'windows', 'windy', 'winow', 'winrar', 'winwip', 'wip', 'wir', 'wird', 'wire', 'wireless', 'wirftejas', 'wise', 'within', 'withn', 'without', 'witrh', 'wkly', 'wkqjcfgy', 'wlan', 'wly', 'wmsg', 'wnk', 'wnkpzcmv', 'wohzmlib', 'wolfthry', 'word', 'work', 'workaround', 'workbook', 'worker', 'workflow', 'working', 'worklist', 'workman', 'workmen', 'workplace', 'worksheet', 'workshop', 'workstation', 'world', 'worm', 'worry', 'worthy', 'wothyehre', 'would', 'wpcatozg', 'wpdxlbhz', 'wptbgchj', 'wqbsodni', 'wqfzjycu', 'wqinjkxs', 'wqtlzvxu', 'wrapper', 'wrcktgbd', 'write', 'wrong', 'wrtyuh', 'ws', 'wsb', 'wsboedtj', 'wseacnvi', 'wshqqhdqh', 'wsjkbw', 'wslifbzc', 'wsljdqqds', 'wtldpncx', 'wtqdyoin', 'wtqdyoinware', 'wtubpdsz', 'wu', 'wunderlist', 'wurde', 'wusdajqv', 'wvdxnkhf', 'wvngzrca', 'wvprteja', 'wvqgbdhm', 'wwdyuan', 'www', 'wxnetroc', 'wxstfouy', 'wy', 'wyighrjl', 'wyjsbzda', 'wynhtydf', 'wzfryxav', 'wznkpjis', 'wzrgyunp', 'xabkyoug', 'xacbc', 'xackgvmd', 'xaqzisrk', 'xawlkiey', 'xaykwtrf', 'xbdht', 'xbmyvnqf', 'xbsckemt', 'xbvghozp', 'xcel', 'xcwavhyu', 'xd', 'xedbf', 'xernsfqa', 'xex', 'xfizlnap', 'xhaomnjl', 'xhlg', 'xighjacj', 'xirwgjks', 'xjhpznd', 'xjhpznds', 'xjzcbgnp', 'xlsx', 'xmeytziq', 'xmgptwho', 'xmlbfjpg', 'xnklbfua', 'xnwtyebg', 'xocyhnkf', 'xosdfhbu', 'xoukpfvr', 'xovczlad', 'xp', 'xprwayoc', 'xpugntjv', 'xqgovpik', 'xrqnyzhb', 'xsdb', 'xsrkthvf', 'xszoedmc', 'xt', 'xtmjlari', 'xvgzdtqj', 'xvysrnmb', 'xwbesorf', 'xwbesorfs', 'xwelumfz', 'xwirzvda', 'xwlcqfsr', 'xxxxx', 'xyedbsnm', 'xyz', 'xzbtcfar', 'yahoo', 'yambwtfk', 'yandfgs', 'yathryu', 'ybtmorxp', 'ybuvlkjq', 'ycimqxdn', 'year', 'yecbmliq', 'yegzbvru', 'yepifgbl', 'yes', 'yesterday', 'yet', 'yevirgnl', 'yfeuhtib', 'yhhm', 'yhmwxsqj', 'yhrdw', 'yicpojmf', 'yidvloun', 'yihelxgp', 'yimwfntl', 'yjtdkfuo', 'yjurztgd', 'ykeilmog', 'ylhogjct', 'ylhptzmd', 'ylqvitsk', 'ymedkatw', 'yno', 'yofhirjs', 'yopvwrjq', 'yotyhga', 'youfzmgp', 'ypladjeu', 'yptglhoe', 'yqddquanw', 'yqxlbswt', 'yrjekzqv', 'yrjhd', 'ysfiwvmo', 'yspnqxgw', 'ytd', 'ytqhfmwi', 'yubtgy', 'yucgfmiq', 'yuglsrwx', 'yukdzwxs', 'yup', 'yvhlenaz', 'yvlswgxb', 'yvtjzkaw', 'ywqgrbnx', 'yzemkhbq', 'yzugpdco', 'zaf', 'zanegtyla', 'zarlgjes', 'zartupsw', 'zazrtulds', 'zcaermdt', 'zcqnuawo', 'zcustgrp', 'zdcheloy', 'zdfymgjp', 'zdsxmcwu', 'zebra', 'zedghkler', 'zedlet', 'zeigen', 'zeit', 'zeiterfassung', 'zeitwirtschaft', 'zembok', 'zgdckste', 'zhang', 'zheqafyo', 'zhhtyangq', 'zhrgtang', 'zhudrs', 'zhuyhts', 'ziewxqof', 'zifujpvr', 'zigioachstyac', 'zip', 'zjihgovn', 'zlettel', 'zlgmctws', 'zlkmlwdwdade', 'zlnfpuam', 'zlnxswvp', 'zload', 'zlqfptjx', 'zmc', 'zmm', 'zno', 'znq', 'znr', 'zns', 'zocjdutp', 'zollerfgh', 'zone', 'zopcrshl', 'zpfitlyu', 'zpononpo', 'zpumhlic', 'zpwgoqju', 'zqbmxdgy', 'zrfc', 'zscr', 'zslugaxq', 'zsluxctw', 'zspvxrfk', 'ztnfhiwq', 'zu', 'zugriff', 'zum', 'zuothryrt', 'zur', 'zuteillisten', 'zvjxuahe', 'zvnxlobq', 'zvygmnco', 'zwph', 'zwphj', 'zxdtskpw']
X_train_tfidf = vectorizer.transform(x_train_count)
X_test_tfidf = vectorizer.transform(x_test_count)
X_train_tfidf.shape
(4348, 5871)
mclf = MultinomialNB().fit(X_train_tfidf, y_train_count)
data_m=predict_ml_model(mclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['MultinomialNB_TFIdf'] = data_m
accuracy 0.8886844526218951 Training score: 89.00643974241031 Testing score: 88.86844526218951
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
rclf = RandomForestClassifier()
data_m=predict_ml_model(rclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['RandomForestClassifier_TFIdf'] = data_m
accuracy 0.9190432382704692 Training score: 96.68813247470102 Testing score: 91.90432382704692
sclf=LogisticRegression(n_jobs=1, C=1e5)
data_m=predict_ml_model(sclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['LogisticRegression_TFIdf'] = data_m
accuracy 0.9310027598896045 Training score: 96.68813247470102 Testing score: 93.10027598896045
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
lclf= SGDClassifier(loss='hinge', penalty='l2',alpha=1e-3, random_state=42, max_iter=5, tol=None)
data_m=predict_ml_model(lclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['SGDClassifier_TFIdf'] = data_m
accuracy 0.8969641214351426 Training score: 89.67341306347745 Testing score: 89.69641214351427
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
modecomparedf_new=modecomparedf.drop(["MultinomialNB","RandomForest","LogisticRegression"], axis=1)
modecomparedf_new
| ModelName | MultinomialNB_TFIdf | RandomForestClassifier_TFIdf | LogisticRegression_TFIdf | SGDClassifier_TFIdf | |
|---|---|---|---|---|---|
| 0 | TrainAccuracy | 89.006440 | 96.688132 | 96.688132 | 89.673413 |
| 1 | TestAccuracy | 88.868445 | 91.904324 | 93.100276 | 89.696412 |
| 2 | PrecisionScore | 96.993879 | 94.529762 | 94.936381 | 96.358795 |
| 3 | RecallScore | 88.868445 | 91.904324 | 93.100276 | 89.696412 |
| 4 | F1Score | 92.160091 | 92.839076 | 93.716744 | 92.402223 |
modelCompare_TFIDFVect=modecomparedf_new.set_index('ModelName').rename_axis(None).T
modelCompare_TFIDFVect['Model_Name']=['MultinomialNB_TFIdf','RandomForest_TFIdf','LogisticR_TFIdf','SGD_TFIdf']
#Accuracy plot
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y=['TrainAccuracy','TestAccuracy'], grid=True,width = 0.4)
plt.ylabel('Accuracy')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(15,10))
plt.show()
#Precision plot
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y='PrecisionScore', grid=True)
plt.title('Precision Score')
plt.ylabel('PrecisionScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
#Recall plot
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y='RecallScore', grid=True)
plt.title('Recall Score')
plt.ylabel('RecallScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
#F1 score
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y='F1Score', grid=True)
plt.title('F1 Score')
plt.ylabel('F1Score')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 1080x720 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y=['PrecisionScore','RecallScore','F1Score'], grid=True)
plt.title('Metrices Comparison')
plt.ylabel('Metrices')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 720x360 with 0 Axes>
We have fitted the transformed input to Random forest Logistic Regression,SGD and Multinomial Naive Bayes models and plotted the test train accuracy plot.
From the comparison mentioned above it is inferred that though Logistic regression and Random forest gives better training accuracy but the test accuracy comes out to give overfit. SGD Classifier gives 89% training accuracy in the training dataset and 89% in the testing data which shows that it has no overfit. So, for TF-IDF vectorizer, SGD Classifier gives better result in terms of accuracy. So we will dig more in other models
x_train_tfid, x_test_tfidf, y_train_tfidf, y_test_tfidf = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"], finalticketsummary['Assignment group_num'], test_size=0.3,random_state=0)
print(x_train_tfid.shape,x_test_tfidf.shape)
print(y_train_tfidf.shape,y_test_tfidf.shape)
(3804,) (1631,) (3804,) (1631,)
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', MultinomialNB())])
#text_clf.fit(x_train_tfid, y_train_tfidf)
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['MultinomialNB_CountandTFIdf'] = data_m
accuracy 0.8786020846106684 Training score: 88.93270241850684 Testing score: 87.86020846106683
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', LogisticRegression(n_jobs=1, C=1e5))])
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['LogisticRegression_CountandTFIdf'] = data_m
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
accuracy 0.9202942979767014 Training score: 96.81913774973711 Testing score: 92.02942979767013
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', RandomForestClassifier())])
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['RandomForestClassifier_CountandTFIdf'] = data_m
accuracy 0.911710606989577 Training score: 96.81913774973711 Testing score: 91.17106069895769
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', SGDClassifier(loss='hinge', penalty='l2',alpha=1e-3, random_state=42, max_iter=5, tol=None))])
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['SGDClassifier_CountandTFIdf'] = data_m
accuracy 0.8927038626609443 Training score: 90.19453207150369 Testing score: 89.27038626609442
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
modecomparedf_pipe=modecomparedf.drop(["MultinomialNB","RandomForest","LogisticRegression","MultinomialNB_TFIdf","RandomForestClassifier_TFIdf","LogisticRegression_TFIdf","SGDClassifier_TFIdf"], axis=1)
modecomparedf_pipe
| ModelName | MultinomialNB_CountandTFIdf | LogisticRegression_CountandTFIdf | RandomForestClassifier_CountandTFIdf | SGDClassifier_CountandTFIdf | |
|---|---|---|---|---|---|
| 0 | TrainAccuracy | 88.932702 | 96.819138 | 96.819138 | 90.194532 |
| 1 | TestAccuracy | 87.860208 | 92.029430 | 91.171061 | 89.270386 |
| 2 | PrecisionScore | 96.857054 | 95.285655 | 95.475747 | 96.177472 |
| 3 | RecallScore | 87.860208 | 92.029430 | 91.171061 | 89.270386 |
| 4 | F1Score | 91.506400 | 93.185523 | 92.897236 | 92.093130 |
modelCompare_Pipe=modecomparedf_pipe.set_index('ModelName').rename_axis(None).T
modelCompare_Pipe['Model_Name']=['MultinomialNB_TFIdf','RandomForestClassifier_TFIdf','LogisticRegression_TFIdf','SGDClassifier_TFIdf']
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y=['PrecisionScore','RecallScore','F1Score'], grid=True)
plt.title('Metrices Comparison')
plt.ylabel('Metrices')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 720x360 with 0 Axes>
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y=['TrainAccuracy','TestAccuracy'], grid=True,width = 0.4)
plt.title('Training and Test accuracy')
plt.ylabel('Accuracy')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(15,10))
plt.show()
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y='PrecisionScore', grid=True)
plt.title('Precision Score')
plt.ylabel('PrecisionScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y='RecallScore', grid=True)
plt.title('Recall Score')
plt.ylabel('RecallScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y='F1Score', grid=True)
plt.title('F1 Score')
plt.ylabel('F1Score')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 1080x720 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
From the comparison mentioned above it is inferred that though Logistic regression and Random forest gives better training accuracy but the test accuracy comes out to give overfit. SGD Classifier gives 90% training accuracy in the training dataset and 89% in the testing data which shows that it has almost no overfit. So, for TF-IDF vectorizer, SGD Classifier gives better result in terms of accuracy. So we will dig more in other models
3.5.1. Convert the target column to label encoded output
3.5.2.Try TFIDF and Count vectorizaer and apply transformed input to different conventional Machine Learning models with test train split
3.5.3. Creation of Data frame to compare the models
3.5.4.Observations
3.6.1.Try multiple models for transformed input with Count vectorizer and compare their performence.Plot Accuracy,Precision F1 score and Recall comparison plot for different models.
3.6.2.Creation of a common function on model building with all the performence metrices
3.6.3.Sample classification report of ML models
3.6.4.Observations
3.7.1.Try multiple models for transformed input with tfidf vectorizer and compare their performence.Plot Accuracy,Precision F1 score and Recall comparison plot for different models.
3.7.2.Comparison data frame of different machine learning models
3.7.3.Observations
3.8.1.Try multiple models for transformed input with Pipeline with Count then TIDF vectorizer and compare their performence.Plot Accuracy,Precision F1 score and Recall comparison plot for different models.
3.8.2.Comparison data frame of different machine learning models
3.8.3.Observations
finaldata_all = '/content/drive/My Drive/final.pkl'
finaldataset_all=pd.read_pickle(finaldata_all)
finaldataset_all.shape
(8500, 3)
finaldataset_all.head(5)
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | |
|---|---|---|---|
| 0 | GRP_0 | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... |
| 1 | GRP_0 | outlook receive hello team meeting skype meeti... | [outlook, receive, hello, team, meeting, skype... |
| 2 | GRP_0 | not log vpn receive hi not vpn best | [not, log, vpn, receive, hi, not, vpn, best] |
| 3 | GRP_0 | unable access hr tool page | [unable, access, hr, tool, page] |
| 4 | GRP_0 | unable log engineering tool skype | [unable, log, engineering, tool, skype] |
finalticketsummary=finaldataset_all
finalticketsummary.shape
(8500, 3)
# label_encoder object knows how to understand word labels.
label_encoder = preprocessing.LabelEncoder()
# Encode labels in column 'species'.
finalticketsummary['Assignment group_num']= label_encoder.fit_transform(finalticketsummary['Assignment group'])
finalticketsummary['Assignment group_num'].tail()
8495 27 8496 0 8497 27 8498 24 8499 44 Name: Assignment group_num, dtype: int64
#Test train split
x_train_count, x_test_count, y_train_count, y_test_count = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"], finalticketsummary['Assignment group_num'], test_size=0.2,random_state=0)
print(x_train_count.shape,x_test_count.shape)
print(y_train_count.shape,y_test_count.shape)
(6800,) (1700,) (6800,) (1700,)
vectorizer = CountVectorizer()
X_train_count = vectorizer.fit_transform(x_train_count)
X_train_count.shape
X_test_count = vectorizer.transform(x_test_count)
X_test_count.shape
X_train_count
#Count Vectorizer Transformation
<6800x10330 sparse matrix of type '<class 'numpy.int64'>' with 96672 stored elements in Compressed Sparse Row format>
count_tokens = vectorizer.get_feature_names()
print(count_tokens)
['aa', 'aaa', 'aacbcc', 'aacount', 'aae', 'aao', 'aaplant', 'ab', 'abandon', 'abap', 'abb', 'abbc', 'abc', 'abca', 'abd', 'abdhtyu', 'abend', 'abende', 'abended', 'aber', 'abertura', 'abgebildet', 'abgeschlossen', 'abgrtyreu', 'abhanden', 'abhay', 'abhilfe', 'abholen', 'ability', 'abl', 'able', 'abode', 'abort', 'aborted', 'aborting', 'abovementioned', 'abrechnung', 'abreu', 'abrurto', 'absence', 'absender', 'absent', 'absolutely', 'abstechprogramdntym', 'abwfnzwbnvbw', 'ac', 'acache', 'acbccb', 'acc', 'acccount', 'accdb', 'acce', 'accede', 'accept', 'acceptance', 'accesible', 'acceso', 'access', 'accessed', 'accessibility', 'accessible', 'accessing', 'accesss', 'accident', 'accidental', 'accidentally', 'accidently', 'accompany', 'accomplish', 'accont', 'accord', 'accordance', 'accordingly', 'accound', 'account', 'accountant', 'accounting', 'accounts', 'accout', 'accross', 'accrual', 'accse', 'accsess', 'acct', 'accuracy', 'accurate', 'acd', 'ace', 'acess', 'acessos', 'acgyuna', 'ache', 'achghar', 'achghyardr', 'achim', 'ack', 'acknowledgement', 'acl', 'aconnection', 'acqpinyd', 'acquire', 'acrobat', 'across', 'action', 'actionperforme', 'activate', 'activation', 'active', 'actively', 'activesync', 'activex', 'activitiess', 'activity', 'actual', 'actuall', 'actually', 'acyltoe', 'aczyfqjr', 'ad', 'ada', 'adapoter', 'adaptation', 'adapter', 'adaptor', 'adc', 'add', 'adddf', 'added', 'addin', 'addition', 'additional', 'additionally', 'addon', 'addr', 'addreess', 'address', 'addressee', 'addresses', 'adelhmk', 'adgtym', 'aditya', 'adjtmlzn', 'adjust', 'adjustment', 'admin', 'adminhtml', 'administra', 'administrador', 'administration', 'administrative', 'administrator', 'adobe', 'adopter', 'adoption', 'adpvilqu', 'adressaten', 'adresse', 'adrhtykin', 'adt', 'advance', 'advanced', 'advice', 'advise', 'advisor', 'adware', 'adwind', 'adwjfpbreu', 'ae', 'aeb', 'aedwrpvo', 'aeea', 'aef', 'aegpkruc', 'aenderungsantrag', 'aenl', 'aeophctw', 'aeptfbgs', 'aero', 'aerospace', 'aerp', 'aes', 'aese', 'aetwpiox', 'aevzsogn', 'af', 'afcbrhqw', 'afd', 'afdceb', 'afe', 'afef', 'afefsano', 'affect', 'affected', 'affection', 'affiliate', 'afghtyjith', 'aficio', 'afkstcev', 'afplnyxb', 'africa', 'afterit', 'afternoon', 'afukzhnm', 'ag', 'agathon', 'agbighyail', 'agdsqbwv', 'agent', 'agentid', 'agfxelwz', 'aggergrythator', 'aghl', 'aghw', 'aghynil', 'aghynilthykurtyar', 'agjzikpf', 'ago', 'agora', 'agr', 'agree', 'agreement', 'agrtywal', 'agvl', 'agvw', 'ahbgjrqz', 'ahdwqrson', 'ahead', 'ahjklpxm', 'ahlqgjwx', 'ahmbnsoi', 'ahost', 'ahrskvln', 'ahsnwtey', 'ahujajtyhur', 'ahyiuqev', 'ahypftjx', 'aidl', 'aidle', 'aidw', 'aiiw', 'aimcfeko', 'aiml', 'ainl', 'ainuhbmk', 'ainw', 'aiqjxhuv', 'air', 'aircap', 'aisl', 'aitsgqwo', 'aiul', 'aiuw', 'aju', 'ajuda', 'ajuiegrson', 'ak', 'aka', 'akiowsmp', 'akirtyethsyd', 'akisjtzm', 'akku', 'aktplhre', 'aktuell', 'al', 'alabama', 'alarm', 'albaney', 'albrecht', 'ald', 'ale', 'alejayhsdtffndro', 'aler', 'alert', 'alerting', 'alex', 'alexandfrre', 'alexandre', 'alexansxcddre', 'alexgnhtjunder', 'alfa', 'algorithm', 'alicona', 'aliuytre', 'aliv', 'alive', 'alkuozfr', 'alle', 'allein', 'allert', 'allgemeines', 'allinv', 'allinvest', 'allocate', 'allocation', 'allow', 'allowe', 'alloy', 'alluser', 'allway', 'alm', 'almeida', 'almost', 'alone', 'along', 'alook', 'alparslanthyr', 'alphabet', 'alr', 'already', 'alrthyu', 'als', 'also', 'alt', 'alte', 'alternate', 'alternative', 'although', 'alto', 'altogether', 'altweiherstra', 'alvrhn', 'always', 'alwaysupservice', 'alwjivqg', 'amadeu', 'amar', 'amazonaw', 'amb', 'ambal', 'ambient', 'amend', 'amerirtca', 'amerirtcas', 'amfgtyartya', 'amhywoqg', 'amihtar', 'amlswjfr', 'amniujsh', 'amongst', 'amount', 'amrice', 'amssm', 'amunt', 'amy', 'ana', 'analog', 'analtyicspro', 'analyse', 'analyser', 'analysis', 'analyst', 'analytic', 'analyze', 'analyzer', 'anantadth', 'anbei', 'anbtr', 'andere', 'anderen', 'anderer', 'andhtyju', 'andrdgrtew', 'android', 'anecdfps', 'anfghyudrejy', 'anftgup', 'angefragt', 'angeh', 'angelique', 'angeschlossen', 'angezeigt', 'angyta', 'anh', 'anhang', 'anira', 'anivdcor', 'anlage', 'anlegen', 'anleitung', 'anmelde', 'anmelden', 'annehman', 'annette', 'anniversary', 'annotatorlist', 'announce', 'annoy', 'annoying', 'annyhtie', 'anonymize', 'anonymous', 'another', 'anschalten', 'ansehen', 'ansi', 'ansprechpartner', 'answer', 'answering', 'anti', 'anticipate', 'antivirus', 'antrag', 'antwort', 'anubis', 'anubisnetworks', 'anup', 'anvqzdif', 'anwendung', 'anwendungsfehler', 'anwendungstechniker', 'anybody', 'anymore', 'anyone', 'anyother', 'anything', 'anytime', 'anyway', 'anyways', 'anywhere', 'anzahlungsrechnungen', 'anzeige', 'ao', 'aobrelcs', 'aofnvyzt', 'aolhgbps', 'aorthyme', 'aoshpjiu', 'aosqelnr', 'aoxtugzr', 'aoyrspjv', 'ap', 'apac', 'apacc', 'apacnet', 'apacpuchn', 'aparecido', 'apart', 'apc', 'api', 'apkqmrdu', 'apl', 'aplication', 'apo', 'apologize', 'apost', 'app', 'apparat', 'apparent', 'apparently', 'appear', 'appeare', 'append', 'appendix', 'apper', 'apple', 'applewebkit', 'applicable', 'applicaiton', 'application', 'applications', 'apply', 'appointment', 'appreciate', 'appreciatehub', 'apprentice', 'apprenticeship', 'appricatehub', 'approfghache', 'appropriate', 'approva', 'approval', 'approve', 'approver', 'approx', 'approximate', 'approximately', 'apps', 'apptc', 'april', 'aprtgghjk', 'apt', 'apul', 'apusm', 'apvpn', 'aqihfoly', 'aqritplu', 'aqstdryv', 'aqzcisjy', 'aqzz', 'ar', 'arac', 'araghtyu', 'arbeiten', 'arbeitsmedizin', 'arbeitsplatz', 'arbeitsstation', 'arbeitsstationsvertrauensstellung', 'arbeitstage', 'arbeitszeitplan', 'arbitrary', 'arc', 'arcgonvy', 'architecture', 'archive', 'archived', 'arde', 'area', 'argentina', 'argtxmvcumar', 'argument', 'arise', 'arithel', 'arjpdohf', 'arkulcoi', 'aroqwuvz', 'around', 'arpa', 'arrange', 'arrangement', 'arrive', 'arrojhsjd', 'arrow', 'arsbtkvd', 'art', 'article', 'asa', 'asano', 'ascend', 'ascii', 'asfgthok', 'ashdtyf', 'asheshopsw', 'ashley', 'ashtusis', 'asia', 'asiapac', 'asignment', 'asistance', 'asjadj', 'ask', 'aspect', 'aspx', 'asse', 'assessment', 'asset', 'assign', 'assigned', 'assigning', 'assignment', 'assist', 'assistance', 'assistant', 'associate', 'association', 'asst', 'assume', 'assumption', 'assunto', 'assurance', 'assyli', 'assylias', 'asuenpyg', 'aswl', 'aswyuysm', 'asxpnlgk', 'atache', 'atcl', 'atclx', 'athjyul', 'athrdyau', 'athyndy', 'atjsv', 'atlanta', 'atleast', 'atnh', 'atp', 'att', 'attach', 'attached', 'attachement', 'attachment', 'attack', 'attacker', 'attempt', 'attend', 'attendance', 'attendee', 'attens', 'attention', 'attn', 'attrachment', 'attribute', 'atualiza', 'atualizar', 'atuldhy', 'atydjkwl', 'au', 'auch', 'audi', 'audible', 'audio', 'audiocode', 'audit', 'auditor', 'aueftuyaienptkn', 'auf', 'aufgebaut', 'aufgrund', 'aufmvcapktttrux', 'aufstellen', 'aufstellung', 'auftr', 'auftrag', 'auftragspapiere', 'auftrgasbearb', 'aug', 'augdec', 'august', 'aunsgzmd', 'aurangabad', 'aurwddwacher', 'aus', 'ausbildungswerkstatt', 'ausdruck', 'ausdrucken', 'ausgabe', 'ausgedruckt', 'ausgef', 'ausgenommen', 'ausgeschaltet', 'ausliefern', 'austausch', 'austauschen', 'australia', 'auswerten', 'autamatically', 'authenication', 'authentic', 'authenticate', 'authentication', 'author', 'authorisation', 'authoritative', 'authority', 'authorization', 'authorize', 'authorized', 'auto', 'autobank', 'autoforward', 'automate', 'automatic', 'automatical', 'automatically', 'automaticaly', 'automation', 'autoresolve', 'autorice', 'auvolfhp', 'av', 'availability', 'available', 'avaliar', 'avast', 'ave', 'average', 'avez', 'avfertigungszeiten', 'avoid', 'avsbdhyu', 'aw', 'awa', 'await', 'award', 'awards', 'aware', 'awareness', 'away', 'awb', 'awhile', 'awkrdqzb', 'awswere', 'awyl', 'awylw', 'awysinic', 'awysv', 'awyw', 'awywkjswx', 'awywkwdx', 'awywx', 'axcbfuqo', 'axcl', 'axesnghb', 'axhg', 'axhkewnv', 'ayhtrvin', 'aykegsvr', 'ayrhcfxi', 'aytjedki', 'ayuda', 'ayujdm', 'az', 'azbtkqwx', 'azm', 'azoyklqe', 'azubi', 'azubis', 'azure', 'azurewebsite', 'azvixyqg', 'azvoespk', 'ba', 'baa', 'baadea', 'baafd', 'babanlal', 'babhjbu', 'babiluntr', 'bachsdadgtadw', 'bachsmhdyhti', 'back', 'backdate', 'backdoor', 'backend', 'backflush', 'background', 'backorder', 'backorderreport', 'backup', 'bactelephony', 'bad', 'badge', 'badges', 'badgknqs', 'badly', 'bag', 'bagtylleg', 'bahbrgy', 'bahdqrcs', 'bajio', 'baker', 'bakyhr', 'bal', 'balance', 'balzer', 'bandwidth', 'bank', 'banking', 'bankrd', 'bankrupe', 'bankverbindung', 'banner', 'bapi', 'bapireturnederrorexception', 'bar', 'baranwfhrty', 'barcelona', 'barcode', 'bare', 'barely', 'barley', 'barrtyh', 'bas', 'base', 'bash', 'basic', 'basically', 'basis', 'batch', 'bath', 'bathylardb', 'batia', 'battel', 'batter', 'battery', 'battle', 'batuhan', 'bau', 'baugtymli', 'baurhty', 'baut', 'bauuyternfeyt', 'bay', 'bb', 'bbb', 'bbcc', 'bbf', 'bbfa', 'bbo', 'bc', 'bcb', 'bcc', 'bcd', 'bcf', 'bcfac', 'bcom', 'bctypmjw', 'bcxfhekz', 'bd', 'bda', 'bdacd', 'bdc', 'bdclient', 'bddbf', 'bde', 'bdf', 'bdfzamjs', 'bdm', 'bdtryh', 'bdwdwarbara', 'beabsichtigten', 'beach', 'beachten', 'beacon', 'beahleb', 'beamer', 'bearbeiten', 'beathe', 'beb', 'becke', 'beckshtyw', 'beckshtywsnh', 'become', 'bedord', 'bee', 'beec', 'beenefit', 'beep', 'beeping', 'bef', 'befb', 'befdba', 'befinden', 'begin', 'beginning', 'behalf', 'behave', 'behaving', 'behavior', 'beheben', 'behind', 'behsnjty', 'bei', 'beigef', 'beilage', 'beilageproben', 'beim', 'bekommen', 'believe', 'bell', 'bellusco', 'belo', 'belong', 'belt', 'belwo', 'ben', 'benachrichtigen', 'benamor', 'bench', 'beneath', 'benefit', 'benelthyux', 'benethrytte', 'bengtjamin', 'benign', 'benjamtrhdyin', 'benutz', 'benutzen', 'benutzer', 'benz', 'beosjgxt', 'ber', 'beratung', 'berblick', 'berechtigung', 'bereits', 'berfkting', 'bergehend', 'berirtch', 'berirtchtswesen', 'bernardo', 'bernig', 'berpr', 'bersicht', 'bertragung', 'bescheid', 'beschichtungsleitstand', 'beschprechungsraum', 'beschreibung', 'beshryu', 'beshryue', 'beshryulist', 'beshryuliste', 'beshryuout', 'beshryuwire', 'best', 'bestand', 'bestellnumer', 'bestellungen', 'bestimmt', 'beteiligung', 'betoneira', 'betreff', 'betriebliche', 'betriebsrat', 'betriebsratsvorsitzender', 'better', 'bettery', 'bettymcdanghtnuell', 'beuflorc', 'bev', 'bex', 'beyond', 'bezeichnung', 'bf', 'bfb', 'bfda', 'bfeecda', 'bfghabu', 'bfiwanze', 'bfnackrw', 'bfnvjgxd', 'bfqnvezs', 'bfrgtonersp', 'bfrx', 'bgdxitwu', 'bgflmyar', 'bghakch', 'bghrbie', 'bgtyrant', 'bgwneavl', 'bgyluoqn', 'bhatyr', 'bhayhtrathramdnty', 'bhdikthyu', 'bhergtyemm', 'bhqgdoiu', 'bhrtty', 'bhughjdra', 'bi', 'bia', 'biaprod', 'bidengineere', 'big', 'bigdrtyh', 'bigleman', 'bigrtdfatta', 'bigtyl', 'bihrtyull', 'biintll', 'bildschirm', 'bill', 'billghj', 'billing', 'bin', 'bind', 'bio', 'bios', 'bis', 'bise', 'bisschen', 'bit', 'bite', 'bitmap', 'bitte', 'bixsapwu', 'biyhll', 'bjehirkx', 'bjnqikym', 'bk', 'bkbackup', 'bkmeuhfz', 'bkpf', 'bkwin', 'bkzcfmse', 'blade', 'blank', 'blapmcwk', 'blast', 'blaster', 'bld', 'ble', 'bleiben', 'blink', 'blktuiae', 'block', 'blocker', 'blockiert', 'blokker', 'bloque', 'bloqueado', 'bls', 'blue', 'bluescreen', 'bluetooth', 'bmcfrlyz', 'bmdawzoi', 'bmftzwasigbsyxn', 'bmftzwasygvtywl', 'bmhxwvys', 'bmudkpie', 'bng', 'bngell', 'bnmdslzh', 'bnoupaki', 'bnpehyku', 'bnsh', 'bnthygl', 'bob', 'bobj', 'bobje', 'bobjee', 'bobs', 'bocxgin', 'bods', 'boeyhthm', 'bog', 'boivin', 'bokrgadu', 'bollmam', 'bom', 'bomsdgar', 'bonhyb', 'bonus', 'book', 'booking', 'bookmarkhty', 'boot', 'booth', 'booysen', 'bop', 'bosch', 'boss', 'bot', 'bother', 'bothms', 'botnet', 'bottleneck', 'bottom', 'botton', 'boundary', 'box', 'bpa', 'bpc', 'bplfrnis', 'bplnyedg', 'bqapjkcl', 'bqdlegnp', 'bqirpxag', 'bqmjyprz', 'br', 'bra', 'bradstreet', 'bragtydlc', 'brahdthyu', 'branch', 'brand', 'brandeerthy', 'brandhyht', 'brandtrhee', 'braze', 'brdhdd', 'breach', 'break', 'breakdown', 'brembo', 'breqgycv', 'brescsfgryiani', 'brgtyad', 'brgyake', 'brianna', 'bridge', 'bridgex', 'brief', 'briefly', 'bright', 'bring', 'broadband', 'broadcast', 'broadscan', 'broadscanne', 'broadscanning', 'broken', 'brook', 'browse', 'browser', 'browserproblem', 'browsing', 'brrgtyant', 'brrgtyanthet', 'brthryian', 'brthyrtiv', 'brw', 'brxavtzp', 'bsod', 'bsopzxhi', 'bsqdaxhf', 'bsqofdlx', 'bt', 'btelgpcx', 'bthrob', 'bu', 'bucket', 'budget', 'budhtya', 'budighfl', 'buero', 'buffer', 'bug', 'bugat', 'build', 'builder', 'building', 'built', 'buissness', 'bujiesrg', 'bulk', 'bumzwtco', 'bunch', 'bundle', 'bung', 'bur', 'burnhntyham', 'business', 'businessobject', 'businesstrip', 'busse', 'bussiness', 'bussy', 'busy', 'button', 'buy', 'buyer', 'buyoipdj', 'bv', 'bvcdpxrt', 'bvchnrduoqoqf', 'bvfdnale', 'bvwepigr', 'bw', 'bwa', 'bwdpmbkp', 'bwfhtumx', 'bwgldaoe', 'bwhrattr', 'bwhrerattr', 'bwhrertran', 'bwsdslspln', 'bxeagsmt', 'bxgwyamr', 'bxtqducs', 'byclpwmv', 'byczkowski', 'byer', 'byhdderni', 'byoezmla', 'byte', 'bytes', 'byuihand', 'bz', 'bzekndcu', 'bzqcwsgf', 'bzw', 'bzwrchnd', 'bzxljkoy', 'ca', 'caaca', 'caas', 'cabane', 'cabinet', 'cable', 'cac', 'cache', 'cad', 'cada', 'cadagent', 'cadastra', 'cadb', 'cadkey', 'caexmol', 'caexmols', 'caf', 'caflvjrn', 'cagrty', 'caixa', 'cajdwtgq', 'cal', 'calander', 'calculate', 'calculation', 'calculator', 'calendar', 'calibration', 'call', 'callback', 'caller', 'callie', 'caltmgoe', 'cam', 'camera', 'campaign', 'campbell', 'campo', 'campus', 'canada', 'cancel', 'candice', 'cann', 'cannont', 'cantabria', 'cantine', 'caoryhuq', 'capability', 'capacity', 'capture', 'car', 'caractere', 'carahcter', 'carb', 'carbide', 'card', 'cardfrmeca', 'cards', 'care', 'carlos', 'carmer', 'carolutyuin', 'carrier', 'carry', 'cart', 'cartridge', 'carve', 'cas', 'case', 'cash', 'cashpro', 'casting', 'castro', 'catalog', 'catalogue', 'catch', 'category', 'cathytyma', 'cause', 'caution', 'cb', 'cbccb', 'cbhnxafz', 'cbikymvf', 'cbmqufoa', 'cc', 'ccb', 'cccethxakm', 'cccplant', 'ccfterguss', 'ccftv', 'ccgslb', 'ccif', 'ccyks', 'cd', 'cdbaoqt', 'cdd', 'cde', 'ce', 'ceb', 'cebef', 'cec', 'cedsairg', 'ceea', 'cegtcil', 'cegtcily', 'cekomthyr', 'cell', 'cellphone', 'cemvwyso', 'center', 'central', 'centralsamerirtca', 'centre', 'ceo', 'ceqmwkhi', 'cer', 'ceramdntyic', 'cert', 'certain', 'certainly', 'certificate', 'certify', 'cesarrogerio', 'cesco', 'cesgrtar', 'cest', 'cet', 'cf', 'cfac', 'cfb', 'cfc', 'cfcabfafdfaffddfeefbfd', 'cfce', 'cfe', 'cfef', 'cfgxpvzi', 'cfibdamq', 'cfkwxlmq', 'cfsqwtdv', 'cgdaytshqsd', 'cgo', 'cgwdwxhcmlevt', 'cgxlqtiz', 'ch', 'chahdtyru', 'chain', 'chainszv', 'chainszvuywlksb', 'chainttlf', 'chainverifier', 'chairman', 'challan', 'challenge', 'chance', 'chandmt', 'chandruhdty', 'chane', 'change', 'changeable', 'changed', 'changi', 'chanhe', 'channel', 'chaof', 'character', 'characteristic', 'charatcher', 'charge', 'charger', 'chargeur', 'charging', 'charm', 'chart', 'chassis', 'chat', 'chatgrylouy', 'chatryung', 'chdffong', 'che', 'check', 'checking', 'checkoutbapi', 'checkoutview', 'chefghtyn', 'chefgtnp', 'cheghthan', 'chek', 'cher', 'chg', 'chhyene', 'chian', 'chicago', 'chief', 'child', 'china', 'chinese', 'chipset', 'chk', 'chkdsk', 'chkmejsn', 'chkzbeav', 'chmielewski', 'chn', 'chnagdrtymk', 'chnbghyg', 'choice', 'choose', 'chopamghy', 'choppy', 'choragudi', 'chosuygq', 'chrashe', 'christgry', 'christgryta', 'christgrytian', 'christgrytoph', 'chrithysgd', 'chriuimjiann', 'chrome', 'chrsddiwds', 'chrthryui', 'chucashadqc', 'chukhyt', 'chun', 'cid', 'cif', 'cighytol', 'cihaz', 'cindy', 'cioehrnq', 'cip', 'circle', 'circuit', 'ciruit', 'cisco', 'citrix', 'city', 'cixzwuyf', 'ck', 'cker', 'ckinfo', 'ckmeldeterminal', 'ckmeldung', 'ckpojwir', 'ckrpsabm', 'cksetzen', 'cksetzten', 'ckxwtoam', 'cl', 'claapdico', 'claim', 'clappdico', 'clarification', 'clarify', 'class', 'classification', 'classifiertype', 'classify', 'classroom', 'clcking', 'clean', 'cleaner', 'cleanup', 'clear', 'clearance', 'clearly', 'cledara', 'cleoprzq', 'clhqsm', 'clhr', 'click', 'client', 'cliente', 'clientless', 'clients', 'clint', 'clip', 'clock', 'close', 'closed', 'closet', 'closing', 'clothe', 'cloud', 'clrgtydia', 'cls', 'clswzxoq', 'cltnwazh', 'cltszugw', 'clue', 'cluster', 'cm', 'cmm', 'cmor', 'cmp', 'cms', 'cn', 'cnc', 'cnctft', 'cneter', 'cnhgysju', 'cnhqgzwt', 'cnjkeko', 'cnmfbdui', 'cnn', 'cnw', 'co', 'coast', 'coat', 'coating', 'coatncqulao', 'cobrgtool', 'cobsfvjz', 'cockpit', 'code', 'coetzk', 'coferte', 'coffee', 'cold', 'collaboration', 'collapse', 'collate', 'colleague', 'collect', 'collective', 'collegue', 'collogue', 'color', 'column', 'com', 'comapny', 'combi', 'combination', 'combine', 'come', 'comercial', 'comfortable', 'command', 'comment', 'commercial', 'commerirtcal', 'commit', 'commited', 'commodity', 'common', 'commonly', 'commstorage', 'communicate', 'communication', 'communications', 'communicator', 'como', 'comp', 'company', 'companycenter', 'companyguest', 'companyipg', 'companyme', 'companypzyre', 'companys', 'companysecure', 'companyssecure', 'companyst', 'companytm', 'compare', 'comparison', 'compati', 'compatibility', 'compatibilty', 'compatible', 'compensation', 'competitive', 'competrhyrncy', 'complain', 'complaint', 'complete', 'completely', 'completion', 'complex', 'complexity', 'compliance', 'component', 'comprehend', 'compromise', 'compromised', 'compute', 'computer', 'computerkonto', 'comsume', 'comunication', 'con', 'conact', 'concall', 'concern', 'concerned', 'conclusion', 'conclusive', 'condition', 'conduct', 'conf', 'conference', 'conferences', 'confernece', 'confidential', 'confidentiality', 'config', 'configair', 'configig', 'configuration', 'configurator', 'configure', 'configured', 'confirm', 'confirmation', 'confirmationofhpcpo', 'confirmed', 'conforma', 'conformaclad', 'confusion', 'congratuldhyation', 'conn', 'connc', 'connec', 'connect', 'connected', 'connecti', 'connection', 'connectivity', 'connector', 'connectt', 'connoecte', 'conseciones', 'consider', 'consigment', 'consign', 'consignment', 'consist', 'console', 'constance', 'constant', 'constantly', 'constraint', 'construct', 'construction', 'consult', 'consultant', 'consultation', 'consulting', 'consume', 'cont', 'contact', 'contacted', 'contactperson', 'contail', 'contain', 'contatc', 'contate', 'content', 'context', 'continiously', 'continually', 'continue', 'continuous', 'continuously', 'contract', 'contractor', 'contrase', 'contribute', 'control', 'controll', 'controllable', 'controller', 'contv', 'conv', 'convention', 'conversation', 'conversion', 'convert', 'converted', 'coo', 'cook', 'cookie', 'cool', 'cooperation', 'coordinate', 'coordinator', 'copier', 'coppthsy', 'copy', 'copying', 'copyright', 'cor', 'cord', 'cordrtegd', 'core', 'corner', 'corp', 'corpbusinessdev', 'corporacion', 'corporate', 'corporateaccounte', 'corporation', 'correct', 'correction', 'corrective', 'correctly', 'correlation', 'correspond', 'correspondence', 'corresponding', 'corretamente', 'corrupt', 'corsthroc', 'coshopfloor', 'cost', 'costarra', 'costly', 'cothyshy', 'could', 'coumikzb', 'counsel', 'count', 'counter', 'countermeasure', 'countersinking', 'country', 'couple', 'courage', 'course', 'court', 'couskjgd', 'coutidfrc', 'coutinho', 'cover', 'coverage', 'coworker', 'cowqyjzm', 'cp', 'cpbzkrel', 'cpeioxdz', 'cpic', 'cpihaxbs', 'cplant', 'cpmaidhj', 'cpmmecial', 'cpp', 'cptl', 'cpu', 'cqlehowf', 'cqvuexjz', 'cqxahony', 'cr', 'crack', 'crackling', 'cradle', 'craigfgh', 'cran', 'crash', 'crashing', 'create', 'createknownaccountssummary', 'creation', 'creator', 'credential', 'credit', 'crete', 'crhyley', 'cria', 'crieria', 'crishtyutian', 'criterion', 'critical', 'crjhotyk', 'crm', 'crmdynamics', 'crohuani', 'crop', 'cross', 'crosscomp', 'crt', 'crtgyerine', 'cruz', 'cruzjc', 'crysyhtal', 'cs', 'cscache', 'csd', 'cse', 'csenjruz', 'csewdwdwdndmill', 'csi', 'csn', 'csqe', 'csr', 'csrsv', 'csscdddwsawdrill', 'csscdrill', 'cst', 'csv', 'csvlijud', 'ctainstanceid', 'ctc', 'cthaasnoc', 'cthoursook', 'cthryhris', 'cti', 'ctoc', 'ctrbjusz', 'ctrl', 'ctry', 'ctu', 'ctusaqpr', 'ctxjsolz', 'ctzykflo', 'cubdsrml', 'cube', 'cubicle', 'cudgevmx', 'cuibfgna', 'culghjn', 'cumbersome', 'cuqptoah', 'curhetyu', 'curious', 'curr', 'currency', 'current', 'currently', 'currentlyx', 'curso', 'cursor', 'cust', 'custom', 'customer', 'customermaster', 'customet', 'customization', 'cut', 'cute', 'cuthyunniy', 'cutpwjie', 'cutter', 'cutview', 'cv', 'cvd', 'cve', 'cvltebaj', 'cvn', 'cvss', 'cvyg', 'cvyifdirvjfigv', 'cvyycaoygzpcnn', 'cwdzunxs', 'cwfzldts', 'cwip', 'cwivnxuk', 'cwkjruni', 'cwryvksu', 'cwuospin', 'cwuqzyvm', 'cwxtsvkm', 'cyber', 'cybersecurity', 'cycle', 'cyndy', 'cytohwau', 'cyvdluja', 'cyxieuwk', 'cyzuomxa', 'czech', 'cznlfbom', 'czoparqg', 'da', 'daa', 'dabhruji', 'dac', 'dacafb', 'dacl', 'dada', 'dadurch', 'daghyunny', 'daily', 'dailyorderbillingreport', 'daisy', 'dakota', 'dale', 'dalgtylam', 'dallas', 'dalmdwppi', 'damage', 'daman', 'damuphws', 'dan', 'dana', 'danach', 'dane', 'danghtnuell', 'danie', 'dank', 'danke', 'danl', 'dann', 'danyhuie', 'darda', 'dardabthyr', 'daria', 'dartnl', 'das', 'daserf', 'dash', 'dashbankrd', 'dass', 'dat', 'data', 'database', 'databasesliste', 'databse', 'datacenter', 'datacntr', 'datafile', 'datagramdnty', 'dataloads', 'datas', 'dataservice', 'datasource', 'datateam', 'date', 'dated', 'datei', 'dateien', 'daten', 'datenbank', 'datum', 'dauerhaft', 'davgtgyrh', 'davidthd', 'day', 'daylight', 'daypay', 'days', 'dazu', 'db', 'dba', 'dbafdeb', 'dbcccbbe', 'dbdhz', 'dbe', 'dbednyuarski', 'dbfc', 'dbff', 'dbgrtqhs', 'dbif', 'dbkdwwd', 'dbrslnhe', 'dbsgicet', 'dbwkxalj', 'dbwuyxoq', 'dc', 'dca', 'dcafe', 'dcc', 'dcdhzhd', 'dce', 'dceghpwn', 'dcgw', 'dcgwuvfk', 'dctvfjrn', 'dctviemg', 'dd', 'ddb', 'ddc', 'dde', 'ddeihrsh', 'ddp', 'dds', 'ddwjm', 'de', 'dea', 'deab', 'deactivate', 'dead', 'deadlock', 'deadlocke', 'deae', 'deal', 'dealer', 'dear', 'deb', 'debaghjsish', 'debgrtybie', 'debhyue', 'debited', 'debtgyrur', 'debug', 'dec', 'december', 'decent', 'decide', 'decimal', 'decision', 'decommission', 'decommissioning', 'decrease', 'decrypt', 'dedalus', 'dedcea', 'dedicate', 'dedicated', 'deduct', 'deduction', 'deeghyupak', 'deep', 'def', 'default', 'defecbfe', 'defect', 'defective', 'defekt', 'defekte', 'defender', 'defense', 'defigne', 'define', 'definedsubmitform', 'defines', 'definitely', 'definition', 'deflate', 'defrag', 'deghjick', 'dehnfyru', 'deilvery', 'deine', 'del', 'delay', 'delegate', 'delegation', 'delete', 'deleted', 'deletion', 'delievery', 'deliver', 'deliverable', 'deliveries', 'delivery', 'dell', 'deloitte', 'deloro', 'delsonpereira', 'delta', 'delthybid', 'delviery', 'dem', 'demage', 'demand', 'demjqrfl', 'demo', 'demonstration', 'demselben', 'den', 'dene', 'denen', 'dengic', 'denied', 'density', 'deny', 'departement', 'departmenst', 'department', 'departments', 'depend', 'dependent', 'depfugcy', 'deploy', 'deployment', 'deposit', 'deppt', 'depreciation', 'dept', 'depute', 'der', 'des', 'describe', 'description', 'design', 'designate', 'designe', 'designer', 'desk', 'desktop', 'despite', 'dest', 'destinat', 'destination', 'destine', 'destop', 'destrtgoy', 'detachable', 'detail', 'detailed', 'details', 'detect', 'detecting', 'detection', 'determinate', 'determination', 'determine', 'deu', 'deusad', 'deutsch', 'deutschland', 'dev', 'develop', 'development', 'dever', 'device', 'devip', 'devise', 'devt', 'dewicrth', 'deyhtwet', 'df', 'dfetvmzq', 'dfgry', 'dfgtyon', 'dfhtyuison', 'dfpqxbgm', 'dfrt', 'dfsdpor', 'dfupksnr', 'dg', 'dgbfptos', 'dghuane', 'dgmlen', 'dgrkbnua', 'dgrtrkjs', 'dgtalone', 'dgurhtya', 'dhckfmbq', 'dhcopwxa', 'dhcp', 'dhcpack', 'dhcpd', 'dhdtwdd', 'dhec', 'dhjhieltiepvcb', 'dhjuyick', 'dhkovprf', 'dhl', 'dhoalycb', 'dhqwtcsr', 'dhthykts', 'dhwduw', 'di', 'diagnosis', 'diagnostic', 'dial', 'dialing', 'dialog', 'diaolog', 'dibesh', 'dicafxhv', 'diconnection', 'die', 'diehfhyumj', 'dienstag', 'dierppear', 'dierppeare', 'dierppeared', 'diese', 'diesem', 'dieser', 'difference', 'different', 'differential', 'differently', 'difficult', 'difficulty', 'difnjlkp', 'difozlav', 'digger', 'digital', 'digits', 'dilemma', 'dinge', 'dinner', 'dint', 'dinthyesh', 'dipl', 'dir', 'direct', 'directeur', 'direction', 'directionality', 'directive', 'directly', 'director', 'directory', 'direkt', 'disable', 'disabled', 'disappear', 'disassociate', 'disaster', 'discconect', 'disclaimer', 'disclose', 'disclosure', 'disconnect', 'disconnected', 'disconnecting', 'disconnection', 'disconnects', 'discount', 'discover', 'discovery', 'discrepancy', 'discription', 'discuss', 'discussed', 'discussion', 'disk', 'dispatch', 'dispatcher', 'displace', 'display', 'dispo', 'disposition', 'dispositivo', 'disprove', 'disrupt', 'dissemination', 'dist', 'distance', 'distinti', 'distort', 'distribuator', 'distribute', 'distributes', 'distribution', 'distributor', 'distrtgoye', 'disturb', 'disturbance', 'div', 'dive', 'diversos', 'divestiture', 'divide', 'division', 'diwhdd', 'dixhtyuit', 'dizquolf', 'djdwol', 'djhznybt', 'djpwfxzt', 'djskrgae', 'djtyroha', 'djvu', 'djwkylif', 'dkinobsv', 'dkklddww', 'dknejifu', 'dl', 'dljvtebc', 'dll', 'dlmukhyn', 'dlv', 'dlwdwd', 'dly', 'dmcc', 'dmexgspl', 'dmhpm', 'dmitazhw', 'dmqxwkfr', 'dms', 'dmvpn', 'dmz', 'dn', 'dnb', 'dnc', 'dnckipwh', 'dnis', 'dnlhsgyo', 'dnqdqld', 'dnrubpis', 'dns', 'dntym', 'dnwfhpyl', 'dob', 'doc', 'docad', 'docb', 'dock', 'docking', 'docm', 'doctype', 'document', 'documentation', 'documentos', 'documenttype', 'docx', 'doe', 'doen', 'dofghbme', 'doflefne', 'dokumente', 'dokumenten', 'dolder', 'dolhyt', 'dom', 'doma', 'domain', 'domasky', 'domestic', 'dondwdgj', 'donggle', 'dongle', 'donnathyr', 'donnerstag', 'donot', 'donwloade', 'dort', 'dos', 'dosen', 'dot', 'dotm', 'dotnet', 'dotnetframdntyework', 'dotx', 'double', 'doubleklick', 'doubleverify', 'doubt', 'doug', 'douglas', 'dow', 'downgrade', 'download', 'downloaddocumentoriginals', 'downloaded', 'downloader', 'downloading', 'downloads', 'downs', 'downtime', 'doyhtuug', 'dp', 'dpajkrhy', 'dpo', 'dport', 'dps', 'dpuifqeo', 'dpvaymxrest', 'dpyvjcxr', 'dqowbefk', 'dqplrwoy', 'dr', 'drac', 'draft', 'drafting', 'draftsight', 'dramdntyatically', 'draw', 'drawer', 'drawing', 'drctxjqi', 'dream', 'dridex', 'drill', 'drilling', 'dringend', 'drive', 'driver', 'drnqjzph', 'drop', 'dropbox', 'dropdox', 'drops', 'droracle', 'drtawing', 'drtbe', 'druck', 'druckauftr', 'druckauftrag', 'drucker', 'druckt', 'drue', 'drum', 'drvier', 'drwgs', 'ds', 'dsbmgonk', 'dsc', 'dsccache', 'dscsag', 'dsfdb', 'dshferby', 'dsilvfgj', 'dslamtcb', 'dss', 'dst', 'dstassetofinterest', 'dsthostname', 'dstip', 'dstport', 'dsw', 'dt', 'dtbycsgf', 'dtdqvqojzonlcb', 'dtheb', 'dthyan', 'dtjvhyob', 'dtlmbcrx', 'dtlwscma', 'dtnzgkby', 'dtp', 'dtwfaejr', 'dtwlrofu', 'du', 'dual', 'duane', 'duca', 'ducyua', 'dudekm', 'dudyhuyv', 'due', 'duel', 'duffym', 'duisenbergplantsoen', 'dummy', 'dump', 'dunham', 'dunning', 'duplex', 'duplicate', 'duplication', 'duration', 'durch', 'durchgef', 'durchwahl', 'durnfyxb', 'durumu', 'duty', 'duyhurmont', 'dv', 'dvd', 'dveuglzp', 'dvi', 'dviwuzhm', 'dvpnfbrc', 'dvqtziya', 'dvsrepro', 'dvsyxwbu', 'dvw', 'dvzlq', 'dvzrfsbo', 'dw', 'dwdbertfsych', 'dwfiykeo', 'dwgs', 'dwight', 'dwijxgob', 'dwjvfkqe', 'dwon', 'dwtivjrp', 'dwwkd', 'dwwlhews', 'dxf', 'dxnzkcuh', 'dxwuovgs', 'dxyvfuhr', 'dyhtruutt', 'dyhtuiel', 'dymanics', 'dymo', 'dynamic', 'dynamics', 'dyqekzuc', 'dyrgfwbm', 'dyxrpmwo', 'dz', 'dzbujamc', 'dzjespml', 'dzrgpkyn', 'ea', 'eadmpzcn', 'eaeb', 'eaf', 'eafe', 'eagcldaten', 'eagcutview', 'eagl', 'eaglt', 'eagsm', 'eagvusbr', 'eagw', 'eagwsf', 'eagwt', 'eamnvwyh', 'eaodcgsw', 'ear', 'earbud', 'earlier', 'earliest', 'early', 'earning', 'earphone', 'earth', 'earthwork', 'earthworks', 'eartyp', 'easier', 'easily', 'east', 'eastern', 'easy', 'easyterritory', 'eawkpgqf', 'eaymvrzj', 'eb', 'eba', 'ebaad', 'ebc', 'ebcd', 'ebhl', 'ebhsm', 'ebi', 'ebkfwhgt', 'ebm', 'ebom', 'ebpwcfla', 'ebs', 'ebus', 'ebusaar', 'ebusiness', 'ec', 'ecaa', 'ecatel', 'ecc', 'eccc', 'echo', 'ecp', 'ecs', 'ective', 'ecwtrjnq', 'ecygimqd', 'ed', 'edad', 'edb', 'edclhpkf', 'edd', 'ede', 'edfl', 'edfw', 'edge', 'edgemaster', 'edi', 'edimax', 'edit', 'editable', 'edition', 'editor', 'edksm', 'edksw', 'edml', 'edmlx', 'edmsm', 'edpouqjl', 'edsp', 'edspmloy', 'edt', 'educate', 'edula', 'edv', 'edww', 'ee', 'eead', 'eecdaac', 'eeec', 'eef', 'eeml', 'eemw', 'eemwx', 'eeserra', 'eet', 'ef', 'efa', 'efb', 'efbwiadp', 'efce', 'efdhrlwv', 'efdl', 'efdw', 'efe', 'effect', 'effective', 'effectively', 'effeghnk', 'efficiency', 'effort', 'efgoawct', 'efjzbtcm', 'efodqiuh', 'efrjkspc', 'efsdciut', 'efyumrls', 'eg', 'eglavnhx', 'eglwsfkn', 'egnwtvch', 'eh', 'ehem', 'ehndjmlv', 'ehs', 'eight', 'eijzadco', 'eilig', 'eilt', 'eimhxowu', 'ein', 'eine', 'einen', 'eingabe', 'eingegangen', 'eingegeben', 'einige', 'einlasten', 'einlegen', 'einskannen', 'einstein', 'einstellung', 'eintragen', 'einzelne', 'einzig', 'einzug', 'eiomnuba', 'either', 'eject', 'ejvkzobl', 'ek', 'ekim', 'ekmarvgd', 'ekmw', 'ekpl', 'ekpsm', 'ekxl', 'ekxw', 'el', 'elapse', 'elbaqmtp', 'elcpduzg', 'ele', 'elect', 'element', 'elengineere', 'eletronico', 'eligibility', 'eliminate', 'elituyt', 'elituytt', 'elm', 'elrndiuy', 'else', 'elt', 'eluvxqhw', 'elyamqro', 'em', 'email', 'emails', 'emal', 'emanate', 'emb', 'embed', 'embertell', 'emc', 'emea', 'emealeitung', 'emerald', 'emergency', 'emp', 'empf', 'empkirty', 'empl', 'employee', 'employment', 'emporarily', 'empty', 'empw', 'empwa', 'emsw', 'emxbpkwy', 'emzlw', 'en', 'enable', 'enc', 'enceinjury', 'enclose', 'enclosed', 'enclsoe', 'enco', 'encode', 'encodi', 'encoding', 'encontrar', 'encontrou', 'encounter', 'encrypt', 'encryption', 'encxjoawjr', 'end', 'endg', 'endkontrolle', 'endlkglfeghart', 'endpoint', 'ene', 'enforcement', 'eng', 'engagement', 'engg', 'engilsh', 'engine', 'engineer', 'engineering', 'engl', 'englehart', 'english', 'enhance', 'enhancement', 'enormity', 'enough', 'enquiry', 'ensure', 'ent', 'enter', 'entered', 'enterence', 'enterprise', 'enth', 'enthalten', 'entire', 'entity', 'entrance', 'entrie', 'entry', 'entsprechend', 'enumerate', 'env', 'enviada', 'enviar', 'enviroment', 'environment', 'environmental', 'envoy', 'eonhuwlg', 'eoreport', 'eotjzyxm', 'eovkxgpn', 'eozqgims', 'ep', 'epilwzux', 'epj', 'eplan', 'eple', 'epmap', 'epmsystem', 'eps', 'eq', 'eqdgoxap', 'eqiyskhm', 'eqtofwbm', 'equal', 'equipment', 'eqxyvfpi', 'er', 'eraser', 'erathyur', 'erfasse', 'erfolg', 'ergebnis', 'erhalten', 'erhmuncq', 'eri', 'erihyuk', 'erin', 'erirtc', 'erkennbar', 'erkennen', 'erkheim', 'erledigung', 'erode', 'erp', 'erpdata', 'erpgui', 'erplv', 'erpquery', 'erpstartsrv', 'erpsys', 'errata', 'erratasec', 'errir', 'erro', 'error', 'errror', 'erschien', 'erstellen', 'erthryika', 'ertnhxkf', 'ervin', 'ervuyin', 'es', 'esafrtbh', 'escalate', 'escalation', 'eseer', 'eset', 'esguiazn', 'esias', 'esp', 'especially', 'espinosa', 'esprit', 'esrs', 'ess', 'essa', 'est', 'esta', 'establish', 'estate', 'estaxpnz', 'estimate', 'estorage', 'esxi', 'eszl', 'et', 'etc', 'etdh', 'eth', 'ethd', 'ethernet', 'ethic', 'ethical', 'ethics', 'ethnic', 'ethryju', 'ethyxekirty', 'etibgja', 'etime', 'eto', 'etr', 'etsmnuba', 'etvzjmhx', 'etwas', 'etyhumpdil', 'eu', 'euioadyf', 'eujpstxi', 'eulalla', 'eulsvchi', 'euobrlcn', 'euro', 'euromote', 'europe', 'european', 'eusa', 'ev', 'eva', 'evakuierung', 'evaluation', 'evaluationmodel', 'evaluationmodels', 'even', 'evening', 'event', 'eventid', 'eventtypeid', 'eventtypepriority', 'eventually', 'ever', 'evercast', 'every', 'everybody', 'everyday', 'everyone', 'everything', 'everytime', 'everywhere', 'evh', 'evhl', 'evhw', 'evmrcqug', 'evolution', 'evry', 'evzbhgru', 'ewa', 'ewag', 'ewel', 'ewew', 'ewewx', 'ewgihcnz', 'ewkw', 'ewll', 'ewourgcx', 'ewseditor', 'ex', 'exact', 'exactly', 'examine', 'example', 'exbllhvzzxjfawq', 'exceed', 'excel', 'excellence', 'excellist', 'except', 'exception', 'excessive', 'exchange', 'excise', 'exclude', 'exclusion', 'exclusive', 'excuse', 'exe', 'exec', 'exection', 'executable', 'executar', 'execute', 'executing', 'execution', 'executive', 'executncqulao', 'exekirty', 'exel', 'exempt', 'exemption', 'exepsne', 'exgjscql', 'exist', 'existing', 'exit', 'exlbkpoj', 'exls', 'exlude', 'expand', 'expect', 'expedite', 'expense', 'experiance', 'experience', 'expert', 'exphkim', 'expiration', 'expire', 'expiry', 'explain', 'explanation', 'explicit', 'explicitly', 'exploit', 'exploitation', 'explore', 'explorer', 'export', 'exporta', 'exposition', 'expr', 'express', 'exszgtwd', 'ext', 'extend', 'extended', 'extension', 'extensions', 'extensive', 'extent', 'exterior', 'external', 'extn', 'extr', 'extra', 'extract', 'extraction', 'extremely', 'exurcwkm', 'ey', 'ez', 'ezbmonjr', 'ezrsdgfc', 'fa', 'fab', 'fabijhsd', 'fabry', 'fabxjimdghtyo', 'face', 'facet', 'facilitate', 'facilitator', 'facility', 'fact', 'factory', 'fading', 'fae', 'faecee', 'faerfrtbj', 'fail', 'failagain', 'faile', 'failure', 'fakeav', 'falhou', 'fall', 'fallowe', 'falsch', 'false', 'familiar', 'fan', 'fandyhgg', 'faq', 'far', 'farnwhji', 'fashion', 'fast', 'faster', 'fastethernet', 'fasyiokl', 'fatal', 'fault', 'faulty', 'favor', 'favorite', 'fax', 'faxen', 'fb', 'fbadnjhu', 'fbcce', 'fbgetczn', 'fbhyeksq', 'fbjkzxisupply', 'fbln', 'fbmugzrl', 'fbusqrlt', 'fc', 'fca', 'fccee', 'fcd', 'fceymwtz', 'fcf', 'fclswxkz', 'fcniljtu', 'fctmzhyk', 'fd', 'fdb', 'fdbbef', 'fdbgoamk', 'fdceb', 'fdd', 'fdeb', 'fdgrty', 'fdgrzwfyjlyxr', 'fdigznbk', 'fdv', 'fdyietau', 'fe', 'fea', 'feaeff', 'feasibility', 'feather', 'feature', 'feb', 'february', 'fechado', 'fechar', 'federal', 'feecdaac', 'feed', 'feedback', 'feeder', 'feel', 'fef', 'fehl', 'fehlen', 'fehlende', 'fehler', 'fehlerhaft', 'fehlermeldung', 'fehlgeschlagen', 'fehlversuche', 'feira', 'feld', 'felix', 'fellow', 'feluybrn', 'fen', 'fence', 'fengapac', 'fenthgh', 'ferbfhyunam', 'ferguss', 'fernandez', 'fert', 'fertigung', 'festnetztelefon', 'festplatte', 'fetaqndw', 'fetch', 'fever', 'ff', 'ffafbba', 'ffnen', 'ffner', 'ffthhiago', 'fgnqzeai', 'fgvv', 'fgxprnub', 'fhr', 'fhtyulvio', 'fhurakgsl', 'fhyuiinch', 'fi', 'fiber', 'fico', 'fidleyhtjp', 'field', 'fieldname', 'fieldsales', 'fievgddtrr', 'fight', 'figure', 'fijwprtv', 'file', 'filename', 'files', 'filesys', 'filesystem', 'filipim', 'fill', 'filter', 'final', 'finalize', 'finally', 'finance', 'financemssg', 'financial', 'find', 'findet', 'finding', 'fine', 'finial', 'finish', 'finished', 'fioghtna', 'firefox', 'firewall', 'firmware', 'first', 'firstly', 'fitness', 'five', 'fix', 'fiz', 'fjaqbgnld', 'fjzywdpg', 'fkicawph', 'fkuqjwit', 'flag', 'flags', 'flap', 'flapokym', 'flash', 'flashing', 'flat', 'flaw', 'flbnyqzc', 'flea', 'fledge', 'fleisrgtyk', 'flicker', 'flickering', 'flight', 'floor', 'flow', 'flowchart', 'flush', 'fm', 'fmcxikqz', 'fmeozwng', 'fmp', 'fmw', 'fmxcnwpu', 'fmzdkyqv', 'fn', 'fnqelwpk', 'fnr', 'fntmbpla', 'fo', 'foi', 'folder', 'folgende', 'folgender', 'folk', 'follow', 'following', 'followup', 'follwe', 'font', 'footer', 'forcast', 'force', 'fore', 'foreach', 'forecast', 'forecasting', 'foreign', 'foreseeconndirection', 'foreseedstipgeo', 'foreseeexternalip', 'foreseeglobalmodelassessmt', 'foreseeinternalip', 'foreseemaliciouscomment', 'foreseemaliciousprobability', 'foreseemalprobglobalmodel', 'foreseesrcipgeo', 'forever', 'forge', 'forget', 'forgot', 'form', 'forma', 'format', 'formatheywte', 'formatheywted', 'formatheywting', 'formation', 'former', 'formerly', 'forth', 'fortive', 'forum', 'forw', 'forward', 'forwarded', 'forwarding', 'fothrmijm', 'foun', 'foundry', 'four', 'fourth', 'fox', 'fp', 'fpsf', 'fqdgotvx', 'fqdn', 'fqhlvcxn', 'fqpybgri', 'fqqgqevyvfjbido', 'fr', 'fragmentation', 'framdntye', 'framdntyework', 'framdntywork', 'france', 'franhtyu', 'franhtyufurt', 'franhtyuj', 'franjuz', 'frau', 'fre', 'fredi', 'free', 'freetext', 'freeze', 'freezing', 'freigabe', 'freight', 'freimachen', 'freischalten', 'freitag', 'french', 'frente', 'frequent', 'frequently', 'freundliche', 'freundlichem', 'freundlichen', 'frgtyetij', 'frhr', 'friday', 'friend', 'frmyejbx', 'fro', 'fron', 'front', 'frota', 'frozen', 'frseoupk', 'frsilva', 'frthdyui', 'frustrated', 'frustrating', 'fsn', 'fsp', 'ft', 'ftgvlneh', 'ftnijxup', 'ftp', 'ftsf', 'ftungssteuerung', 'fu', 'fue', 'fueiklyv', 'fuer', 'fuf', 'fufrtal', 'fujitsu', 'fulfill', 'fulfillment', 'full', 'fullness', 'fully', 'fulqgsuutybgywr', 'fumkcsji', 'funcionando', 'funcionar', 'function', 'functionality', 'fund', 'fung', 'funke', 'funktion', 'funktionert', 'funktionieren', 'funktioniert', 'furnace', 'furth', 'furto', 'fuser', 'fusion', 'futur', 'future', 'futureinter', 'fuyaojzpcnnbmf', 'fuydxemo', 'fuyidkbv', 'fvaihgpx', 'fvwhyenp', 'fw', 'fwchqjor', 'fwd', 'fwknxupq', 'fx', 'fxmzkvqo', 'fxnkzaqu', 'fxwjhapo', 'fy', 'fybwjzhx', 'fyedqgzt', 'fygrwuna', 'fyi', 'fylrosuk', 'fynkssc', 'fyoxqgvh', 'fyzceglp', 'fzsdnmrk', 'fzsxgapt', 'fzwxitman', 'gabryltk', 'gabryltka', 'gabryltke', 'gabryltkla', 'gacfhedw', 'gadbpfrz', 'gadisyxr', 'gage', 'gain', 'gaiopkun', 'gajthyana', 'galaxy', 'ganedsght', 'gaop', 'gaotwcfd', 'gap', 'gard', 'garthyhtuy', 'gartryhu', 'gas', 'gastronomy', 'gate', 'gather', 'gaxrulwo', 'gayhtjula', 'gb', 'gbaljypo', 'gbar', 'gbr', 'gbytu', 'gcknzthb', 'gclnfkis', 'gcxvtbrz', 'gd', 'gdgy', 'gdhyrt', 'gdthryd', 'gdw', 'gdxujefz', 'gdylnaue', 'ge', 'gear', 'geb', 'geben', 'gebiet', 'geblockt', 'gebraucht', 'gebucht', 'gebuchte', 'gecko', 'gedruckt', 'geehrte', 'geehrter', 'geengineere', 'geetha', 'gefahren', 'geffen', 'gegen', 'geht', 'gei', 'geitrhybler', 'geklappt', 'gekommen', 'gel', 'geladen', 'geloescht', 'geltendem', 'gen', 'general', 'generally', 'generate', 'generating', 'generator', 'generirtc', 'generirtcfunction', 'genetic', 'genius', 'gentleman', 'genuine', 'geolocation', 'geoyhtrge', 'geoyhurg', 'geplant', 'ger', 'gerade', 'geraumer', 'gerberghty', 'gergryth', 'gergrythg', 'german', 'germany', 'germanytially', 'gerung', 'gerusky', 'gesamte', 'gesch', 'geschlossen', 'gesellschaft', 'gesellschafterin', 'gesendet', 'gesperrt', 'gest', 'gestartet', 'gestern', 'get', 'getassignment', 'getcsvfile', 'gethyoff', 'geuacyltoe', 'gew', 'gezpktrq', 'gf', 'gfeymtql', 'gfjcronyudhakar', 'gflewxmn', 'ghaltiek', 'ghiklyop', 'ghjkzalez', 'ghjvreicj', 'ghkkytu', 'ghost', 'ghtysui', 'gi', 'gia', 'gifpuwtb', 'gigabitethernet', 'gigaset', 'gilbrmuyt', 'gille', 'gineman', 'ginemkl', 'giuliasana', 'give', 'gjbtuwek', 'gjedmfvh', 'gjisfonb', 'gkad', 'gkadx', 'gkcoltsy', 'gkzedilm', 'gl', 'glf', 'glgblehryywasyhj', 'glgbpchyrpdmv', 'glgbwyxnzdyzga', 'glich', 'glimpse', 'glitch', 'global', 'globalace', 'globaleng', 'globalengservice', 'globally', 'globalmodelversion', 'globalproxycorrelationurl', 'globalview', 'glog', 'glogold', 'glovia', 'glue', 'gm', 'gmbh', 'gmhkdsnw', 'gmkiatjs', 'gmlhrtvp', 'gmnhjfbw', 'gmrkisxy', 'gmscovxa', 'gmt', 'gn', 'gnasmtvx', 'gncpezhx', 'gneral', 'gnlcripo', 'go', 'godaddy', 'gofgrthyuetz', 'gogtr', 'gogtyek', 'gogtyekhan', 'gogtyektdgwo', 'gogtyekthyto', 'gokcerthy', 'gomcekzi', 'gomeshthyru', 'gonzale', 'good', 'google', 'goptijdtnsya', 'gordon', 'gorlithy', 'gostaria', 'got', 'gotbumak', 'governance', 'govind', 'govt', 'gowhjtya', 'gowzv', 'gpbfkqeu', 'gpc', 'gpfsfs', 'gpkovbah', 'gprs', 'gpsancnanonfvcb', 'gptmrqzu', 'gpts', 'gqchtedl', 'gqdaikbv', 'gqjcbufx', 'gqueiatx', 'gr', 'grab', 'graceuyt', 'gracia', 'grade', 'grant', 'graph', 'graphic', 'grargtfl', 'grargtzzt', 'graurkart', 'grauw', 'gray', 'grcmqaxd', 'great', 'greatly', 'grechduy', 'greet', 'greeting', 'grergtger', 'grethyg', 'grey', 'grfv', 'grhryueg', 'grid', 'gridgetcsvfile', 'griener', 'grind', 'grinding', 'grir', 'grknswyo', 'grljptsbhzgpbl', 'groet', 'ground', 'group', 'grp', 'grtaoivq', 'gru', 'gruesse', 'grugermany', 'grund', 'grupos', 'gruss', 'gsc', 'gshn', 'gslpdhey', 'gsm', 'gsmzfojw', 'gso', 'gsotqxfi', 'gstdy', 'gt', 'gtbfkisl', 'gtc', 'gte', 'gtehdnyu', 'gtehdnyuerrf', 'gtehdnyushot', 'gthxezqp', 'gthydanp', 'gtxuamif', 'gtz', 'guard', 'gueduel', 'guess', 'guest', 'gufwhdky', 'guhtyke', 'gui', 'guide', 'guldiwmn', 'guprgtta', 'gurhyqsath', 'gurpthy', 'gurt', 'guru', 'gurublxkizmh', 'guruythupyhtyad', 'gus', 'gustaco', 'gustathsvo', 'gustavo', 'guten', 'guvgytniak', 'guy', 'gvderpbx', 'gviwlsrm', 'gvxfymjk', 'gwcvmbhn', 'gwfrzuex', 'gwjibhxm', 'gwptzvxm', 'gxuvbcpr', 'gydtvnlw', 'gyhus', 'gyklresa', 'gyweclbt', 'gzhapcld', 'gzip', 'gzvjtish', 'gzwasqoc', 'ha', 'haajksjp', 'habe', 'haben', 'habit', 'hacker', 'hadfiunr', 'haftende', 'hai', 'half', 'hall', 'halle', 'hallo', 'hamper', 'hana', 'hand', 'handb', 'handelt', 'handheld', 'handle', 'handlereturnstructure', 'handlereturnstructureorreturntableline', 'handling', 'handscanner', 'handset', 'hang', 'hanghdyle', 'hangs', 'hanna', 'hannas', 'hannathry', 'hanx', 'happen', 'happended', 'happening', 'harald', 'hard', 'hardcopy', 'hardkopy', 'hardman', 'hardpoint', 'hardware', 'harman', 'harrfgyibs', 'harrhntyl', 'hartbearbeitung', 'hartstoffe', 'hartwell', 'hash', 'hasta', 'hat', 'hathryrtmut', 'hatryu', 'hatryupsfshytd', 'haug', 'haujtimpton', 'haunm', 'haveing', 'haze', 'hbecskgl', 'hbmwlprq', 'hbwunkts', 'hcbmiqdp', 'hckvpary', 'hcljzivn', 'hcm', 'hcmvudfpzcxcmv', 'hctgfeal', 'hcuixqgj', 'hcytr', 'hd', 'hdd', 'hddwdw', 'hddwtra', 'hdfvbjoe', 'hdjdkt', 'hdjm', 'hdmi', 'hdmwolxq', 'hdswinlo', 'hdt', 'hdtyr', 'hdw', 'hdytrkfiu', 'hdywstbl', 'head', 'header', 'headquarters', 'headset', 'health', 'hear', 'heat', 'heating', 'heavily', 'hebrew', 'hedjdbwlmut', 'hegdergyt', 'hegdthy', 'heghjyder', 'hehr', 'heidi', 'heighjtyich', 'heinrifgtch', 'heizraum', 'helftgyldt', 'helical', 'hell', 'hellej', 'hello', 'hellp', 'help', 'helpdesk', 'helpful', 'helpline', 'helpteam', 'hence', 'henghl', 'hennidgtydhyue', 'henvrkuo', 'heptuizn', 'heptuizns', 'herewith', 'hergestellt', 'herghan', 'herr', 'herren', 'herytur', 'hesitate', 'heu', 'heuristic', 'hex', 'hey', 'hfm', 'hfudpeot', 'hfyujqti', 'hfyzudql', 'hgermany', 'hghtyther', 'hgmxq', 'hgrvubzo', 'hgv', 'hgwofcbx', 'hgygrtui', 'hgyvopct', 'hgywselena', 'hi', 'hiapth', 'hiatchi', 'hidhys', 'hidra', 'hidzlfma', 'hierarchical', 'hierarchy', 'high', 'higher', 'highlight', 'highly', 'higqaepr', 'hilfe', 'himghtmelreich', 'hinge', 'hint', 'hip', 'hipghkinjyt', 'hire', 'hiremath', 'hiring', 'historically', 'history', 'hit', 'hitacni', 'hivumtfz', 'hiyhllt', 'hiyhtull', 'hjbukvcq', 'hkcu', 'hkfipags', 'hkg', 'hkydrfdw', 'hlanwgqj', 'hlcrbuqa', 'hlykecxa', 'hmgwrkzb', 'hmovlkyq', 'hmzfewks', 'hnbetvfk', 'hnlasbe', 'hnlasbed', 'hnorauaperabdlbtc', 'hntl', 'hntubjela', 'hnyeajrw', 'hnynhsth', 'hoavdlwc', 'hodgek', 'hoepftyhum', 'hofgvwel', 'hohgajnn', 'hohlbfgtu', 'hoi', 'hold', 'holder', 'hole', 'holemake', 'holemaking', 'holiday', 'homburg', 'home', 'homepage', 'homwadbs', 'hone', 'honest', 'hong', 'hongkong', 'hook', 'hop', 'hope', 'hopqcvza', 'horeduca', 'horrible', 'hortl', 'horz', 'host', 'hostname', 'hot', 'hotel', 'hotf', 'hoti', 'hotline', 'hotspot', 'hotwlygp', 'hour', 'hourglass', 'hourly', 'house', 'housekeep', 'houtnzdi', 'hover', 'however', 'howfanzi', 'howthrelte', 'hp', 'hpcxnyrq', 'hpormqtx', 'hpqc', 'hq', 'hqap', 'hqbxstoy', 'hqn', 'hqnopr', 'hqntn', 'hqyfebtd', 'hr', 'hra', 'hrb', 'hrer', 'hris', 'hrlwizav', 'hrm', 'hrmann', 'hrodszpl', 'hronovsky', 'hrp', 'hrs', 'hrscc', 'hrss', 'hrssc', 'hrsync', 'hrt', 'hrtbcyzxbvcnrfc', 'hrydjs', 'hs', 'hsbc', 'hsdbdtt', 'hsh', 'hspgxeit', 'hswddwk', 'ht', 'htayhil', 'htiemzsg', 'htm', 'html', 'htnvbwxs', 'htsnaodb', 'http', 'htv', 'hu', 'huang', 'hub', 'hugcadrn', 'huge', 'hugely', 'hughdthe', 'huhuyghe', 'huhuyghes', 'huji', 'human', 'humanity', 'humthyphk', 'hundred', 'hurricane', 'hvjbmdgi', 'hvzlqthr', 'hw', 'hwddwwd', 'hwffiglhkins', 'hwfoqjdu', 'hwvjympt', 'hx', 'hxasnzjc', 'hxgaycze', 'hxgayczear', 'hxgayczecompany', 'hxgayczedistributor', 'hxgayczee', 'hxgayczeed', 'hxgayczeet', 'hxgayczeing', 'hxgayczekurtyar', 'hxgayczemii', 'hxgayczeraum', 'hxlbvjgf', 'hxwtidja', 'hybegvwo', 'hybiaxlk', 'hydluapo', 'hydra', 'hydstheud', 'hyeonthygwon', 'hygxzklauthuchidambaramdnty', 'hyperlink', 'hzmxwdrs', 'hzptilsw', 'hzudxyqb', 'ia', 'iak', 'iam', 'iauqlrjk', 'iba', 'ibm', 'ibtvlfah', 'ic', 'ice', 'iceyusnd', 'ich', 'ici', 'icloud', 'icmp', 'icode', 'icon', 'id', 'ida', 'idb', 'idcx', 'idea', 'idelcia', 'identical', 'identifiable', 'identification', 'identifie', 'identify', 'idf', 'idfhtoqv', 'idg', 'idioma', 'idoc', 'idocs', 'idrizj', 'ids', 'ie', 'iebwchlehryysk', 'iechuoxb', 'iehs', 'ierfgayt', 'iervwjzg', 'ifbg', 'ifblxjmc', 'iforme', 'igkqpndy', 'ignore', 'igurwxhv', 'ihkolepb', 'ihlsmzdn', 'ihnen', 'ihr', 'ihre', 'ihrem', 'ihsepkwz', 'ii', 'iid', 'ijdfnayb', 'ijeqpkrz', 'ijswtdve', 'ijyuvind', 'ik', 'ikupsjhb', 'il', 'ile', 'ileatdatacenter', 'ilfvyodx', 'ilkpqtjh', 'illegal', 'illinois', 'illustrate', 'illustrated', 'iltywzjm', 'ilypdtno', 'image', 'imagens', 'imaje', 'imei', 'imjukbqhe', 'imjwbogq', 'immediate', 'immediateley', 'immediately', 'immediatly', 'immer', 'immex', 'immidiately', 'imp', 'impact', 'impacts', 'impede', 'impedindo', 'imperative', 'implement', 'implementation', 'imply', 'import', 'importa', 'importance', 'important', 'imposible', 'impossible', 'imprimir', 'improperly', 'improve', 'improvement', 'imqgfadb', 'imts', 'imuwhokc', 'imvetgoa', 'imwveudk', 'ina', 'inactive', 'inadvertently', 'inbound', 'inboundio', 'inbox', 'inboxe', 'inc', 'incase', 'incident', 'incl', 'include', 'inco', 'incomig', 'incoming', 'incomme', 'incompatibility', 'incomplete', 'incompletion', 'inconsistent', 'inconvenience', 'inconvenient', 'incorrect', 'incorrectly', 'increase', 'increasingly', 'incredibly', 'ind', 'indaituba', 'index', 'indexing', 'indgic', 'india', 'indicate', 'indicating', 'indication', 'indicative', 'indicator', 'indirect', 'individual', 'indonesia', 'indow', 'indra', 'indrakurtyar', 'industrial', 'inf', 'infact', 'infect', 'infected', 'infection', 'infelizmente', 'info', 'infoblox', 'infomation', 'infonet', 'infopath', 'inform', 'information', 'informationen', 'infortype', 'infos', 'infotype', 'infrastructure', 'ing', 'ingdirect', 'ingresar', 'ingreso', 'inhekdol', 'inin', 'inincident', 'initial', 'initialization', 'initialize', 'initiate', 'initiative', 'inivation', 'injection', 'injectncqulao', 'ink', 'inkjet', 'inlet', 'inlineaction', 'inn', 'inner', 'inplant', 'input', 'inputs', 'inq', 'inquiry', 'insensitive', 'insert', 'insertapps', 'inside', 'insist', 'inspection', 'inspector', 'inspectoreventid', 'inspectorruleid', 'instal', 'instala', 'instalar', 'install', 'installation', 'installed', 'installl', 'instan', 'instance', 'instandsetzung', 'instant', 'instantly', 'instatnt', 'instead', 'instruct', 'instruction', 'instrument', 'instuctrion', 'insufficient', 'insurance', 'insure', 'integrity', 'intel', 'intellectual', 'intelligence', 'intend', 'intepmov', 'inter', 'interaction', 'interactive', 'interco', 'intercom', 'intercompany', 'interface', 'interfacetengigabitethernet', 'interfere', 'intermittent', 'intermittently', 'intern', 'internal', 'internally', 'international', 'internet', 'internetsurvey', 'interns', 'interrogate', 'interrupt', 'interrupted', 'interruption', 'interval', 'intouch', 'intranet', 'intransit', 'intrusion', 'intuitive', 'intune', 'invalid', 'invalidate', 'invalidated', 'inventory', 'inventrory', 'inventrtgoy', 'invest', 'investigat', 'investigate', 'investigation', 'investment', 'investmentantrag', 'investor', 'invisible', 'invitation', 'invite', 'invlaid', 'invoice', 'invoicing', 'invoiuce', 'invoke', 'involve', 'inward', 'inwarehouse', 'inxsupmy', 'io', 'iom', 'ion', 'ioqjgmah', 'ios', 'iowa', 'ip', 'ipad', 'ipbl', 'ipc', 'ipd', 'ipglathybel', 'iphone', 'iphonec', 'iplen', 'iqshzdru', 'iqustfzh', 'ir', 'irefox', 'irfhcgzq', 'irgsthy', 'irreceivedtime', 'irrecular', 'irrespective', 'isensor', 'isensplant', 'isjzcotm', 'iso', 'isp', 'isr', 'israel', 'israey', 'issie', 'issue', 'issues', 'ist', 'isue', 'iszaguwe', 'ita', 'italy', 'itar', 'itau', 'itclukpe', 'itelephony', 'item', 'itemization', 'iten', 'iterator', 'itnakpmc', 'itry', 'itslpwra', 'itylnjqw', 'itype', 'ivbkzcma', 'ivhnpdbu', 'ivnhumzjalakrisyuhnyrtn', 'ivohcdpw', 'ivrgdmao', 'ivrhjmnx', 'iwazgesl', 'iwtvrhnz', 'ix', 'ixahzmvf', 'ixcanwbm', 'ixhlwdgt', 'izbxvary', 'izcwuvgo', 'izgul', 'izmxqfud', 'izohlgcq', 'izwtdnfq', 'ja', 'jabra', 'jacfgtykson', 'jack', 'jacyhky', 'jadqhguy', 'jafgty', 'jagtgarthy', 'jagthyin', 'jam', 'jamgpnqe', 'jamhdtyes', 'jan', 'janhduh', 'janhetgdyu', 'janhytrn', 'jankowski', 'january', 'japan', 'japznrvb', 'jargqpkm', 'jartnine', 'jashtyckie', 'jashyht', 'jathyrsy', 'java', 'javascript', 'javaw', 'jayachandran', 'jayatramdntydba', 'jayhrt', 'jb', 'jbgcvlmf', 'jc', 'jcmxerol', 'jco', 'jcoerpmanager', 'jcoshmbf', 'jctgwmyi', 'jctnelqs', 'jdamieul', 'jdcbiezx', 'jdcbiezxs', 'jdhdw', 'jdlxkygf', 'jdqvuhlr', 'jean', 'jeffrghryey', 'jeffrghryeyrghryey', 'jeffrghryeytyf', 'jeftryhf', 'jeknosml', 'jenfrgryui', 'jenhntyns', 'jerhtyua', 'jertyur', 'jerydwbn', 'jescplcdgaxjzdg', 'jeshyensky', 'jesjnlyenm', 'jesjnlyenmrest', 'jet', 'jetcxpda', 'jetzt', 'jfcrdavy', 'jfhytu', 'jftyff', 'jfwvuzdn', 'jgcsaqzi', 'jgdydqqd', 'jgnxyahz', 'jgqbt', 'jha', 'jhapg', 'jhdythua', 'jhr', 'jhwgydeb', 'jidhewlg', 'jiftg', 'jikyworg', 'jimdghty', 'jin', 'jinf', 'jintana', 'jinxyhdi', 'jion', 'jionmpsf', 'jirecvta', 'jivc', 'jivp', 'jk', 'jkddwkwd', 'jkdwbhgs', 'jkuaslxe', 'jlsvxura', 'jlzsardp', 'jmfvwrek', 'jmkcewds', 'jmusidzr', 'jmxrabzy', 'jnb', 'jncvkrzm', 'jnjxbq', 'joacrhfz', 'job', 'jobs', 'jobuacyltoe', 'jobxpkrg', 'jochegtyhu', 'jochgthen', 'joe', 'joerg', 'jofghan', 'jofghyuach', 'jofgyst', 'joftgost', 'jogt', 'johan', 'johddnthay', 'johghajknn', 'johghajknnes', 'johjkse', 'johthryu', 'johthryugftyson', 'join', 'joiner', 'jojfufn', 'jonnht', 'joothyst', 'jorghge', 'jose', 'josefghph', 'josh', 'jost', 'jp', 'jpaftdul', 'jpecxuty', 'jpeg', 'jpg', 'jpix', 'jpsfikow', 'jpsgeghtyui', 'jpwrfuhk', 'jpy', 'jqeczxtn', 'jquery', 'jre', 'jrhoqdix', 'jrigdbox', 'jrilgbqu', 'jruz', 'jrxtbuqz', 'js', 'jstart', 'jsut', 'jsuyhwssad', 'jsytis', 'jtgmpdcr', 'jtlrpigbhzgpbl', 'jtyhnifer', 'juarez', 'juchaomy', 'judi', 'judthti', 'judthtihty', 'jufskody', 'juhu', 'juksmtho', 'jul', 'julgttie', 'juli', 'july', 'jump', 'june', 'juni', 'junior', 'juniowsrr', 'junk', 'jurten', 'jusfrttin', 'justification', 'jutpdcqf', 'juvfghtla', 'jvpkulxw', 'jvshydix', 'jvtsgmin', 'jvxtfhkg', 'jwddkwor', 'jwnsyzbv', 'jwoiyzfp', 'jwoqbuml', 'jwqyxbzs', 'jwvuasft', 'jwzlebap', 'jxlbzwrp', 'jxphgfmb', 'jywvemun', 'jzakfmhw', 'jzhnkclo', 'kadjuwqama', 'kaghjtra', 'kaguhxwo', 'kahrthyeui', 'kahrthyeuiuiw', 'kahtuithra', 'kambthryes', 'kanchi', 'kanjdye', 'kann', 'kannst', 'kantenverrunden', 'kappel', 'karaffa', 'karagtfma', 'karansb', 'karcgdwswski', 'karghytuthik', 'karghyuen', 'karghyuens', 'karhjuyutk', 'karhtyiio', 'karnataka', 'karno', 'karnos', 'kart', 'kas', 'kashfyujqti', 'kasperskylab', 'kasphryer', 'kassia', 'kassiaryu', 'kata', 'kate', 'kathght', 'kaufsfthyman', 'kaum', 'kawtidthry', 'kb', 'kba', 'kbspjrod', 'kbt', 'kbyivdfz', 'kbysnuim', 'kc', 'kcompany', 'kcudbnrw', 'kd', 'kddok', 'kdeqjncw', 'kds', 'kebogxzp', 'ked', 'keddsdn', 'kedgmiul', 'keehadfvkgaalen', 'keep', 'keeps', 'keghn', 'kegsjdva', 'keheu', 'kehtxprg', 'kein', 'keine', 'keinyujo', 'keith', 'kellkwdy', 'ken', 'kenci', 'kennconnect', 'kennmetal', 'kennwort', 'kenny', 'kentip', 'keshyslsj', 'kesm', 'kesrgtyu', 'kevguind', 'key', 'keybankr', 'keybankrd', 'keyence', 'keyhtyvin', 'keyhuerthi', 'keynes', 'keypad', 'kfdyzexr', 'kfirxjag', 'kfshormi', 'kfwdhrmt', 'kg', 'kgarnzdo', 'kggsmgetstre', 'kghaozew', 'kgvrfwcj', 'kgxmisbj', 'kgyboafv', 'khadfhty', 'khdgd', 'khfgharla', 'khfjzyto', 'khrtyujuine', 'khspqlnj', 'khtml', 'khty', 'ki', 'kick', 'kie', 'kigthuym', 'kijhcwur', 'kime', 'kimli', 'kimtc', 'kimthy', 'kimufghtyry', 'kinawsdv', 'kind', 'kindftye', 'kindly', 'king', 'kingdom', 'kinght', 'kingston', 'kinhytudel', 'kinsella', 'kiosk', 'kirathrydan', 'kirgtyan', 'kirty', 'kirtyle', 'kirvecja', 'kis', 'kishore', 'kit', 'kizsjfpq', 'kjtqxroc', 'kk', 'kkbsm', 'kkc', 'klacwufr', 'klarp', 'kln', 'klonypzr', 'kls', 'km', 'kmc', 'kmfgfr', 'kmscan', 'kmvwxdti', 'kmzucxgq', 'kn', 'knemilvx', 'knepkhsw', 'knethyen', 'knicrhtyt', 'knighdjhtyt', 'knlrgsiv', 'knock', 'knovel', 'know', 'knowledge', 'knowledgebase', 'known', 'knqmscrw', 'knrlepglper', 'knxaipyj', 'ko', 'koahsriq', 'koburvmc', 'koenigsee', 'koiapqbg', 'koiergyvh', 'koithc', 'kok', 'komar', 'kommen', 'kommt', 'konferenzraum', 'kong', 'konica', 'konjdmwq', 'konnte', 'kontakt', 'kontaktieren', 'konto', 'kontrolle', 'konu', 'kopieren', 'kopierer', 'kopqcjdh', 'kothyherr', 'kovaddcth', 'koximpja', 'kpm', 'kpobysnc', 'kpr', 'kpro', 'kpudhygb', 'kq', 'kqelgbis', 'kqiurhbt', 'kr', 'kratzen', 'krbbscfprc', 'krcfhoxj', 'krcscfpry', 'kreghtmph', 'krishnyhda', 'krisyuhnyrt', 'krlszbqo', 'kroschke', 'krthdelly', 'krugew', 'kruse', 'krutnylz', 'kryuisti', 'ks', 'ksb', 'ksdvp', 'ksem', 'ksff', 'ksfs', 'ksgytjqr', 'ksiyurvlir', 'kslocjtaaruthapandian', 'ksp', 'kstdaddaad', 'ksvlowjd', 'ksvqzmre', 'ksxchbaf', 'kt', 'ktghvuwr', 'kthassia', 'kthqwxvb', 'kthvr', 'kthyarg', 'ktr', 'ktthasb', 'kubyhtuaa', 'kudhnyuhnm', 'kuhgtyjvelu', 'kuhyakose', 'kuhyndan', 'kujigalore', 'kullan', 'kuluz', 'kumfgtyar', 'kumghtwar', 'kumtcnwi', 'kundegty', 'kurtyar', 'kutgynka', 'kutnik', 'kuttiadi', 'kuyiomar', 'kuznvase', 'kvetadzo', 'kvp', 'kvrmnuix', 'kvwrbfet', 'kw', 'kwehgxts', 'kwfwdw', 'kwtcyazx', 'kxbifzoh', 'kxmidsga', 'kxvwsatr', 'kyamild', 'kyefsrjc', 'kylfgte', 'kyocera', 'kyswcpei', 'kzishqfu', 'kzpbgvfq', 'kzq', 'la', 'lab', 'label', 'labelwriter', 'labor', 'laboratory', 'lack', 'lacl', 'lacw', 'lady', 'ladybi', 'laeusvjo', 'laffekr', 'lafgseimer', 'lafgturie', 'lagp', 'lagqcompanyo', 'laijuttr', 'laijuttryhr', 'lakhsynrhty', 'lalanne', 'lalthy', 'lan', 'lance', 'land', 'lane', 'lang', 'langsamer', 'language', 'languague', 'langytge', 'lanhuage', 'lansuiwe', 'laode', 'lap', 'lapels', 'lapping', 'laptop', 'laqdwvgo', 'lar', 'large', 'laser', 'laserjet', 'lasplant', 'lassen', 'last', 'lat', 'late', 'lately', 'latency', 'later', 'lathe', 'latin', 'latitude', 'latpop', 'lauacyltoe', 'lauftqmd', 'laufwerk', 'laufwerke', 'laugdghjhlin', 'launch', 'launcher', 'launguage', 'lauredwwden', 'laurent', 'lautet', 'lauthry', 'lautsprecher', 'law', 'lawptzir', 'lax', 'lay', 'layered', 'layout', 'lb', 'lbcqfnie', 'lbdl', 'lbdw', 'lbs', 'lbxugpjw', 'lc', 'lcamiopz', 'lcbq', 'lcitrixerpall', 'lcmnllmnvbscsjb', 'lcoke', 'lcosm', 'lcow', 'lcvl', 'ld', 'ldbsm', 'ldg', 'ldgl', 'ldikdowdfm', 'ldil', 'ldism', 'ldiwsf', 'ldnfgt', 'ldpequhm', 'ldvl', 'le', 'leach', 'lead', 'leader', 'leadership', 'leadin', 'leakage', 'lean', 'learning', 'lease', 'least', 'leave', 'lee', 'leengineere', 'left', 'legal', 'legible', 'legislation', 'legit', 'legitimate', 'legitmate', 'lehhywsmat', 'lehl', 'lehsm', 'leibdrty', 'leider', 'leiter', 'leitung', 'length', 'leo', 'ler', 'les', 'leslie', 'less', 'let', 'letgyo', 'lethre', 'letim', 'letter', 'level', 'leverage', 'lewbzysd', 'lewicki', 'lewis', 'lfal', 'lfel', 'lfml', 'lfmpxbcn', 'lghuiezj', 'lgiovknd', 'lhbsm', 'lhejbwkc', 'lhmxposv', 'lhnw', 'lhol', 'lhqfinglbalfyfc', 'lhqftphfm', 'lhqksbdx', 'lhqksbdxa', 'lhqksbdxaccaaca', 'lhql', 'lhqsid', 'lhqsl', 'lhqsm', 'lhqsmdom', 'lhqwsf', 'lhqwxsf', 'lhqx', 'lhutkpxm', 'li', 'liable', 'lib', 'libarary', 'libcktnm', 'library', 'lic', 'licence', 'license', 'licwu', 'lid', 'lidunfjg', 'lie', 'lieben', 'liefern', 'liefert', 'life', 'light', 'ligsnzur', 'lihy', 'lijsyte', 'like', 'likely', 'lilesfhpk', 'limit', 'limitation', 'limited', 'line', 'lineproto', 'linien', 'link', 'linkage', 'linnemann', 'linnes', 'linz', 'lipfnxsy', 'lisbon', 'lisfgta', 'list', 'listen', 'listener', 'literature', 'little', 'liu', 'liugh', 'liuhyt', 'liuytre', 'live', 'lixwgnto', 'liz', 'lizecierte', 'lizhwdoe', 'ljeakcqf', 'ljpgedia', 'ljtzbdqg', 'ljywncvjdxjpdhl', 'lkufgrhq', 'lkwspqce', 'lkzdden', 'lkzddens', 'lla', 'llv', 'llvw', 'llwlfazo', 'lmcaqfkz', 'lmsl', 'lmuxizht', 'lmwohkbd', 'lmxl', 'lnbdm', 'lndypaqg', 'lnpgjhus', 'lnphmsco', 'lnssm', 'lnsvemxy', 'lo', 'loaction', 'load', 'loaded', 'loader', 'loading', 'loan', 'loaner', 'loc', 'local', 'localhost', 'locallist', 'locally', 'locate', 'locating', 'location', 'locator', 'lock', 'locked', 'lockout', 'locky', 'log', 'logfile', 'logformat', 'logger', 'loggin', 'logging', 'logic', 'logical', 'login', 'logistic', 'logistics', 'logistik', 'logo', 'logoff', 'logon', 'logs', 'logsource', 'logtimestamp', 'loin', 'lokce', 'lombab', 'long', 'longer', 'lonn', 'looge', 'look', 'lookup', 'loop', 'loose', 'loosing', 'loovexfbjy', 'lopgin', 'lortwe', 'lorwsf', 'lose', 'loss', 'lost', 'lot', 'lothryra', 'lotus', 'loud', 'loughn', 'louis', 'love', 'lovsan', 'low', 'lowe', 'lowercase', 'lowercaseurlcorrelation', 'loy', 'lpa', 'lpal', 'lpapr', 'lpas', 'lpaw', 'lpawty', 'lpawxsf', 'lperi', 'lpfzasmv', 'lpgw', 'lpnzjimdghtyy', 'lpoebzsc', 'lpriokwa', 'lqdwjdwd', 'lqjoagzt', 'lqnoifve', 'lriupqct', 'lrrsm', 'lrrw', 'lrupiepen', 'lryturhyyth', 'lsgthhuart', 'lsne', 'lsuepvyx', 'lt', 'ltaballallcompanycm', 'ltaballotcsalesemp', 'ltabthrysallotcsalesman', 'ltcl', 'ltd', 'lte', 'ltfskygw', 'lthyqzns', 'ltig', 'ltige', 'ltigung', 'ltksxmyv', 'ltmoubvy', 'ltnivuhw', 'ltrobe', 'ltu', 'lu', 'luartusa', 'luciano', 'luck', 'luesebrink', 'lughjm', 'lugin', 'luifdst', 'luis', 'luji', 'lumia', 'lunch', 'lunjuw', 'luntu', 'luxembourg', 'lv', 'lvdyrqfc', 'lvidgknc', 'lvlw', 'lwddkqddq', 'lwdwdwdr', 'lwguyibh', 'lwgytuxq', 'lwizucan', 'lwohuizr', 'lxfnwyuv', 'lxfwopyq', 'lxkecjgr', 'lxrponic', 'lxv', 'lxvunpiz', 'lxxldmvslhnvcnr', 'ly', 'lyjoeacv', 'lync', 'lynda', 'lynerwjgthy', 'lyszwcxg', 'lzfhdgapifzbtfv', 'lzspyjki', 'lzvdyouh', 'maaryuyten', 'maastricht', 'mac', 'machen', 'machine', 'macro', 'macros', 'macyhtkey', 'madam', 'madhaw', 'mae', 'mafghyrina', 'mafgtnik', 'magda', 'magdalena', 'mage', 'magento', 'magerjtyhd', 'maghtyion', 'maghyuigie', 'magonza', 'magtyrtijc', 'mahapthysk', 'maharashtra', 'mahcine', 'mahtyurch', 'maier', 'maihtyrhu', 'mail', 'mailbox', 'mailer', 'mailing', 'mails', 'mailserver', 'mailsi', 'mailto', 'main', 'mainly', 'mainswitch', 'maint', 'maintain', 'maintenance', 'mais', 'maitaine', 'majetkm', 'major', 'majority', 'make', 'mal', 'malaysia', 'male', 'malefunktion', 'malfunction', 'malicious', 'maliowbg', 'malware', 'mam', 'mamilujli', 'man', 'manage', 'management', 'managementbe', 'manager', 'managing', 'mandatory', 'mandgtryjuth', 'mandt', 'manger', 'manifest', 'manipulate', 'manipulator', 'manjgtiry', 'manjhyt', 'manjuvghy', 'mankind', 'mann', 'manual', 'manually', 'manuel', 'manuf', 'manufacture', 'manufacturer', 'manufacturing', 'manuten', 'many', 'manyhsu', 'map', 'mapper', 'mapping', 'maquinados', 'march', 'marcom', 'marfhtyio', 'marftgytin', 'margin', 'marjnstyk', 'markhty', 'markhtye', 'markhtyet', 'markhtyete', 'markhtyeting', 'markhtyingre', 'marocm', 'marry', 'martha', 'marthhty', 'marty', 'maryhtutina', 'maschine', 'mask', 'mason', 'masonb', 'mass', 'massage', 'massive', 'maste', 'master', 'mat', 'match', 'matching', 'material', 'materials', 'matghyuthdw', 'matgrp', 'mathe', 'matheywt', 'matheywter', 'matheywtyuews', 'mathgie', 'mathrv', 'mathyida', 'mathyuithihyt', 'matlxjgi', 'maus', 'mavxgqbs', 'mawvszflehbyxt', 'max', 'maximgbilian', 'maximum', 'may', 'maybe', 'mazak', 'mazurjw', 'mb', 'mbb', 'mbiance', 'mbps', 'mbr', 'mbrreporte', 'mbs', 'mbyte', 'mbzevtcx', 'mc', 'mccoy', 'mccoyimgs', 'mcelrnr', 'mcfaullfhry', 'mcfgtydonn', 'mcgatnsl', 'mcgee', 'mcgfrtann', 'mcgwdwxhcmlevt', 'mcgyuouald', 'mchectg', 'mcmtxtwjnbvchv', 'mcnerny', 'mcoswhjuanthila', 'mcsqzlvd', 'md', 'mddwwyleh', 'mdevcqjk', 'mdfcr', 'mdflqwxg', 'mdghayi', 'mdiwjd', 'mdjftxli', 'mdm', 'mdpviqbf', 'mds', 'mdulwthb', 'mdvlkbac', 'mdw', 'mdwydindy', 'mea', 'mean', 'meaning', 'meantime', 'measure', 'measurement', 'measuring', 'mecftgobusa', 'mechanic', 'mechmet', 'med', 'media', 'medial', 'mediante', 'medium', 'meet', 'meeting', 'meetinmg', 'megfgthyhana', 'mehr', 'mehrere', 'mehrfach', 'mehrota', 'mehrotra', 'mehrugshy', 'mein', 'meine', 'meinem', 'meixni', 'melbourne', 'meldung', 'meldungen', 'melerowicz', 'melhduty', 'melisdfysa', 'melthryerj', 'member', 'membership', 'memepr', 'memo', 'memory', 'memotech', 'mensagem', 'mention', 'menu', 'menue', 'mercedes', 'merdivan', 'merely', 'merktc', 'merthayu', 'mertut', 'mesaage', 'mesg', 'mess', 'message', 'messecke', 'messgage', 'messger', 'messmaschine', 'mesz', 'metal', 'metalworke', 'metaplas', 'meter', 'metghyjznk', 'method', 'metric', 'metrics', 'mex', 'mexico', 'mexkspfc', 'mf', 'mfeyouli', 'mffbsf', 'mfg', 'mfp', 'mfyivqes', 'mg', 'mgermanyger', 'mghlisha', 'mghllenbecfnfk', 'mgjxwept', 'mgmt', 'mgndhtillen', 'mgr', 'mgvpabsj', 'mgvpoyqd', 'mhasttdd', 'mhdyhtya', 'mhfjudahdyue', 'mhtyike', 'mi', 'mic', 'mich', 'michbhuael', 'micheyi', 'michghytuael', 'michigan', 'michjnfyele', 'microphone', 'microphones', 'microscope', 'microsoft', 'mictbdhryhle', 'middle', 'middleware', 'miepcwzf', 'might', 'migo', 'migrate', 'migration', 'mii', 'miiadmin', 'miioperatordev', 'miioperatorqa', 'mijhmijhmile', 'mikdhyu', 'mikhghytr', 'mikrofon', 'milan', 'milano', 'mileage', 'mill', 'milli', 'milsytr', 'miltgntyuon', 'milton', 'milyhyakrp', 'min', 'mine', 'mini', 'minimize', 'minimum', 'minitab', 'minnesotta', 'minolta', 'mins', 'mint', 'minus', 'minute', 'miowvyrs', 'mir', 'miro', 'mirror', 'misc', 'misconfiguration', 'misconfigure', 'mismatch', 'misplace', 'misplaced', 'miss', 'missing', 'missrouting', 'mistake', 'misuhet', 'mit', 'mitarbeiter', 'mitarbeiterin', 'mitctdrh', 'mitctdrhb', 'mitgckqf', 'mithyke', 'mitigation', 'mitteilung', 'mittwoch', 'mityhuch', 'mix', 'mizpywld', 'mizumoto', 'mjudivse', 'mjvfxnka', 'mkdfetuq', 'mkjubdti', 'mksysbalv', 'mkt', 'mktgen', 'mkuhtyhui', 'mkynswqd', 'mldufqov', 'mm', 'mmaster', 'mmbe', 'mms', 'mnakehrf', 'mngr', 'mnktdsjq', 'mnlvhtug', 'mnr', 'mo', 'mobaidfx', 'mobil', 'mobile', 'mobility', 'mobilteil', 'mobiltelefon', 'moblews', 'mobley', 'mod', 'mode', 'model', 'modeli', 'modeling', 'modelversion', 'modern', 'modific', 'modification', 'modify', 'modul', 'module', 'modules', 'moedyanvess', 'moeglich', 'mogtrevn', 'mohgrtyan', 'mohnrysu', 'moin', 'mojfbwds', 'mokolthrla', 'moment', 'momentarily', 'momitor', 'mon', 'monatswechsel', 'monday', 'mondhrbaz', 'money', 'monitor', 'monitoring', 'monitorixepyfbga', 'montag', 'month', 'monthly', 'monthy', 'montitor', 'moranm', 'moreover', 'morgens', 'morhyerw', 'morning', 'moryctrhbkm', 'mostly', 'motherbankrd', 'moto', 'motor', 'motorola', 'mount', 'mountpoint', 'mouse', 'mov', 'move', 'moved', 'movement', 'moviment', 'moxnqszg', 'mozi', 'mozill', 'mozilla', 'mp', 'mpatible', 'mpihysnw', 'mpls', 'mpvhakdq', 'mqetjxwp', 'mqhrvjkd', 'mqjdyizg', 'mqlsfkre', 'mr', 'mrp', 'mrptype', 'mrqwdtil', 'mrs', 'mruzqhac', 'ms', 'msblast', 'msc', 'mscrm', 'msd', 'msdotnet', 'msfc', 'msg', 'mshost', 'msid', 'msie', 'msoffice', 'mss', 'mstipsolution', 'mswineventlog', 'mtb', 'mtbelengineering', 'mtbu', 'mtd', 'mtdesign', 'mtg', 'mthyike', 'mthyn', 'mthyuleng', 'mti', 'mtlghwex', 'mu', 'muapxkns', 'much', 'muejkipler', 'muggftyali', 'muiqteyf', 'mukghyuhea', 'mulhylen', 'mullthyed', 'multidetail', 'multinational', 'multipart', 'multiple', 'munnangi', 'murakt', 'music', 'muss', 'must', 'muthdyrta', 'mutoralkv', 'mutual', 'muywpnof', 'mvhcoqed', 'mvunqihf', 'mvwduljx', 'mw', 'mwdddlleh', 'mwdjuli', 'mwdlkloran', 'mwetuhqf', 'mwgdenbs', 'mws', 'mwst', 'mwtrouyl', 'mwtvondq', 'mwuateyx', 'mx', 'mxjcnqfs', 'mxwibrtg', 'mycompany', 'myhrt', 'myhzrtsi', 'mykcourx', 'mynfoicj', 'mys', 'mysli', 'myslidz', 'mysterious', 'mzyejqvd', 'na', 'naa', 'nabjwvtd', 'nach', 'nachdem', 'nachi', 'nachricht', 'nachstehenden', 'nad', 'nafghyncy', 'nagdyiyst', 'nagfghtyudra', 'nahumo', 'nahytu', 'nahytua', 'naivebayes', 'najuty', 'nakagtwsgs', 'name', 'namen', 'naming', 'nanrfakurtyar', 'narefgttndra', 'narthdyhy', 'naruedlk', 'nascimento', 'nasftgcijj', 'naslrwdb', 'nat', 'nate', 'nathyresh', 'nathyuasha', 'nature', 'natytse', 'navbrtheen', 'navdgtya', 'naveuythen', 'navigation', 'nawab', 'nawkpdtx', 'nazarr', 'nb', 'nbfyczqr', 'nbgvyqac', 'nbhoxqpe', 'nbr', 'nc', 'ncasrpvx', 'ncoded', 'ncoileu', 'nd', 'nda', 'nde', 'nderen', 'nderildi', 'ndern', 'nderung', 'ndig', 'ndigung', 'ndjorwab', 'ndkrcxjb', 'ndobtzpw', 'ndtfvple', 'ndthwedwys', 'ne', 'neal', 'nealxjbc', 'near', 'nearby', 'nearing', 'necessarily', 'necessary', 'nection', 'ned', 'nedeni', 'nederland', 'nee', 'need', 'needful', 'needs', 'neerthyu', 'negative', 'negativeevaluationthreshold', 'negatively', 'nehtjuavathi', 'nein', 'neither', 'nesbfirjeerabhadrappa', 'net', 'netacuity', 'netbio', 'netbios', 'netch', 'netframdntyework', 'netperfmon', 'netscape', 'nett', 'netweaver', 'netwo', 'network', 'networking', 'netz', 'netzteil', 'netzwerk', 'netzwerkkabel', 'netzwerkverbindung', 'neu', 'neue', 'neuen', 'neues', 'never', 'nevertheless', 'nevinmw', 'nevins', 'new', 'newducsl', 'newflv', 'newly', 'news', 'newweaver', 'next', 'nextgen', 'nfayqjhg', 'nfc', 'nfdtriwx', 'nfe', 'nfsbackup', 'nftgyair', 'nfybpxdg', 'ng', 'ngen', 'nger', 'ngerungskabel', 'ngfedxrp', 'nginx', 'ngkcdjye', 'ngliche', 'ngm', 'ngprt', 'ngt', 'ngten', 'ngth', 'ngtr', 'nguqityl', 'ngvwoukp', 'ngyht', 'nhfrbxek', 'nhgvmqdl', 'nia', 'nibaotpy', 'nicdhylas', 'nice', 'nicht', 'nichts', 'nicolmghyu', 'nicrhty', 'nictafvwlpz', 'nieconn', 'nieghjyukea', 'night', 'nightly', 'nightmare', 'nigktly', 'nihktgsh', 'nihtykki', 'nijdaukz', 'nikam', 'nikitha', 'nikszpeu', 'nikulatrhdy', 'nil', 'nimmt', 'nipt', 'niptbwdq', 'nivqoxyt', 'nizholae', 'njdrcagt', 'njhaqket', 'njpwxmdi', 'nk', 'nkademwy', 'nkiopevt', 'nkjtoxwv', 'nkqafhod', 'nkthumgf', 'nld', 'nlich', 'nliche', 'nlig', 'nmpworvu', 'nmywsqrg', 'nmyzehow', 'nmzfdlar', 'nnen', 'nnlein', 'no', 'nobody', 'nobook', 'noc', 'noch', 'nocpyxaz', 'node', 'noggtyuerp', 'nogo', 'nogrfadw', 'nogui', 'noi', 'noise', 'nologin', 'nom', 'non', 'none', 'noon', 'nop', 'nor', 'nord', 'noris', 'normal', 'normally', 'north', 'northgate', 'noscwdpm', 'not', 'nota', 'notch', 'note', 'notebook', 'notepad', 'nothing', 'notic', 'notice', 'notification', 'notify', 'notion', 'notwendig', 'notworking', 'nouveau', 'nov', 'nova', 'novamente', 'november', 'nowxjztk', 'npc', 'npgxuzeq', 'npmzxbek', 'npr', 'nqclatbw', 'nqepkugo', 'nr', 'nrbcqwgj', 'nrbgctwm', 'nrehuqpa', 'nrlfhbmu', 'nrzykspt', 'nsdwd', 'nsu', 'nsyapewg', 'nt', 'nter', 'ntfxgpms', 'ntgdsehl', 'nthing', 'nthryitin', 'nti', 'ntner', 'ntqkuocz', 'ntteam', 'ntydihzo', 'nuerthytzg', 'null', 'num', 'number', 'numeric', 'numerirtc', 'numerirtcal', 'numerous', 'nummer', 'nunber', 'nur', 'nutzung', 'nv', 'nvajphfm', 'nvawmlch', 'nvihmbwc', 'nvjyhizu', 'nvodbrfluppasadabasavaraj', 'nvyjtmca', 'nwcobvpl', 'nwfodmhc', 'nwfoucba', 'nwgcbfdt', 'nwqktzlx', 'nwtehsyx', 'nwwiebler', 'nx', 'nxa', 'nxd', 'nxjivlmr', 'nxjvzcta', 'nxloukai', 'ny', 'nyifqpmv', 'nyrjkctu', 'nythug', 'nyzxjwud', 'nz', 'nzuofeam', 'oa', 'oabdfcnk', 'oahmgpfy', 'ob', 'obanjrhg', 'obdphylz', 'oben', 'obj', 'object', 'objmod', 'oblghuyf', 'obqridjk', 'obr', 'obrfunctioneventqueue', 'observation', 'observe', 'observed', 'observing', 'obsolete', 'obtain', 'obuwfnkm', 'obviously', 'obvrxtya', 'obvyknzx', 'oc', 'occ', 'occasion', 'occasional', 'occationally', 'occur', 'occured', 'occurence', 'occurred', 'occurrence', 'och', 'ockthiyj', 'ocsnugeh', 'oct', 'october', 'octophon', 'odbc', 'odd', 'oded', 'oder', 'odo', 'odwfhmze', 'oe', 'oemcold', 'oevyhtdx', 'offenlegung', 'offer', 'office', 'officer', 'official', 'offinance', 'offline', 'often', 'ofuhdesi', 'ogabwxzv', 'ogadikxv', 'ogrhivnm', 'oh', 'ohio', 'ohljvzpn', 'ohne', 'oikhfqyl', 'oinqckds', 'oirmgqcs', 'oiykfzlr', 'ojdukgzc', 'ojflyruq', 'ojgrpafb', 'ojtmnpxc', 'ok', 'okay', 'okhyipgr', 'oktober', 'olckhmvx', 'old', 'olghiveii', 'olhryhira', 'olibercsu', 'olivesadia', 'olmwqzpu', 'olovxcdeira', 'olthyivectr', 'olvidley', 'olympus', 'omf', 'omforiginalsexport', 'omfvxjpw', 'omiwzbue', 'omleknjd', 'omokam', 'ompeztak', 'omufjcxr', 'onbankrding', 'oncidblt', 'one', 'oneteam', 'onfiirm', 'ongoing', 'onjzqptl', 'online', 'onsite', 'ontario', 'ontent', 'onto', 'ontology', 'ontologyid', 'ontologystring', 'onukdesq', 'oon', 'ooo', 'oop', 'ooshstyizen', 'op', 'ope', 'open', 'opening', 'openne', 'openorderbook', 'openvas', 'opera', 'operate', 'operating', 'operation', 'operational', 'operator', 'opetion', 'opeyctrhbkm', 'opfigqramdntyatically', 'opkqwevj', 'oportunitie', 'oppening', 'oppo', 'opportstorage', 'opportunity', 'opposite', 'oppurtunitie', 'oprbatch', 'oprn', 'opt', 'optic', 'optical', 'optimization', 'option', 'optional', 'optiplex', 'opundxsk', 'opus', 'oqxdecus', 'ora', 'oraarch', 'oracle', 'orange', 'orde', 'order', 'orders', 'ordinary', 'ordinate', 'ordner', 'ordnerzugriff', 'orelikon', 'orelli', 'org', 'organisation', 'organise', 'organization', 'organizational', 'organizer', 'orgs', 'orientation', 'origin', 'original', 'originally', 'orshop', 'os', 'oscar', 'oss', 'ost', 'osterwalder', 'ot', 'otc', 'otd', 'otherwise', 'othybin', 'othyoiz', 'ou', 'ouaepwnr', 'oulook', 'oumeaxcz', 'outage', 'outbound', 'outbox', 'outbreak', 'outdate', 'outdated', 'outgoing', 'outil', 'outlet', 'outllok', 'outlock', 'outloo', 'outloock', 'outlook', 'outloook', 'outloot', 'outook', 'output', 'outrlook', 'outside', 'outsource', 'outsoure', 'outstanding', 'outubro', 'ouutlook', 'overall', 'overload', 'overpay', 'override', 'overview', 'overwhelm', 'overwritten', 'ovuweygj', 'ovuxmolouvsvcb', 'owa', 'owe', 'owenghyga', 'owenssdcl', 'owhuxbnf', 'owjduxai', 'owner', 'ownership', 'owqplduj', 'owupktcg', 'owwddwens', 'oxlqvika', 'oxrkfpbz', 'oxvakgcl', 'oypnxftq', 'oyunatye', 'ozhnjyef', 'oziflwma', 'ozphysqw', 'pa', 'paasword', 'pacific', 'pack', 'package', 'packet', 'pacote', 'pacvbetl', 'pad', 'page', 'pagthyuathy', 'pain', 'paint', 'pair', 'pak', 'palff', 'palghjmal', 'pallutyr', 'palo', 'palyer', 'pam', 'pamxszek', 'pan', 'pande', 'pandethrypv', 'pane', 'paneer', 'panel', 'panelfgt', 'panghyiraj', 'panjkytr', 'paper', 'papi', 'papierstau', 'para', 'paralegal', 'paramdntyeter', 'parameter', 'parent', 'parkeyhrt', 'parrfgyksm', 'part', 'parthyrubhji', 'parti', 'partial', 'partially', 'partials', 'participant', 'participate', 'particular', 'partir', 'partly', 'partner', 'party', 'pasgryo', 'pasgryowski', 'pass', 'passiep', 'passive', 'passoword', 'passowrd', 'passw', 'passward', 'password', 'passwordmanage', 'passwordmanager', 'passwordproblem', 'passwords', 'passwort', 'past', 'paste', 'pasue', 'pasword', 'patch', 'patching', 'patent', 'paternoster', 'path', 'pathuick', 'patience', 'patino', 'patirjy', 'patrcja', 'pattghyuy', 'pause', 'pavan', 'pax', 'pay', 'payable', 'paycheck', 'payload', 'paymant', 'payment', 'payout', 'payroll', 'payslip', 'paystub', 'payt', 'pbx', 'pbxqtcek', 'pc', 'pcap', 'pcd', 'pcl', 'pcqobjnd', 'pcqobjndadditional', 'pcs', 'pdf', 'pdfmailer', 'pdlc', 'pds', 'pdu', 'pdujfybc', 'pdv', 'pe', 'peathryucoj', 'pedxruyf', 'peer', 'peghyurozich', 'peilerk', 'pen', 'pende', 'penn', 'pennsylvania', 'people', 'per', 'percent', 'percentage', 'pereira', 'perfectly', 'perform', 'performance', 'perhaps', 'period', 'periodic', 'periodically', 'peripheral', 'permanent', 'permanently', 'permission', 'permit', 'permition', 'pernr', 'perpsrglovia', 'perpsrpsad', 'perry', 'persist', 'persistence', 'persit', 'person', 'personal', 'personally', 'personalnr', 'personel', 'personen', 'personnel', 'pesonal', 'pesylifc', 'petgvwch', 'pethrywr', 'pethrywrs', 'pethrywrsburg', 'petljhxi', 'petqkjra', 'petrghada', 'petrhyr', 'pevokgiu', 'pez', 'pf', 'pfad', 'pfgia', 'pfgyhtu', 'pfjwinbg', 'pfner', 'pfneutkg', 'pfnmjsok', 'pfxwuvce', 'pfzxecbo', 'pgcmwqze', 'pghjkanijkraj', 'pgi', 'pgid', 'ph', 'phase', 'phd', 'phil', 'philadelph', 'philipp', 'phillpd', 'phishe', 'phishing', 'phjencfg', 'phksfqxe', 'phlpiops', 'phone', 'photo', 'php', 'phpinfo', 'phr', 'phufsav', 'phvkowml', 'phvwitud', 'phwdxqev', 'physical', 'physically', 'pi', 'pic', 'pichayapuk', 'picjthkd', 'pick', 'picking', 'picture', 'piece', 'pieza', 'pifyudbo', 'pihddltzr', 'pildladjadga', 'pilot', 'piltzrnj', 'pin', 'ping', 'pinging', 'pinkow', 'pintfgtyo', 'pinto', 'pintoddsa', 'piper', 'pipfhypeu', 'pirce', 'pitcure', 'pivot', 'pix', 'pjdhfitman', 'pjl', 'pjwvdiuz', 'pjxclyhs', 'pk', 'pkaegicn', 'pkinmjqs', 'pkj', 'pkjhmfgc', 'pkmyrdga', 'pktcqbxu', 'pl', 'pla', 'place', 'placement', 'pladjmxt', 'plaese', 'plaghynilhas', 'plain', 'plam', 'plan', 'planck', 'planet', 'planned', 'planner', 'planning', 'plant', 'plantronic', 'plase', 'plate', 'platform', 'platz', 'plaunyud', 'play', 'player', 'plc', 'pldqbhtn', 'please', 'plesae', 'plese', 'plm', 'plmfile', 'plnvcwuq', 'ploease', 'plot', 'pls', 'plsseald', 'pltndoab', 'plug', 'plugged', 'plugin', 'plugins', 'plus', 'pluytd', 'plvnuxmril', 'plvnuxmrnoj', 'plvnuxmrterial', 'plvnuxmry', 'pm', 'pmgzjikq', 'pmqansex', 'pmr', 'pmw', 'pn', 'pnabslgh', 'png', 'pngufmvq', 'pnp', 'pntp', 'po', 'pobleme', 'pocxqtrl', 'poezmwny', 'pofgtzdravem', 'pogredrty', 'point', 'pol', 'poland', 'policy', 'poll', 'pollaurid', 'pollaurido', 'poloidgthyl', 'poloisky', 'polycom', 'poncacity', 'pond', 'pone', 'poor', 'pop', 'popularity', 'populate', 'populating', 'popup', 'por', 'port', 'portable', 'portal', 'portelance', 'porteta', 'portfolio', 'portion', 'portugal', 'portuguese', 'poruxnwb', 'porwrloisky', 'pos', 'pose', 'position', 'positionen', 'positive', 'positiveevaluationthreshold', 'posrt', 'posrte', 'poss', 'possble', 'possibilite', 'possibility', 'possible', 'possibly', 'post', 'postbus', 'poste', 'posting', 'potential', 'potentially', 'potm', 'potmrkxy', 'potx', 'pound', 'pour', 'povich', 'povictcfgt', 'povirttch', 'powder', 'power', 'powercor', 'powerpoint', 'powersave', 'pozdrsavom', 'pozna', 'pp', 'ppam', 'ppc', 'ppm', 'ppsm', 'ppsx', 'ppt', 'pptm', 'pptx', 'pqdjtzin', 'pqnteriv', 'pqwehmzgagannathan', 'pr', 'practice', 'praddgtip', 'pradtheyp', 'pradyhtueep', 'pragtyhusa', 'pragtyhusas', 'praise', 'prakaythsh', 'prarthyr', 'prarttsagj', 'prasath', 'prathryep', 'pratma', 'prdord', 'pre', 'precall', 'precimat', 'precision', 'preeco', 'prefer', 'preferably', 'prefetch', 'prelim', 'preparation', 'prepare', 'preparedness', 'presence', 'present', 'presentation', 'presenter', 'preserve', 'president', 'press', 'presse', 'pressure', 'presume', 'prevalence', 'prevent', 'prevention', 'preview', 'previous', 'previously', 'prgewfly', 'prgthyuulla', 'prgxwzco', 'price', 'pricing', 'priflhtret', 'prim', 'primarily', 'primary', 'print', 'printer', 'printerscreen', 'printing', 'printout', 'printscreen', 'prior', 'prioritise', 'prioritize', 'priority', 'prir', 'prishry', 'priter', 'prithivrtyaj', 'private', 'privilage', 'privilege', 'privileged', 'pro', 'proactive', 'probable', 'probably', 'probe', 'proben', 'probieren', 'proble', 'problem', 'problematic', 'probleme', 'problme', 'proc', 'procache', 'proce', 'procedure', 'proceed', 'proceeding', 'procenter', 'process', 'processing', 'processor', 'procte', 'proctected', 'procurement', 'prod', 'prodn', 'produce', 'product', 'productio', 'production', 'productive', 'productivity', 'productly', 'productmanagement', 'produkt', 'produktion', 'prof', 'professional', 'profile', 'profit', 'profitability', 'proforma', 'proglovia', 'program', 'programdnty', 'programdntya', 'programdntym', 'programdntyme', 'programdntymer', 'programdntys', 'progress', 'prohgtyarb', 'prohibit', 'proint', 'project', 'projection', 'projector', 'projekt', 'projekte', 'promote', 'promotion', 'prompt', 'prompting', 'prompts', 'proof', 'proofreading', 'propagate', 'propagation', 'proper', 'properly', 'property', 'proplem', 'proposal', 'propose', 'prospect', 'protect', 'protection', 'protel', 'proto', 'protocol', 'prove', 'provide', 'provider', 'provigjtyswkb', 'provision', 'proxy', 'proygkjt', 'prpf', 'prqmp', 'prs', 'prst', 'prt', 'prtgghjk', 'prtgn', 'prtgt', 'prtikusy', 'prtoplant', 'prtor', 'prtoru', 'prtpu', 'prtqc', 'prtqi', 'prtqv', 'prtqx', 'prtqz', 'prtsid', 'pruchase', 'prussian', 'prwiqjto', 'prye', 'przcxbml', 'przndfbo', 'ps', 'pse', 'psf', 'psfshytd', 'psid', 'pssword', 'pstn', 'pt', 'ptczqbdw', 'pte', 'pthsqroz', 'pthyu', 'ptirhcwv', 'ptljghyk', 'ptmjvysi', 'ptmzsbhk', 'ptsbhzgpblcv', 'ptuqhrwk', 'ptygkvzl', 'ptyzxscl', 'pu', 'public', 'publication', 'publik', 'publish', 'pubreport', 'puedo', 'pughjuvirl', 'pull', 'pulverleitstand', 'pulvermetalogy', 'pumjbcna', 'punch', 'pur', 'purartnpn', 'purch', 'purchaise', 'purchase', 'purchasing', 'purchasingupstreamsso', 'purple', 'purpose', 'purrqs', 'purvi', 'push', 'pushixepyfbga', 'put', 'putyrh', 'puxiomgy', 'puxsvfwr', 'pvbomqht', 'pvd', 'pvimkcfw', 'pvjdtrya', 'pw', 'pwd', 'pweaver', 'pwrhmc', 'pws', 'px', 'pxslorbe', 'pxvjczdt', 'py', 'pyeothbl', 'pyhuule', 'pyua', 'pyx', 'pz', 'pzcmv', 'pzjelyxg', 'qa', 'qad', 'qaeicrkz', 'qamyesuv', 'qaohugxw', 'qasdhyzm', 'qasouhlc', 'qauighdpchine', 'qauighdplicious', 'qauighdpnager', 'qauighdpss', 'qavdrpfu', 'qbgclmit', 'qbjmoihg', 'qbpafrsx', 'qbsmonwv', 'qc', 'qcjevayr', 'qcow', 'qcxivzag', 'qdbfemro', 'qdxyifhj', 'qdztknml', 'qekdgaim', 'qeue', 'qfcxbpht', 'qfrntose', 'qfunricw', 'qfwijzbd', 'qgilmtyc', 'qgrbnjiu', 'qgtxjsdc', 'qgwypesz', 'qgxrptnf', 'qhjkxoyw', 'qhtvlrxe', 'qhyoiwls', 'qidgvtwa', 'qieagkos', 'qieswrfu', 'qikvnjzc', 'qiwhfkdv', 'qiyujevw', 'qjeymnzs', 'qjgnkhso', 'qjhitbcr', 'qkgnwxto', 'qkmvosen', 'qkoipbzn', 'qkspyrdm', 'qkspyrdms', 'qksrtvzb', 'qlhmawgi', 'qlzgbjck', 'qm', 'qmglkaru', 'qmsoft', 'qngschtz', 'qnigujek', 'qnxfegjw', 'qnxhoryg', 'qohfjpna', 'qolrvbip', 'qoxvpbam', 'qp', 'qpixeudn', 'qs', 'qskwgjym', 'qsmrwvle', 'qsoxltny', 'qspdztiw', 'qt', 'qty', 'quadra', 'qualify', 'qualit', 'quality', 'qualitycontrol', 'qualsys', 'qualtiy', 'qualys', 'quando', 'quantety', 'quantify', 'quantity', 'quanttiy', 'quantum', 'quaraintine', 'quarantine', 'quarter', 'quarterly', 'quaterly', 'quattro', 'que', 'quer', 'querrie', 'query', 'question', 'queue', 'queuing', 'quick', 'quickly', 'quit', 'quite', 'quota', 'quotation', 'quote', 'quotes', 'qux', 'qv', 'qvbutayx', 'qvhixotw', 'qvncizuf', 'qvtaykbg', 'qwg', 'qwghlvdx', 'qwijaspo', 'qwsjptlo', 'qwvpgayb', 'qwynjdbk', 'qxhdcnmj', 'qycgdfhz', 'qyinrmaf', 'qzhgdoua', 'qzkyugce', 'qznjshwm', 'rabbit', 'rabhtui', 'rabhtuikurtyar', 'rabin', 'rabkypet', 'rack', 'rad', 'radgthika', 'raflghneib', 'rage', 'raghfhgh', 'raghjkavhjkdra', 'raghu', 'raghyvhdra', 'ragsbdhryu', 'rahmen', 'rahymos', 'rai', 'raid', 'raifstow', 'railgnfb', 'raise', 'raju', 'rajy', 'rajyutyi', 'rak', 'rakthyesh', 'ralf', 'ralfteimp', 'ramdnty', 'ramdntya', 'ramdntyassthywamy', 'ramdntyfon', 'ramdntygy', 'ramdntyification', 'ramdntysey', 'ramdntythanjesh', 'ramdntythanjeshkurtyar', 'ran', 'random', 'randomly', 'randstad', 'range', 'rangini', 'ranjhruy', 'ranlpbmw', 'ransomware', 'rao', 'raonoke', 'raosetuv', 'raouf', 'rapid', 'rappel', 'rar', 'rarily', 'rarty', 'rate', 'rather', 'raum', 'raus', 'ravhdyui', 'raw', 'ray', 'rayhtuorv', 'rb', 'rbmfhiox', 'rbmosifh', 'rbozivdq', 'rc', 'rcf', 'rckfthy', 'rclqfpgt', 'rcp', 'rcpt', 'rcwpvkyb', 'rd', 'rddept', 'rden', 'rder', 'rdig', 'rdp', 'rds', 'rdxzgpej', 'rdyrty', 'reach', 'reachable', 'react', 'reactivate', 'reactivation', 'reactive', 'read', 'readd', 'readde', 'reader', 'reading', 'ready', 'real', 'reality', 'realize', 'reallocate', 'really', 'realpresence', 'realtek', 'reason', 'reassign', 'reassignment', 'reatle', 'reattache', 'rebate', 'reboot', 'rebuild', 'rec', 'recall', 'recebida', 'receipt', 'receive', 'received', 'receiver', 'receiving', 'receivng', 'recent', 'recently', 'recertification', 'recheck', 'rechner', 'rechnern', 'recht', 'recibo', 'recieve', 'reciever', 'recipient', 'recive', 'recode', 'recognition', 'recognize', 'recommend', 'recommit', 'reconciliation', 'recondition', 'reconditioning', 'reconfigure', 'reconnaissance', 'reconnect', 'reconnecte', 'record', 'recording', 'recover', 'recovery', 'recreate', 'recruit', 'recruiting', 'recs', 'recsynqt', 'rectify', 'recur', 'recurrent', 'red', 'reddakv', 'reddatrhykv', 'reddfgymos', 'reddy', 'rede', 'redo', 'redytudy', 'reeive', 'reenable', 'reeset', 'ref', 'refer', 'reference', 'referenced', 'referenceerror', 'refererproxycorrelationurl', 'refinery', 'reflect', 'refrence', 'refresh', 'refreshing', 'refuse', 'reg', 'regard', 'regardless', 'regelungen', 'regen', 'reghythicsa', 'region', 'regional', 'register', 'registergerirtcht', 'registration', 'registry', 'regster', 'regular', 'regularly', 'rehtyulds', 'reiceve', 'reichenberg', 'reichlhdyl', 'reimage', 'reimbursement', 'reinaldo', 'reincker', 'reinhard', 'reinstall', 'reinstallation', 'reinstate', 'reisekosten', 'reisekostenabrechnungen', 'reissue', 'reject', 'rekmqxfn', 'rekwlqmu', 'relase', 'relate', 'related', 'relation', 'relationship', 'relatively', 'relaunche', 'relay', 'relazed', 'release', 'relese', 'relevant', 'reliability', 'reliable', 'relly', 'relocate', 'remain', 'remappe', 'remediate', 'remedie', 'remedy', 'remember', 'remfg', 'remind', 'reminder', 'remote', 'remotely', 'remove', 'removed', 'ren', 'rename', 'renew', 'renewal', 'renytrner', 'reoccurre', 'reopen', 'rep', 'repair', 'reparar', 'reparo', 'repeat', 'repeatedly', 'replace', 'replacement', 'replay', 'replicate', 'replication', 'reply', 'reponde', 'report', 'reporting', 'reportncqulao', 'repository', 'repoter', 'representative', 'reprint', 'reproduction', 'reprogramdntymieren', 'reprot', 'republic', 'republish', 'reputation', 'reputational', 'repyzajo', 'req', 'requena', 'request', 'requester', 'requestor', 'require', 'requirement', 'requisition', 'requistion', 'requite', 'requste', 'rer', 'reroute', 'rerouting', 'rerun', 'res', 'resale', 'reschedule', 'research', 'researcher', 'reseat', 'reselect', 'resend', 'resending', 'reserve', 'reset', 'resetfor', 'reside', 'resign', 'resignation', 'reso', 'resolution', 'resolve', 'resource', 'resp', 'respect', 'respective', 'respectively', 'resplve', 'respond', 'responding', 'response', 'responsibility', 'responsible', 'responsive', 'resset', 'rest', 'restare', 'restart', 'restoration', 'restore', 'restricting', 'restriction', 'result', 'resultado', 'resume', 'retain', 'retention', 'rethtyuzkd', 'retire', 'retrieval', 'retrieve', 'retroactively', 'retry', 'return', 'reuwibpt', 'rev', 'revenue', 'reversal', 'reverse', 'revert', 'review', 'revilla', 'revisar', 'revise', 'revocation', 'reward', 'reyshakw', 'rfa', 'rfc', 'rfcserver', 'rfgrhtdy', 'rfid', 'rfumsv', 'rfvchzmp', 'rfvmeyho', 'rfwlsoej', 'rgazclmi', 'rgds', 'rghkiriuyte', 'rgpvdhcm', 'rgrtrs', 'rgtry', 'rgtsm', 'rgtw', 'rgtyob', 'rhaycqjg', 'rhbsawmf', 'rhgteini', 'rhoade', 'rhozsfty', 'rhquvzfm', 'ribbon', 'ricagthyr', 'richoscan', 'richthammer', 'richtig', 'richtige', 'rick', 'rickjdt', 'ricoh', 'rieqbtnp', 'riess', 'right', 'rightly', 'rights', 'ring', 'ringtone', 'rios', 'ripple', 'riqmdnzs', 'risk', 'riss', 'rita', 'riuvxda', 'rj', 'rjc', 'rjeyfxlg', 'rjlziysd', 'rjodlbcf', 'rjsulvat', 'rjtnlocs', 'rk', 'rkdwohas', 'rkupnshb', 'rkyjnbqh', 'rl', 'rlgmiuwt', 'rlhuwmve', 'rljdhmwb', 'rm', 'rma', 'rmas', 'rmb', 'rmegscqu', 'rmt', 'rn', 'rnafleys', 'rname', 'rnibmcve', 'rnsuipbk', 'ro', 'road', 'roaghyunokepc', 'roanoke', 'rob', 'robankm', 'robhyertyj', 'robhyertyjo', 'robhyertyjs', 'robot', 'roboworker', 'robsdgerp', 'roceshun', 'rockehsty', 'rod', 'rodny', 'rodstock', 'roedel', 'roedfghtec', 'roesshnktler', 'rofghach', 'rofgtyger', 'roh', 'rohhsyni', 'rohit', 'rohitdrf', 'rohjghit', 'rohlings', 'rohntyub', 'rohthsit', 'rolcgqhx', 'role', 'roles', 'roll', 'rollfgyuej', 'rolling', 'rollomatic', 'rollout', 'romania', 'rome', 'romertanj', 'ron', 'rong', 'room', 'root', 'roshyario', 'ross', 'rostuhhwr', 'rough', 'round', 'routable', 'route', 'router', 'routine', 'routinely', 'routing', 'rovfghesntine', 'row', 'rowville', 'royhtub', 'rpbdvgoy', 'rpc', 'rpgcdbfa', 'rpmwh', 'rps', 'rqfhiong', 'rqflkeuc', 'rqfmcjak', 'rqigfgage', 'rqiw', 'rqll', 'rqvl', 'rqxaudix', 'rqxl', 'rqxmaindept', 'rqxsm', 'rqxw', 'rr', 'rrc', 'rrmx', 'rrsp', 'rs', 'rsa', 'rscrm', 'rsir', 'rspqvzgu', 'rsql', 'rt', 'rtbkimey', 'rter', 'rtgdcoun', 'rtgyon', 'rth', 'rtmjwyvk', 'rtnyumbg', 'rtnzvplq', 'rtpcnyhq', 'rtr', 'rtro', 'rtwjunior', 'ru', 'rub', 'rubber', 'ruben', 'rubiargty', 'rubyfgty', 'rucfxpla', 'ruchitgrr', 'ruckruf', 'rudfgbens', 'rudolf', 'rudra', 'ruemlang', 'ruenzm', 'ruf', 'rufo', 'rujpckto', 'rujteoza', 'rule', 'run', 'running', 'runter', 'runtime', 'rus', 'rushethryli', 'russ', 'russia', 'russoddfac', 'ruy', 'rv', 'rvjlnpef', 'rvoiqthl', 'rwnhqiyv', 'rwuqydvo', 'rxiumhfk', 'rxloutpn', 'rxoynvgi', 'rxqtvanc', 'rxuobtjg', 'rxutkyha', 'ryafbthn', 'ryhunan', 'rzonkfua', 'rzpmnylt', 'rzucjgvp', 'rzxfgmcu', 'sa', 'sab', 'sabhtyhiko', 'sabrthy', 'sad', 'sadghryiosh', 'sadghryioshkurtyar', 'sadiertpta', 'sadjuetha', 'sadmin', 'safari', 'safe', 'safely', 'safety', 'safghghga', 'safrgyynjit', 'sagar', 'sagfhosh', 'sahl', 'sahryu', 'sahtym', 'saindo', 'sal', 'salary', 'sale', 'sales', 'salesforce', 'salesman', 'salesorg', 'salesperson', 'saludos', 'salutation', 'saluti', 'sam', 'samaccountname', 'samacocuntname', 'samag', 'sammelarbpl', 'sample', 'samstag', 'samsung', 'samsungsmgf', 'sanchrtyn', 'sandblasting', 'sanddry', 'sandfield', 'sandir', 'sandplant', 'sandrgru', 'sandstrahlger', 'sanhjtyhru', 'sanitize', 'santhuy', 'santiago', 'santodde', 'santoe', 'santosdfd', 'santossdm', 'santrtos', 'sao', 'saoltrmy', 'sar', 'sarhfa', 'sarhytukas', 'sarmtlhyanardhanan', 'sartlgeo', 'sarxkfvj', 'sasqkjqh', 'sat', 'satisfied', 'satisfy', 'saturday', 'save', 'saver', 'savgrtyuille', 'savin', 'saving', 'say', 'sayatgr', 'sayg', 'says', 'saztolpx', 'sbdudfrtglgbyzwx', 'sbfhydeep', 'sbgvrncj', 'sbinuxja', 'sbltduco', 'sbtvploj', 'sc', 'scan', 'scandinavia', 'scannen', 'scanner', 'scanning', 'scannt', 'scdp', 'scedxqur', 'scenario', 'scghhnellsten', 'scghhnellstm', 'scgtitt', 'sch', 'schauen', 'schddklne', 'sche', 'schedule', 'scheduled', 'scheduler', 'schedulerbhml', 'scheduling', 'schen', 'scherfgpd', 'schgtewmik', 'schhdgtmip', 'schichtplanung', 'schicken', 'schl', 'schlumhdyhter', 'schnafk', 'schneeberger', 'schneider', 'schoegdythu', 'schoemerujt', 'schoenfeld', 'school', 'schr', 'schrenfgker', 'schriftverkehr', 'scht', 'schtrtgoyht', 'schtrtgoyhtsdale', 'schuette', 'schulung', 'schulzgth', 'schung', 'schutzw', 'schyhty', 'scluvtyj', 'scm', 'score', 'scorecard', 'scot', 'scrap', 'scratch', 'screen', 'screensaver', 'screenshot', 'scren', 'screw', 'scrip', 'script', 'scroll', 'scthyott', 'sctqwgmj', 'scwx', 'sd', 'sdfgwong', 'sdguo', 'sdilxrfk', 'sdjdskjdkyr', 'sdlwfkvach', 'sdnemlwy', 'sds', 'sdtoezjb', 'sdxjiwlq', 'se', 'search', 'seat', 'seating', 'sebfghkasthian', 'sebxvtdj', 'sec', 'seceffa', 'secomea', 'second', 'secondary', 'section', 'secure', 'secureserver', 'securework', 'security', 'see', 'seefgrtybum', 'seek', 'seem', 'seemor', 'seep', 'seghyurghei', 'segment', 'segue', 'seguintes', 'segvwfyn', 'sehe', 'sehr', 'seibel', 'sein', 'seit', 'seite', 'sekarft', 'sektoren', 'selbstst', 'select', 'selection', 'selector', 'self', 'sell', 'semi', 'send', 'sender', 'sending', 'senior', 'sensation', 'sense', 'sensitivity', 'sensor', 'sent', 'sentence', 'seocompanyxv', 'sep', 'separate', 'separatelly', 'sept', 'september', 'septemer', 'seq', 'sequence', 'ser', 'seraching', 'serch', 'serevrs', 'serial', 'series', 'serious', 'serirtce', 'serravdsa', 'sertce', 'serthyei', 'serv', 'serve', 'served', 'server', 'servermigration', 'servers', 'serverteam', 'service', 'servicedienst', 'services', 'servicing', 'servrs', 'session', 'set', 'setgyrt', 'sethdyr', 'setrup', 'setting', 'settle', 'settlement', 'setun', 'setup', 'setuplaptop', 'setzen', 'setzten', 'sev', 'sever', 'several', 'severe', 'severeal', 'severity', 'sewilrxm', 'sf', 'sfb', 'sfhbunrp', 'sfhxckgq', 'sfmrzdth', 'sg', 'sgd', 'sge', 'sghtyhlp', 'sgnubadl', 'sgwipoxn', 'sgwipoxns', 'sgxqsuojr', 'sh', 'sha', 'shadakjsdd', 'shahid', 'shall', 'share', 'shared', 'sharee', 'sharepont', 'shathyra', 'shatryung', 'shaungtyr', 'sheehy', 'sheet', 'sherlock', 'sherlockruleid', 'sherwtgyu', 'shesyhur', 'shfhyw', 'shfsako', 'shhkioaprhkuoash', 'shhuivashankar', 'shi', 'shift', 'shifu', 'shighjvnn', 'shigthyuva', 'shikghtyuha', 'ship', 'shipment', 'shipping', 'shiv', 'shivakuhdty', 'shiz', 'shkdwd', 'shloosh', 'shoot', 'shop', 'shopfloor', 'shopflor', 'shopping', 'short', 'shortcut', 'shortly', 'shot', 'shourxyp', 'show', 'showing', 'showixepyfbga', 'shown', 'shrghyadja', 'shrugott', 'shryresh', 'shthuihog', 'shut', 'shutdown', 'shutting', 'shwhdbthyuiethadri', 'shwyhdtu', 'shyheehew', 'shynhjundar', 'si', 'siavgtby', 'sica', 'sich', 'sicherheisdatenbank', 'sicherheitsupdate', 'sid', 'side', 'sidecar', 'sie', 'siehe', 'siemens', 'siepvygpkttjtln', 'sign', 'signage', 'signal', 'signature', 'significantly', 'signin', 'signout', 'sigrtyhdeo', 'sihtvocw', 'silent', 'silvaes', 'silvgtyar', 'sim', 'simcard', 'simekdty', 'simfghon', 'similar', 'similarly', 'simple', 'simply', 'simplyfie', 'simulate', 'simulation', 'sin', 'sinc', 'since', 'sincerely', 'sincronizaci', 'sind', 'singapore', 'single', 'sinic', 'sinkhole', 'sinkholes', 'sintering', 'sinterleitstand', 'sipppr', 'sippprs', 'sir', 'sistem', 'sistemi', 'sit', 'site', 'sitepages', 'sitmzuje', 'situation', 'sitz', 'sitze', 'size', 'sjv', 'sk', 'skad', 'skannen', 'skip', 'skirtylport', 'skirtylset', 'skotthyutc', 'skpe', 'skr', 'skus', 'skv', 'sky', 'skype', 'sl', 'slc', 'sldm', 'sldowapb', 'sldx', 'sle', 'sless', 'slide', 'slidz', 'slight', 'slimware', 'slip', 'slkxgzdj', 'sllwdw', 'slno', 'slo', 'slovakia', 'slow', 'slowly', 'slowness', 'slrgconp', 'sls', 'slt', 'sm', 'small', 'smart', 'smartphone', 'smb', 'smcxerwk', 'smdbqnef', 'smfkuhwi', 'smhdyhti', 'smhdyhtis', 'smitrtgcj', 'smkpfjzv', 'smoltelephony', 'smpijawb', 'sms', 'smtp', 'smxoklny', 'sn', 'snagit', 'snap', 'snapshot', 'sndaofyw', 'sng', 'snhdfihytu', 'snip', 'snkz', 'snmp', 'snp', 'sntvfpbl', 'sny', 'snyder', 'soap', 'soc', 'soedjitv', 'soemec', 'soflex', 'soft', 'softland', 'software', 'softwarea', 'softwarei', 'sogo', 'sogou', 'sohu', 'sohytganvi', 'sokdelfgty', 'soldfnbq', 'sole', 'solely', 'solicito', 'solid', 'solidwork', 'solidworks', 'soll', 'sollarbeitszeit', 'sollte', 'solman', 'solution', 'solutioning', 'solutions', 'solve', 'solver', 'somebody', 'somehow', 'somente', 'someone', 'something', 'sometime', 'sometimes', 'somewhat', 'somewhere', 'sonar', 'songhyody', 'soon', 'sooner', 'sop', 'soplant', 'sorahdyggs', 'sorry', 'sort', 'sotmfcga', 'soujqrxw', 'sound', 'source', 'sourcecode', 'south', 'southeast', 'souzarft', 'sox', 'sp', 'space', 'spain', 'spam', 'spamme', 'span', 'spanish', 'spare', 'spdczoth', 'speak', 'speake', 'speaker', 'special', 'specialist', 'specially', 'specific', 'specifically', 'specification', 'specify', 'specs', 'speculation', 'speed', 'speichern', 'speicherort', 'speker', 'spell', 'spelling', 'spend', 'spengineere', 'spike', 'spill', 'spillage', 'spimolgz', 'spl', 'splash', 'split', 'sponsor', 'spoof', 'spool', 'sport', 'spot', 'spread', 'spreadsheet', 'sprhouiv', 'springt', 'spro', 'sproc', 'spt', 'spxqmiry', 'sqevyvfjblevtew', 'sqgtkmci', 'sql', 'sqlagent', 'sqlcuhep', 'sqlite', 'sqlitedb', 'sqlmtixr', 'sqlservr', 'sr', 'sratdeol', 'src', 'srcassetofinter', 'srcassetofinterest', 'srchostname', 'srcip', 'srcmacaddress', 'srcport', 'sre', 'sreedhar', 'sreenshot', 'srglovia', 'srgtycha', 'sridhar', 'sridthshar', 'srinfhyath', 'srinifghvah', 'srirgrtyam', 'srl', 'srpsad', 'srujan', 'srv', 'srvlavpwdrprd', 'srvlavstorage', 'ssemos', 'ssen', 'ssid', 'ssl', 'sso', 'ssofgrtymerset', 'ssp', 'sst', 'ssylias', 'st', 'stable', 'stack', 'staebefertigung', 'staeberoth', 'staerte', 'staff', 'stage', 'stahyru', 'stall', 'stamp', 'stand', 'standard', 'standstill', 'stanfghyley', 'stankewitz', 'start', 'starten', 'startet', 'startpassword', 'startup', 'stasrty', 'staszk', 'stat', 'state', 'statement', 'states', 'static', 'stating', 'station', 'statistic', 'stats', 'status', 'staut', 'stavenheim', 'stay', 'std', 'stdezpqw', 'steal', 'steel', 'stefdgthy', 'steffen', 'stefyty', 'stefytyn', 'stegyhui', 'stehenden', 'steht', 'steince', 'steinh', 'steinich', 'steli', 'step', 'stepfhryhan', 'sthry', 'sthytachnik', 'stiarhlu', 'stibo', 'stick', 'stil', 'still', 'stkxkcksmcwwlde', 'stl', 'sto', 'stock', 'stocktransfer', 'stoebtrt', 'stop', 'stope', 'stoppage', 'storage', 'storch', 'store', 'storm', 'storno', 'stp', 'stra', 'strahlraum', 'strange', 'stransfers', 'strasse', 'strategic', 'stream', 'streamline', 'street', 'streng', 'strgrtyiet', 'strictly', 'strigtyet', 'string', 'strip', 'strixner', 'structure', 'stuarthsyt', 'stub', 'stuck', 'student', 'studio', 'study', 'stuff', 'stunden', 'stundenlang', 'stury', 'stuwbacm', 'stwpzxbf', 'su', 'sua', 'sub', 'subbathykrisyuhnyrt', 'subcontract', 'subcontracting', 'subdirectory', 'subdomain', 'subfolder', 'subgtybaryuao', 'subject', 'submission', 'submit', 'submittal', 'subroutine', 'subscribe', 'subscription', 'subsequent', 'subsite', 'subsitute', 'substitute', 'subsystem', 'subtask', 'subtract', 'succeed', 'succesful', 'success', 'successful', 'successfully', 'suche', 'suchytro', 'suck', 'sud', 'sudden', 'suddenly', 'sudghhahjkkar', 'sudghhahjkkarreddy', 'sudghnthdra', 'sudo', 'suffer', 'sufficient', 'suggest', 'suggestion', 'sugisdfy', 'suhrhtyju', 'suhtnhdyio', 'suitable', 'suite', 'sujitra', 'sum', 'summary', 'summit', 'sunday', 'sundaycommitted', 'suomfxpj', 'sup', 'super', 'superior', 'supervisor', 'suplier', 'supplied', 'supplier', 'supply', 'suppor', 'support', 'suppose', 'suppress', 'suraj', 'sure', 'surely', 'surge', 'surthryr', 'surveillance', 'survey', 'suspect', 'suspicious', 'suthye', 'sutyu', 'suzjhmfa', 'sv', 'svc', 'svchost', 'svuxizgr', 'svuxjkpg', 'sw', 'swap', 'swathi', 'swisscom', 'switch', 'switchover', 'switzerland', 'switzerlandik', 'switzerlandim', 'swmiynoz', 'swqndxhl', 'swsince', 'sxbgyrou', 'sxpotjlu', 'sxthcobm', 'syatem', 'sycxgdxnlcmhbwv', 'syghmesa', 'sygnyzwfzwrglgb', 'syhtu', 'syhunil', 'sykpe', 'sylvthryia', 'sylyhtsvesuyter', 'symantec', 'symbol', 'symmetrix', 'syn', 'sync', 'synced', 'synch', 'synche', 'synched', 'synchro', 'synchronisiert', 'synchronisierung', 'synchronization', 'synchronize', 'synchronizer', 'syncronize', 'sype', 'sys', 'sysetem', 'syslog', 'system', 'systemaccess', 'systemic', 'systems', 'syxewkji', 'syxjpdhlbdgdptm', 'szcbhvwe', 'szewiguc', 'szockfpj', 'szpilewska', 'szumyhtulas', 'tab', 'table', 'tablearu', 'tablet', 'tackle', 'tag', 'tagen', 'tagsfbny', 'tahamt', 'tahat', 'taiwan', 'take', 'takeshi', 'takheghshi', 'taking', 'talagrtymr', 'talipg', 'talk', 'tally', 'talryhtir', 'tam', 'tami', 'tammineni', 'taneghrty', 'tank', 'tanrgty', 'tape', 'taqekwrd', 'tar', 'taranga', 'tarde', 'target', 'targetlist', 'tarzana', 'task', 'taskbar', 'taskmgr', 'tastatur', 'tasten', 'tauschen', 'tawfcmszwagkhb', 'tax', 'taxcizwv', 'taxis', 'tayjuoylor', 'tayloml', 'taylthyuoaj', 'tbbuyhexstandoffmm', 'tbhkenlo', 'tbkywpqz', 'tbnovxdp', 'tbvpkjoh', 'tc', 'tcb', 'tcbjyqps', 'tcflirwg', 'tcjnuswg', 'tck', 'tcl', 'tcode', 'tcp', 'tcpflag', 'tcplen', 'tcwrdqboinition', 'td', 'tdlwdkunis', 'tdmgolwn', 'te', 'team', 'teamcall', 'teamleiter', 'teammeete', 'teamordner', 'teams', 'teamsales', 'teamviewer', 'tebenutzer', 'tebetriebssystem', 'tech', 'techn', 'technical', 'technically', 'technician', 'technische', 'technologist', 'technology', 'tecnologia', 'ted', 'tegdtyyp', 'teh', 'tehdy', 'teilweise', 'tel', 'telecom', 'telecomitalia', 'telefon', 'telefonnummer', 'telekom', 'telephone', 'telephonic', 'telephony', 'teleservice', 'tell', 'tem', 'temodell', 'temp', 'tempdev', 'temperature', 'template', 'templet', 'tempo', 'temporal', 'temporarily', 'temporarlly', 'temporary', 'temprature', 'temps', 'tempuser', 'ten', 'tender', 'tengigabitethernet', 'tent', 'tente', 'ter', 'terhyury', 'term', 'termin', 'terminal', 'terminate', 'termination', 'terralink', 'territory', 'tess', 'tesscenter', 'test', 'tetyp', 'teufeae', 'tevkia', 'tewgersy', 'tex', 'text', 'teyldpkw', 'tezugriffsstatus', 'tfazwrdv', 'tfedground', 'tfedpnd', 'tfgtodd', 'tfhzidnq', 'tfrbwoua', 'tfsehruw', 'tfw', 'tgbtyim', 'tge', 'tgewaniq', 'tgeyd', 'tghkris', 'tghrlok', 'tgrsyduf', 'tgryds', 'tgryhu', 'tgryudf', 'tgzbklec', 'th', 'tha', 'thadasgg', 'thadhylman', 'thank', 'thanking', 'thaybd', 'thdjzolw', 'thdjzolwronization', 'thecomputer', 'theeadjjd', 'theecanse', 'theft', 'thema', 'theme', 'therefor', 'therefore', 'thermal', 'thesdf', 'thesis', 'thetadkg', 'theydbar', 'thgheijmer', 'thhyuokhkp', 'thicker', 'thilo', 'thinclient', 'thing', 'think', 'thip', 'third', 'thiw', 'thjquiyl', 'thnak', 'thnsguzj', 'thomafghk', 'thomklmas', 'though', 'thought', 'thoyht', 'thrdyakdj', 'thrdyd', 'threat', 'three', 'threshold', 'thrgxqsuojr', 'thrice', 'throughout', 'throw', 'thru', 'thry', 'thryad', 'thryd', 'thrydad', 'thrydksd', 'thrydsss', 'thryduf', 'thrydufg', 'thrys', 'thsadyu', 'thsaqsh', 'thsgy', 'thsydaas', 'thtudb', 'thu', 'thumb', 'thursday', 'thus', 'thx', 'thyel', 'ti', 'tiaghry', 'tick', 'ticket', 'ticketing', 'tier', 'tif', 'tiff', 'tifpdchb', 'tige', 'tigt', 'tigung', 'tikona', 'til', 'till', 'tim', 'time', 'timecard', 'timeclock', 'timeframdntye', 'timegraphfilter', 'timely', 'timeout', 'timerecorde', 'times', 'timestamp', 'timing', 'timnhyt', 'tims', 'ting', 'tinmuym', 'tinyurl', 'tion', 'tip', 'tipset', 'tiresome', 'titcket', 'titel', 'title', 'tiyhum', 'tjlgzkbp', 'tjlizqgc', 'tjnwdauo', 'tjwdhwdw', 'tjzohmve', 'tkhafgrc', 'tkhaymqg', 'tkpfumeb', 'tkt', 'tltz', 'tlvwusmh', 'tlzsrvgw', 'tm', 'tmb', 'tml', 'tmqfjard', 'tms', 'tmunkaiv', 'tmyeqika', 'tnghnha', 'tnhymatj', 'tnlshpwb', 'tnorudbf', 'tnowikyv', 'tnxiuramdnty', 'today', 'todd', 'todfrm', 'todthyd', 'toengineere', 'tofinance', 'together', 'toll', 'tologin', 'tom', 'tomashtgd', 'tomlin', 'tommyth', 'tomoe', 'tomorrow', 'tomyhoen', 'tone', 'toner', 'tonerwechsel', 'tonight', 'tony', 'tool', 'toolbar', 'toolcal', 'toold', 'tooldcvcgenratn', 'tooldplcmmaninp', 'toolher', 'toolhone', 'toolical', 'tooling', 'toolkuznetsk', 'toollant', 'toolmail', 'toolmforrun', 'tooloductdata', 'toolometer', 'toolonic', 'toolpasswordmanager', 'toolrently', 'toolroom', 'toolscal', 'toolt', 'toolte', 'tooltion', 'tootal', 'top', 'topcustomersendmarkhtyet', 'topefd', 'topic', 'tor', 'toriaytun', 'tortm', 'torvxeda', 'torx', 'tos', 'tot', 'total', 'totally', 'totalteamsales', 'touch', 'touche', 'towards', 'tower', 'town', 'townhall', 'township', 'tp', 'tpfghtlugn', 'tpfnzkli', 'tps', 'tpsshru', 'tpurnjvi', 'tqnbkjgu', 'tqvefyui', 'tqvpohwj', 'tr', 'trace', 'tracert', 'track', 'tracker', 'tracking', 'trade', 'traffic', 'trafficdenie', 'trail', 'train', 'trainee', 'trainer', 'training', 'traiyctrhbkm', 'tranpertation', 'transaction', 'transaktion', 'transfe', 'transfer', 'transferring', 'transiit', 'transit', 'transition', 'translate', 'translation', 'transmit', 'transport', 'transportation', 'trask', 'trat', 'travel', 'traveler', 'traversecity', 'traversecitymi', 'trayton', 'tre', 'tree', 'trgdyyufs', 'trghwyng', 'trgqbeax', 'trhadg', 'trhdaa', 'trhdyd', 'trhsys', 'trhsyvdur', 'trial', 'trigger', 'trinzic', 'trip', 'trmzwbyc', 'trn', 'tro', 'trojan', 'trouble', 'troubleshoot', 'troubleshooter', 'troubleshooting', 'trqmnpvu', 'trtgoy', 'trtgoywdd', 'tru', 'truck', 'true', 'trunk', 'trup', 'trupthyti', 'trurthyuft', 'trust', 'truview', 'trxsychl', 'try', 'tryfuh', 'tryhdty', 'ts', 'tsantamaria', 'tsicojkp', 'tsk', 'tskvmwag', 'tsmanagement', 'tss', 'tswwah', 'tszvorba', 'ttemplate', 'ttl', 'tu', 'tue', 'tuesday', 'tujutnis', 'tuning', 'tup', 'tupsgrnd', 'tuqrvowp', 'turbo', 'tureinter', 'turkey', 'turleythy', 'turn', 'turnover', 'tuzkadxv', 'tv', 'tvcdfqgp', 'twdyzsfr', 'twejhda', 'twhyang', 'twice', 'twimc', 'two', 'tx', 'tyco', 'tyhuellis', 'tyhufrey', 'typ', 'type', 'typing', 'tys', 'tyss', 'tyuhfljp', 'tyyhtuler', 'tzfwjxhe', 'tzornbldf', 'tzrekwqf', 'tzscsjxhcruyw', 'tzung', 'uacyltoe', 'uadkqcsj', 'uagqromi', 'uanigkqc', 'uaoyhcep', 'uasername', 'uat', 'ubfcwegt', 'ubiqcrvy', 'ubyjolnc', 'ucewizyd', 'ucs', 'ucziatex', 'udmbwocs', 'udo', 'udp', 'udpate', 'udrzjxkm', 'ue', 'ueiybanz', 'uekapfzt', 'ufgkybsh', 'ufiatosg', 'ufpwmybi', 'ufpzergq', 'ug', 'ugelctsz', 'ughynofq', 'ughzilfm', 'ugi', 'ugnthxky', 'ugrmkdhx', 'ugu', 'ugyothfz', 'uhammet', 'uhefoqtg', 'uhnbsvqd', 'uhntgvyj', 'uhr', 'uhytry', 'ui', 'uicjxvng', 'uidgt', 'uihvzzxjfawqgrlj', 'uiu', 'ujtmipzv', 'ujxvrlzg', 'uk', 'ukasz', 'ukcbaufmvcasicd', 'ukwfgxrl', 'ukxtqfda', 'ukynmfig', 'ulezhxfw', 'uli', 'ulm', 'ulrike', 'ultra', 'ultramdntyet', 'ulv', 'um', 'umbau', 'umgestellt', 'umykjweg', 'umzcxfah', 'umziehen', 'umzug', 'un', 'unable', 'unacceptable', 'unannounced', 'unauthorised', 'unauthorized', 'unavailable', 'unaware', 'unbale', 'unblock', 'uncaught', 'unchecked', 'unconfirme', 'unconverted', 'und', 'undate', 'undeliverable', 'underlie', 'underscore', 'understand', 'understanding', 'undock', 'undocking', 'unexpected', 'unfortunately', 'unfreeze', 'ungksotp', 'uninstall', 'uninstallation', 'uninstalle', 'uninstalled', 'uninstaller', 'unique', 'unit', 'united', 'universal', 'unix', 'unknown', 'unlesbar', 'unless', 'unlicensed', 'unlikely', 'unlinked', 'unlock', 'unlocked', 'unlocking', 'unlook', 'unmarkhty', 'unmittelbar', 'unmonitored', 'unnessary', 'unplanned', 'unpliugged', 'unpost', 'unqlarpk', 'unrbafjx', 'unreachable', 'unread', 'unreadable', 'unrecognized', 'unregistered', 'unresolved', 'unresponsive', 'unrestricte', 'unrestricted', 'unsafe', 'unsaved', 'unser', 'unsere', 'unsuccessful', 'unsupported', 'unter', 'unterhaltung', 'unterlagen', 'unterst', 'untinstall', 'untrustworthy', 'unvdyask', 'unvollst', 'unzip', 'uorcpftk', 'uoyipxqg', 'upadate', 'upadhyaya', 'upajtkbn', 'upcgxthj', 'upcoming', 'update', 'updated', 'updating', 'updation', 'updown', 'uperform', 'upgrade', 'upgtrvnj', 'upitdmhz', 'upiyobvj', 'uplink', 'upload', 'uploaded', 'uploader', 'uploading', 'upon', 'upper', 'uprmwlgb', 'uprodleq', 'ups', 'upservice', 'upto', 'upwonzvd', 'uqjbkydr', 'urbghty', 'urgapyzt', 'urgency', 'urgent', 'urgently', 'urgnet', 'urgqkinl', 'urhbvfgd', 'url', 'urlaubsplanung', 'urlaubsst', 'urlcorrelation', 'urle', 'urlenc', 'urlfullpath', 'urlhost', 'urlpath', 'urspr', 'urumqi', 'urvitans', 'us', 'usa', 'usadtto', 'usae', 'usaed', 'usage', 'usalikfj', 'usar', 'usas', 'usatdhdal', 'usb', 'uschow', 'usd', 'usdekfzq', 'use', 'used', 'useful', 'useid', 'user', 'userid', 'userlogin', 'username', 'usero', 'users', 'usersetting', 'usr', 'usser', 'ustvaifg', 'usual', 'usually', 'usx', 'utbnkyop', 'utc', 'utejhdyd', 'uthagtpgc', 'util', 'utility', 'utiliuytretion', 'utilization', 'utilize', 'utislgov', 'utlization', 'utrimobs', 'utwijzag', 'uvbmysgcbenezer', 'uwdqtrnx', 'uwe', 'uwjchqor', 'uwncfovt', 'uwtakcmj', 'uxhq', 'uxndyfrs', 'uxpytsdk', 'uy', 'uyfqgomx', 'uyjlodhq', 'uylvgtfi', 'uynrhiva', 'uyocgasl', 'uypsqcbm', 'uyrpdvoq', 'uywlidgjbvbgl', 'uzojtkmh', 'uzpycdho', 'uzvsnlbd', 'va', 'vacation', 'vadnhyt', 'vaghjmskee', 'vaghyliort', 'vagnerlrtopes', 'vahgolwx', 'vahxnfgl', 'vaigycet', 'vajtodny', 'val', 'valid', 'validate', 'validation', 'validity', 'value', 'vamthrsee', 'vanghtydec', 'variable', 'variant', 'variation', 'various', 'vas', 'vasanqi', 'vat', 'vatpgsxn', 'vaugtyghtl', 'vault', 'vavilova', 'vb', 'vbap', 'vbgljescsqfbbum', 'vbkpf', 'vc', 'vcenter', 'vchvpwdldenzd', 'vdhfy', 'vdjqoeip', 'vdklzxqg', 'vefghgarr', 'veiw', 'vel', 'vendor', 'vendorclassification', 'vendoreventid', 'vendorpriority', 'vendorreference', 'vendorsigid', 'vendorversion', 'venfgugjhytpal', 'venkat', 'venkbghksh', 'venkthrysh', 'venktyamk', 'ventilst', 'venue', 'vepxdgot', 'ver', 'verbinden', 'verbindung', 'verbinung', 'verboma', 'verboncouer', 'verboten', 'verbreitung', 'verehrte', 'verf', 'verggermany', 'verghjuen', 'verificar', 'verification', 'verified', 'verify', 'verizon', 'verkauf', 'verkaufsgebiet', 'verl', 'verly', 'versa', 'versand', 'versehens', 'versendeten', 'version', 'versions', 'verstrauensstellung', 'versucht', 'verteilung', 'vertiayhtu', 'vertical', 'vertraulich', 'vervielf', 'verwenden', 'verz', 'verzeichnis', 'vf', 'vfdglqnp', 'vfjsubao', 'vfkwscao', 'vfnraqxc', 'vfx', 'vg', 'vga', 'vgsqetbx', 'vh', 'vhcmnoxdyawqgb', 'vhebydgs', 'vhihrty', 'vhjkdqop', 'vhsw', 'vhw', 'vhzxkjet', 'via', 'vic', 'vice', 'vicinity', 'victim', 'vid', 'vide', 'video', 'videos', 'vidya', 'viele', 'vielen', 'view', 'viewer', 'vig', 'vignbhyesh', 'vigrtgyne', 'vijeghtyundra', 'vijghyduhprga', 'vijuryat', 'vikrhtyas', 'vikrhtyaskurtyar', 'vil', 'village', 'vinhytry', 'violation', 'viotto', 'vip', 'vipqmdse', 'virakv', 'virtual', 'virtualcenter', 'viruhytph', 'virus', 'visando', 'visfgthal', 'visibility', 'visible', 'visid', 'visio', 'visit', 'visitble', 'visitor', 'visual', 'visualisieren', 'vitalyst', 'vivbhuek', 'vivian', 'vivthyek', 'vjkftuai', 'vjzfocgt', 'vk', 'vkdobexr', 'vkezwolt', 'vkjdgtxb', 'vkm', 'vkrepcybwa', 'vkrqojyt', 'vksfrhdx', 'vkzwafuh', 'vl', 'vlan', 'vlinspectkiosk', 'vln', 'vlpfgjyz', 'vm', 'vmax', 'vmdk', 'vmhfteqo', 'vmqcyzda', 'vms', 'vmsliazh', 'vmsw', 'vmthcrkf', 'vmware', 'vmxathog', 'vnc', 'vnglqiht', 'vnhaycfo', 'vnizrdeb', 'vnjdghui', 'vnjwsadx', 'vnlqkgpb', 'vobarhzk', 'vobluewg', 'voethrylke', 'vogelfontein', 'void', 'voigt', 'volkhd', 'volume', 'volunteer', 'vom', 'von', 'voprdmae', 'vor', 'voraus', 'voreingestellte', 'vorgeschlafen', 'vorgesetzten', 'vorhanden', 'vorschl', 'votgygel', 'vou', 'voucher', 'vous', 'voyyhuek', 'vp', 'vpksyfco', 'vpn', 'vpns', 'vpro', 'vpv', 'vriendelijke', 'vrkoqaje', 'vroanwhu', 'vrtvpopc', 'vrtx', 'vs', 'vsbhyrt', 'vsdtxwry', 'vsid', 'vsknlfri', 'vsp', 'vsphere', 'vstyaouc', 'vtbegcho', 'vtdygauw', 'vthuzanc', 'vtokgley', 'vtykrubi', 'vtyr', 'vu', 'vudghzcb', 'vulnerability', 'vulnerable', 'vupglewt', 'vuxdrbng', 'vv', 'vvaghjnthl', 'vvamirsdwnp', 'vvamrtryot', 'vvbgrtyeleb', 'vvbloor', 'vvblorytor', 'vvblothryor', 'vvbthryhn', 'vvcodgtjud', 'vvdeftmea', 'vvdfgtyuji', 'vvdghtteij', 'vvdgtyachac', 'vvdortddp', 'vvfrtgarnb', 'vvftgor', 'vvggrthhibg', 'vvghychamc', 'vvgoythttu', 'vvgraec', 'vvgtybyrn', 'vvgtycargvc', 'vvgtyhpej', 'vvgtyrhds', 'vvhstyap', 'vvhthyoffc', 'vvjodav', 'vvjotsgssea', 'vvkatt', 'vvkertgipn', 'vvkuhtdppg', 'vvkuimtyu', 'vvkujup', 'vvkusgtms', 'vvkuthyrppg', 'vvlahstyurr', 'vvlixthy', 'vvnergtubj', 'vvparthyrra', 'vvrajai', 'vvrassyhrt', 'vvrnrtacri', 'vvrtgffada', 'vvrtgwildj', 'vvrttraja', 'vvrtyjakaa', 'vvrtymitrd', 'vvrurtgsur', 'vvsallz', 'vvsfgtyrinv', 'vvsimpj', 'vvspecmfrt', 'vvsthryomaa', 'vvtathadnda', 'vvtdfettc', 'vvterra', 'vvtghjscha', 'vvthuenka', 'vvthygschj', 'vvttraja', 'vvwhtyuy', 'vvwtyeidt', 'vvyhtyumasp', 'vw', 'vwaliogd', 'vwkasnxe', 'vwniefok', 'vxfkwaqh', 'vxjbunfi', 'vxpcnrtw', 'vxuikqaf', 'vyamhjip', 'vybdkuoa', 'vyjmlain', 'vyluaepi', 'vythytalyst', 'vytqlphd', 'vyucbagx', 'vywrfywnsxzsywd', 'vzmneycx', 'vzqomdgt', 'wa', 'waagerechte', 'wac', 'wafglhdrhjop', 'wagshrzl', 'wait', 'waitgr', 'wake', 'walddkrrm', 'waldjrrm', 'walkme', 'wall', 'wallet', 'wallpaper', 'wam', 'wanrtyg', 'wanrtygm', 'want', 'wanthryg', 'waqslrbd', 'warden', 'ware', 'warehouse', 'wareneingang', 'warm', 'warn', 'warning', 'warrrtyen', 'wasload', 'waste', 'watch', 'watcher', 'wauhocsk', 'way', 'waynesboro', 'wbr', 'wbs', 'wbsfavhg', 'wc', 'wckrxovs', 'wcrbmgon', 'wdflefrong', 'wdfwsggalleh', 'wdjwd', 'wdkaoneh', 'wdkfww', 'wdkwdwd', 'wdkyiqfx', 'wdleell', 'wdlmdwwck', 'wdnwe', 'wdnwk', 'wdnwwl', 'wdq', 'wdtsyuxg', 'wdugqatr', 'wdwddw', 'wdwmd', 'weak', 'wear', 'weaver', 'web', 'webapp', 'webapps', 'webdhyt', 'webfnhtyer', 'webi', 'webpage', 'webportal', 'webrger', 'webshop', 'webside', 'website', 'websty', 'webyutelc', 'wechseln', 'weclfnhx', 'wedgrtyh', 'wednesday', 'week', 'weekday', 'weekend', 'weekly', 'wegen', 'wehlauer', 'wei', 'weight', 'weird', 'weit', 'weiterleiten', 'welch', 'welchia', 'welcome', 'well', 'welling', 'welwsswbtwe', 'wendt', 'wenige', 'wenn', 'went', 'wer', 'werden', 'werk', 'werkzeuge', 'wesley', 'west', 'westcoast', 'wester', 'westes', 'weszfyok', 'wethruiberg', 'wethrybb', 'wezeb', 'wf', 'wfgtyill', 'wfyhgelz', 'wg', 'wghjkftewj', 'wgpelvyn', 'wgpimkle', 'wgq', 'wgtcylir', 'wgtyillsford', 'wgyhktic', 'wh', 'whalep', 'whaley', 'wharehouse', 'whatever', 'whenever', 'whenn', 'whereas', 'whereby', 'wherein', 'wherever', 'whether', 'whilst', 'white', 'whjtlkn', 'whjtyulen', 'whoever', 'whole', 'whomever', 'whose', 'whoyizfp', 'whqsm', 'whryuiam', 'whsipqno', 'whwdiuw', 'whzbrusx', 'wi', 'wichtige', 'wickhamtf', 'wide', 'widespread', 'widget', 'wie', 'wieder', 'wiederherstellen', 'wiejas', 'wifi', 'wiggrtgyis', 'wightygins', 'wijuiidl', 'wikfnmlwds', 'wiksufty', 'wild', 'wildschuetz', 'wilfert', 'williuthyr', 'wilmington', 'wilsfgtjl', 'wilsfrtch', 'wim', 'win', 'window', 'windows', 'windowseventid', 'windy', 'winow', 'winprodnc', 'winrar', 'winsock', 'winwip', 'winzip', 'wip', 'wir', 'wird', 'wire', 'wireless', 'wirelss', 'wise', 'wish', 'wit', 'within', 'without', 'witrh', 'wj', 'wjkzgyxh', 'wjslkzfr', 'wjzvabrl', 'wk', 'wkbovsmu', 'wkgpcxqd', 'wkly', 'wkpnlvts', 'wkqjcfgy', 'wktttrvqgqfnbtfq', 'wl', 'wlan', 'wlc', 'wlcdvjywouvmrun', 'wly', 'wlzqaivr', 'wmsg', 'wmtiruac', 'wnk', 'wnkpzcmv', 'wnorzsyv', 'wnxzhqoa', 'wnyierbu', 'wo', 'woche', 'woehyl', 'wohtyugang', 'wohzmlib', 'wolfthry', 'wollschl', 'wonder', 'woodscf', 'word', 'work', 'workaround', 'workbook', 'workbooks', 'workcenter', 'workcentre', 'worker', 'workfflow', 'workflow', 'workgroup', 'workig', 'working', 'worklfow', 'worklist', 'workman', 'workng', 'workplace', 'workplanne', 'worksheet', 'workshop', 'workstation', 'worl', 'world', 'worm', 'worry', 'worthy', 'wothyehre', 'would', 'wp', 'wpakylnj', 'wpcatozg', 'wpdxlbhz', 'wpkcbtjl', 'wptbgchj', 'wqbsodni', 'wqfzjycu', 'wqinjkxs', 'wqpfdobe', 'wqtlzvxu', 'wquxvrvmgkdesmiw', 'wqw', 'wqxcrzhj', 'wqxzleky', 'wrapper', 'wrcktgbd', 'wrctgoan', 'wrench', 'write', 'wrk', 'wrke', 'wrong', 'wrongful', 'wrongly', 'wrtyuh', 'ws', 'wsb', 'wsboedtj', 'wseacnvi', 'wshqqhdqh', 'wsignin', 'wsjkbw', 'wsljdqqds', 'wsp', 'wswdd', 'wt', 'wthaldlmdsrop', 'wtldpncx', 'wtqdyoin', 'wtqdyoinware', 'wtubpdsz', 'wtxvqngf', 'wtykmnlg', 'wu', 'wunderlist', 'wunthyder', 'wurdack', 'wurde', 'wurden', 'wuryhtudack', 'wusa', 'wusdajqv', 'wusgaozx', 'wv', 'wvdxnkhf', 'wvhelqxu', 'wvngzrca', 'wvprteja', 'wvqgbdhm', 'wwdyuan', 'wwi', 'wwisvc', 'www', 'wxdvjoct', 'wxnetroc', 'wxpytevu', 'wxrvavuycxgcnb', 'wxstfouy', 'wy', 'wydorpzi', 'wyighrjl', 'wyjsbzda', 'wymgzcrh', 'wynhtydf', 'wysiwyg', 'wz', 'wza', 'wzfryxav', 'wzrgyunp', 'wzs', 'wzyspovl', 'xaad', 'xabba', 'xabbf', 'xabkyoug', 'xacbc', 'xaccedd', 'xackgvmd', 'xad', 'xadbff', 'xadc', 'xamcuong', 'xamesrpfrop', 'xamtgvnw', 'xaqzisrk', 'xawlkiey', 'xaykwtrf', 'xb', 'xbc', 'xbdht', 'xbedac', 'xbff', 'xblnr', 'xbmyvnqf', 'xbsckemt', 'xbtsaodr', 'xbvghozp', 'xc', 'xcb', 'xcc', 'xce', 'xcel', 'xceliron', 'xcirqlup', 'xcwavhyu', 'xd', 'xdabb', 'xdaedb', 'xdddde', 'xdefb', 'xdgjizek', 'xdvwitpm', 'xe', 'xebc', 'xec', 'xece', 'xed', 'xeda', 'xedbf', 'xee', 'xef', 'xefd', 'xelhoicd', 'xernsfqa', 'xerox', 'xeuhkoqa', 'xex', 'xf', 'xfae', 'xfaf', 'xfbcdcc', 'xfbe', 'xfc', 'xfdce', 'xfdkwusj', 'xff', 'xfizlnap', 'xfuqovkd', 'xgufkidq', 'xhaomnjl', 'xhnmygfp', 'xia', 'xiframdntye', 'xighjacj', 'xikojdym', 'xirwgjks', 'xithya', 'xiyhtu', 'xjhpznd', 'xjhpznds', 'xjmpacye', 'xjvubmlq', 'xjzcbgnp', 'xkegcqov', 'xkhsirtd', 'xkjuigsc', 'xl', 'xls', 'xlsb', 'xlsm', 'xlsx', 'xltm', 'xltx', 'xmeytziq', 'xmgptwho', 'xml', 'xmlbfjpg', 'xnklbfua', 'xnqzhtwu', 'xomkhzrq', 'xos', 'xosdfhbu', 'xoukpfvr', 'xovczlad', 'xp', 'xpoqcrtb', 'xprwayoc', 'xptuoaid', 'xpugntjv', 'xqbevoic', 'xqgovpik', 'xqtldrcs', 'xref', 'xrfcjkdl', 'xrqnyzhb', 'xsdb', 'xsfgitmq', 'xsrkthvf', 'xss', 'xsso', 'xszoedmc', 'xt', 'xtmjlari', 'xukajlvg', 'xuqvaobxuy', 'xvgftyr', 'xvgzdtqj', 'xvwchsdg', 'xvysrnmb', 'xwbesorf', 'xwbesorfs', 'xwelumfz', 'xwgnvksi', 'xwirzvda', 'xwlcqfsr', 'xxx', 'xxxx', 'xxxxx', 'xyculgav', 'xyedbsnm', 'xyuscbkn', 'xyz', 'xzbtcfar', 'xzn', 'xzopjhlq', 'xzs', 'yadavtghya', 'yahoo', 'yakimp', 'yambwtfk', 'yandfgs', 'yandy', 'yathryu', 'yaxmwdth', 'yayuel', 'ybaoluck', 'ybexblpufkbwlua', 'ybhazlqp', 'ybuvlkjq', 'ycgkinov', 'ycimqxdn', 'ydgqtpbo', 'ydigzqbu', 'year', 'yecbmliq', 'yeghrrajghodu', 'yegzbvru', 'yellow', 'yepifgbl', 'yerrav', 'yes', 'yesilc', 'yesterday', 'yet', 'yevirgnl', 'yeyhtung', 'yfaqhceo', 'yfeuhtib', 'yhe', 'yhhm', 'yhmwxsqj', 'yhroaeqj', 'yhru', 'yhtdush', 'yhteijwf', 'yhtheehey', 'yi', 'yiagubvh', 'yicpojmf', 'yidvloun', 'yifdirvjfihvzzxj', 'yihelxgp', 'yijgokrn', 'yimwfntl', 'yjscozva', 'yjtdkfuo', 'yjurztgd', 'ykeilmog', 'ykolismx', 'ylfwnbkr', 'ylhogjct', 'ylqvitsk', 'ymdqokfp', 'ymedkatw', 'ynlqrebs', 'yno', 'ynowzqfh', 'yolktfas', 'yopvwrjq', 'yotyhga', 'youfzmgp', 'young', 'ypdhesrq', 'ype', 'ypladjeu', 'yptglhoe', 'yqddquanw', 'yqnajdwh', 'yqxlbswt', 'yrada', 'yrhackgt', 'yrjhd', 'yrlsguzk', 'yscgjexz', 'ysfiwvmo', 'yspnqxgw', 'ytd', 'ytqhfmwi', 'ytzpxhql', 'yubtgy', 'yucgfmiq', 'yuglsrwx', 'yukdzwxs', 'yup', 'yuxloigj', 'yvhlenaz', 'yvlswgxb', 'yvtjzkaw', 'ywqgrbnx', 'yyufs', 'yzemkhbq', 'yzhao', 'yzmcfxah', 'yzugpdco', 'yzwnvbjt', 'zaf', 'zahlen', 'zahllauf', 'zanegtyla', 'zarlgjes', 'zartupsw', 'zazrtulds', 'zbpdhxvk', 'zbudwnfr', 'zbwtunpy', 'zcae', 'zcaermdt', 'zcejmwsq', 'zchjbfdehivashankaraiah', 'zcnc', 'zcnp', 'zcopc', 'zcor', 'zcp', 'zcqnuawo', 'zcudbnyq', 'zcustgrp', 'zd', 'zdcheloy', 'zdfymgjp', 'zdis', 'zdsxmcwu', 'zdus', 'zearn', 'zebra', 'zedghkler', 'zedlet', 'zeichnungsrahmen', 'zeit', 'zeitbuchungen', 'zeiterfassung', 'zeitkonten', 'zeitweise', 'zeitwirtschaft', 'zektaqof', 'zembok', 'zero', 'zevpkogu', 'zfghsxiw', 'zgdckste', 'zh', 'zhang', 'zhengdr', 'zheqafyo', 'zhhtyangq', 'zhm', 'zhothu', 'zhrgtang', 'zhu', 'zhuyhts', 'zhwmifvx', 'ziehe', 'zifujpvr', 'zigioachstyac', 'zip', 'ziped', 'zitec', 'ziv', 'zjcsqtdn', 'zjihgovn', 'zkaowfrx', 'zkb', 'zke', 'zkea', 'zkevitua', 'zkwfqagb', 'zkwfqagbs', 'zla', 'zlettel', 'zlftrkpq', 'zlgmctws', 'zlnfpuam', 'zlnxswvp', 'zload', 'zlp', 'zlqfptjx', 'zlx', 'zlxcsqdg', 'zlz', 'zm', 'zmcp', 'zmeo', 'zmgsfner', 'zmm', 'zmmdata', 'zmmtaxupd', 'znet', 'znewqgop', 'zneyrlhg', 'zno', 'znqcljxt', 'znr', 'zntc', 'zocjdutp', 'zokivdfa', 'zollerfgh', 'zone', 'zopbiufn', 'zopcrshl', 'zpcokgbj', 'zpd', 'zpdist', 'zpfitlyu', 'zpononpo', 'zpsr', 'zpsu', 'zpumhlic', 'zpwgoqju', 'zqbldipk', 'zqbmxdgy', 'zqt', 'zredeploy', 'zrfc', 'zrvbahym', 'zrwdgsco', 'zscr', 'zscxqdhoalaramdntyan', 'zsd', 'zsdrshstrud', 'zsdslsum', 'zslugaxq', 'zsluxctw', 'zsqabokr', 'ztfn', 'ztnfhiwq', 'zttf', 'ztyhng', 'zu', 'zuehlke', 'zugriff', 'zugriffs', 'zugriffsrechte', 'zuhoylt', 'zukommen', 'zum', 'zur', 'zurtxjbd', 'zusammen', 'zuteillisten', 'zuvjqgwa', 'zvjxuahe', 'zvnxlobq', 'zw', 'zwar', 'zwischen', 'zwrypjqv', 'zwutmehy', 'zwwirep', 'zwwzwsnkerplcb', 'zxdtskpw', 'zyjfpgtk', 'zz', 'zzcmpgn']
ch2 = SelectKBest(chi2, k=5000)
X_train_chi_count = ch2.fit_transform(X_train_count, y_train_count)
X_test_chi_count = ch2.transform(X_test_count)
X_train_chi_count, X_test_chi_count
#Selection of best features
(<6800x5000 sparse matrix of type '<class 'numpy.int64'>' with 85671 stored elements in Compressed Sparse Row format>, <1700x5000 sparse matrix of type '<class 'numpy.int64'>' with 19441 stored elements in Compressed Sparse Row format>)
data = {'ModelName':['TrainAccuracy', 'TestAccuracy', 'PrecisionScore', 'RecallScore','F1Score']}
modecomparedf= pd.DataFrame(data)
modecomparedf
| ModelName | |
|---|---|
| 0 | TrainAccuracy |
| 1 | TestAccuracy |
| 2 | PrecisionScore |
| 3 | RecallScore |
| 4 | F1Score |
1.Completed the count vectorizer transformation and created the transformed input to apply to model
2.Created the data frame to observe model comparison
3.Converted the target column to label encoded output
4.Also for selecting best features we have used chisquare method which gives a better accuracy
8.We have splitted the data to 80:20
mclf = MultinomialNB().fit(X_train_count, y_train_count)
data_m=predict_ml_model(mclf,X_train_chi_count,y_train_count,X_test_chi_count,y_test_count)
modecomparedf['MultinomialNB'] = data_m
accuracy 0.6476470588235295 Training score: 70.69117647058823 Testing score: 64.76470588235294
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
rclf = RandomForestClassifier()
data_m=predict_ml_model(rclf,X_train_chi_count,y_train_count,X_test_chi_count,y_test_count)
modecomparedf['RandomForest'] = data_m
accuracy 0.6605882352941177 Training score: 94.6470588235294 Testing score: 66.05882352941177
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
sclf= SGDClassifier(loss='hinge', penalty='l2',alpha=1e-3, random_state=42, max_iter=5, tol=None)
sclf.fit(X_train_chi_count, y_train_count)
y_pred = sclf.predict(X_test_chi_count)
print('accuracy %s' % accuracy_score(y_pred, y_test_count))
print('Training score:',sclf.score(X_train_chi_count, y_train_count)*100)
print('Testing score:',sclf.score(X_test_chi_count,y_test_count)*100)
accuracy 0.6741176470588235 Training score: 82.02941176470588 Testing score: 67.41176470588235
sclf=LogisticRegression(n_jobs=1, C=1e5)
data_m=predict_ml_model(sclf,X_train_chi_count,y_train_count,X_test_chi_count,y_test_count)
modecomparedf['LogisticRegression'] = data_m
accuracy 0.6541176470588236 Training score: 93.45588235294117 Testing score: 65.41176470588236
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning:
Precision is ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning:
Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
modecomparedf
| ModelName | MultinomialNB | RandomForest | LogisticRegression | |
|---|---|---|---|---|
| 0 | TrainAccuracy | 70.691176 | 94.647059 | 93.455882 |
| 1 | TestAccuracy | 64.764706 | 66.058824 | 65.411765 |
| 2 | PrecisionScore | 88.532738 | 85.933924 | 71.197060 |
| 3 | RecallScore | 64.764706 | 66.058824 | 65.411765 |
| 4 | F1Score | 73.180820 | 73.021285 | 67.570217 |
modecomparedf
modelCompare_countVect=modecomparedf.set_index('ModelName').rename_axis(None).T
modelCompare_countVect['Model_Name']=['MultinomialNB','RandomForest','LogisticRegression']
modelCompare_countVect
modelCompare_countVect.plot(kind='bar',x='Model_Name',y=['TrainAccuracy','TestAccuracy'], grid=True,width = 0.4)
plt.title('Training and Test accuracy')
plt.ylabel('Accuracy')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(15,10))
plt.show()
<Figure size 1080x720 with 0 Axes>
modelCompare_countVect.plot(kind='bar',x='Model_Name',y='PrecisionScore', grid=True)
plt.title('Precision Score')
plt.ylabel('PrecisionScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_countVect.plot(kind='bar',x='Model_Name',y='RecallScore', grid=True)
plt.title('Recall Score')
plt.ylabel('RecallScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_countVect.plot(kind='bar',x='Model_Name',y='F1Score', grid=True)
plt.title('F1 Score')
plt.ylabel('F1Score')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
#,'F1Score']
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
modelCompare_countVect.plot(kind='bar',x='Model_Name',y=['PrecisionScore','RecallScore','F1Score'], grid=True)
plt.title('Metrices Comparison')
plt.ylabel('Metrices')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 720x360 with 0 Axes>
modellist={'Random Forest': RandomForestClassifier(random_state=3),
'Multinomial Naive Bayes': MultinomialNB(),
'Logistic Regression': LogisticRegression()}
def classification_Report(modellist):
for k, item in modellist.items():
item.fit(X_train_chi_count.toarray(), y_train_count)
y_pred = item.predict(X_test_chi_count.toarray())
report = classification_report(y_test_count, y_pred)
print(k)
print(report)
classification_Report(modellist)
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
Random Forest
precision recall f1-score support
0 0.68 0.97 0.80 834
1 0.00 0.00 0.00 5
2 0.88 0.25 0.39 28
3 0.00 0.00 0.00 4
4 0.50 0.40 0.45 42
5 0.78 0.41 0.54 34
6 0.78 0.32 0.45 22
7 1.00 0.17 0.29 6
8 0.00 0.00 0.00 23
9 1.00 0.94 0.97 16
10 0.60 0.20 0.30 15
11 0.67 0.22 0.33 45
12 0.72 0.30 0.43 43
13 0.00 0.00 0.00 8
14 0.00 0.00 0.00 6
15 0.00 0.00 0.00 8
16 0.00 0.00 0.00 2
17 0.67 0.81 0.73 52
18 0.73 0.40 0.52 20
19 0.00 0.00 0.00 14
20 0.00 0.00 0.00 3
21 0.00 0.00 0.00 7
22 0.50 0.14 0.22 21
23 0.50 0.18 0.27 33
24 0.22 0.25 0.24 8
25 0.00 0.00 0.00 9
27 0.75 0.14 0.23 22
28 0.50 0.18 0.27 11
29 0.00 0.00 0.00 1
30 0.50 0.20 0.29 5
31 0.00 0.00 0.00 2
32 0.00 0.00 0.00 1
33 0.00 0.00 0.00 1
34 0.78 0.24 0.37 29
35 0.00 0.00 0.00 11
36 0.00 0.00 0.00 5
37 0.00 0.00 0.00 11
38 0.00 0.00 0.00 1
39 1.00 0.33 0.50 3
40 0.00 0.00 0.00 8
42 0.00 0.00 0.00 4
43 0.33 0.83 0.48 6
44 0.00 0.00 0.00 2
45 0.75 0.50 0.60 18
46 0.00 0.00 0.00 3
47 0.00 0.00 0.00 2
48 0.00 0.00 0.00 1
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 1
51 0.00 0.00 0.00 2
53 0.00 0.00 0.00 1
55 0.00 0.00 0.00 1
56 0.68 0.37 0.48 35
57 1.00 0.25 0.40 4
59 1.00 0.17 0.29 6
62 0.00 0.00 0.00 1
63 0.00 0.00 0.00 2
66 0.00 0.00 0.00 1
67 0.00 0.00 0.00 12
68 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
72 0.64 0.88 0.74 130
73 0.42 0.23 0.29 44
accuracy 0.66 1700
macro avg 0.29 0.16 0.19 1700
weighted avg 0.60 0.66 0.59 1700
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
Multinomial Naive Bayes
precision recall f1-score support
0 0.66 0.99 0.79 834
1 0.00 0.00 0.00 5
2 1.00 0.07 0.13 28
3 0.00 0.00 0.00 4
4 0.45 0.40 0.43 42
5 0.48 0.41 0.44 34
6 0.62 0.36 0.46 22
7 1.00 0.17 0.29 6
8 0.00 0.00 0.00 23
9 0.92 0.69 0.79 16
10 0.47 0.47 0.47 15
11 0.38 0.07 0.11 45
12 0.52 0.26 0.34 43
13 1.00 0.12 0.22 8
14 0.00 0.00 0.00 6
15 0.00 0.00 0.00 8
16 0.00 0.00 0.00 2
17 0.93 0.73 0.82 52
18 1.00 0.15 0.26 20
19 0.00 0.00 0.00 14
20 0.00 0.00 0.00 3
21 0.00 0.00 0.00 7
22 0.80 0.19 0.31 21
23 0.40 0.06 0.11 33
24 0.00 0.00 0.00 8
25 0.00 0.00 0.00 9
27 0.55 0.27 0.36 22
28 1.00 0.18 0.31 11
29 0.00 0.00 0.00 1
30 0.00 0.00 0.00 5
31 0.00 0.00 0.00 2
32 0.00 0.00 0.00 1
33 0.00 0.00 0.00 1
34 0.89 0.28 0.42 29
35 0.00 0.00 0.00 11
36 1.00 0.20 0.33 5
37 0.00 0.00 0.00 11
38 0.00 0.00 0.00 1
39 0.00 0.00 0.00 3
40 0.00 0.00 0.00 8
42 0.00 0.00 0.00 4
43 0.00 0.00 0.00 6
44 0.00 0.00 0.00 2
45 0.40 0.33 0.36 18
46 0.00 0.00 0.00 3
47 0.00 0.00 0.00 2
48 0.00 0.00 0.00 1
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 1
51 0.00 0.00 0.00 2
53 0.00 0.00 0.00 1
55 0.00 0.00 0.00 1
56 0.85 0.31 0.46 35
57 0.00 0.00 0.00 4
59 1.00 0.17 0.29 6
62 0.00 0.00 0.00 1
63 0.00 0.00 0.00 2
66 0.00 0.00 0.00 1
67 0.00 0.00 0.00 12
68 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
72 0.59 0.90 0.71 130
73 0.50 0.11 0.19 44
accuracy 0.65 1700
macro avg 0.28 0.13 0.15 1700
weighted avg 0.59 0.65 0.56 1700
Logistic Regression
precision recall f1-score support
0 0.74 0.94 0.83 834
1 0.00 0.00 0.00 5
2 0.72 0.46 0.57 28
3 0.00 0.00 0.00 4
4 0.62 0.48 0.54 42
5 0.74 0.59 0.66 34
6 0.50 0.32 0.39 22
7 1.00 0.17 0.29 6
8 0.56 0.22 0.31 23
9 0.94 0.94 0.94 16
10 0.64 0.47 0.54 15
11 0.48 0.22 0.30 45
12 0.42 0.40 0.41 43
13 0.00 0.00 0.00 8
14 0.20 0.17 0.18 6
15 0.75 0.38 0.50 8
16 0.00 0.00 0.00 2
17 0.70 0.75 0.72 52
18 0.65 0.65 0.65 20
19 0.50 0.07 0.12 14
20 0.00 0.00 0.00 3
21 0.00 0.00 0.00 7
22 0.67 0.38 0.48 21
23 0.26 0.27 0.27 33
24 1.00 0.25 0.40 8
25 1.00 0.11 0.20 9
27 0.75 0.41 0.53 22
28 0.50 0.27 0.35 11
29 0.00 0.00 0.00 1
30 1.00 0.20 0.33 5
31 0.00 0.00 0.00 2
32 0.00 0.00 0.00 1
33 0.00 0.00 0.00 1
34 0.71 0.34 0.47 29
35 0.50 0.09 0.15 11
36 1.00 0.60 0.75 5
37 0.00 0.00 0.00 11
38 0.00 0.00 0.00 1
39 1.00 0.33 0.50 3
40 0.33 0.12 0.18 8
42 0.67 0.50 0.57 4
43 0.00 0.00 0.00 6
44 0.00 0.00 0.00 2
45 0.67 0.56 0.61 18
46 0.00 0.00 0.00 3
47 0.00 0.00 0.00 2
48 0.00 0.00 0.00 1
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 1
51 0.00 0.00 0.00 2
53 0.00 0.00 0.00 1
55 0.00 0.00 0.00 1
56 0.68 0.43 0.53 35
57 1.00 0.25 0.40 4
59 0.50 0.17 0.25 6
62 0.00 0.00 0.00 1
63 0.00 0.00 0.00 2
66 0.00 0.00 0.00 1
67 0.33 0.25 0.29 12
68 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
72 0.62 0.86 0.72 130
73 0.34 0.25 0.29 44
accuracy 0.68 1700
macro avg 0.38 0.22 0.26 1700
weighted avg 0.65 0.68 0.64 1700
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning:
Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
We have fitted the transformed input with chi square selection to Random forest Logistic Regression and Multinomial Naive Bayes models and plotted the test train accuracy plot.
From the comparison mentioned above it is inferred that though Logistic regression and Random forest gives better training accuracy but the test accuracy comes out to be very poor. Multinomial NB gives 70% training accuracy in the training dataset and 64% in the testing data which shows that it has less amount of overfit. So, for count vectorizer, multinomial NB gives better result in terms of accuracy. Whereas For precision, Random forest is the best. But it is observed that all the models have low recall.
vectorizer = TfidfVectorizer()
vectorizer.fit(x_train_count)
TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',
dtype=<class 'numpy.float64'>, encoding='utf-8',
input='content', lowercase=True, max_df=1.0, max_features=None,
min_df=1, ngram_range=(1, 1), norm='l2', preprocessor=None,
smooth_idf=True, stop_words=None, strip_accents=None,
sublinear_tf=False, token_pattern='(?u)\\b\\w\\w+\\b',
tokenizer=None, use_idf=True, vocabulary=None)
tfidf_tokens = vectorizer.get_feature_names()
print(tfidf_tokens)
['aa', 'aaa', 'aacbcc', 'aacount', 'aae', 'aao', 'aaplant', 'ab', 'abandon', 'abap', 'abb', 'abbc', 'abc', 'abca', 'abd', 'abdhtyu', 'abend', 'abende', 'abended', 'aber', 'abertura', 'abgebildet', 'abgeschlossen', 'abgrtyreu', 'abhanden', 'abhay', 'abhilfe', 'abholen', 'ability', 'abl', 'able', 'abode', 'abort', 'aborted', 'aborting', 'abovementioned', 'abrechnung', 'abreu', 'abrurto', 'absence', 'absender', 'absent', 'absolutely', 'abstechprogramdntym', 'abwfnzwbnvbw', 'ac', 'acache', 'acbccb', 'acc', 'acccount', 'accdb', 'acce', 'accede', 'accept', 'acceptance', 'accesible', 'acceso', 'access', 'accessed', 'accessibility', 'accessible', 'accessing', 'accesss', 'accident', 'accidental', 'accidentally', 'accidently', 'accompany', 'accomplish', 'accont', 'accord', 'accordance', 'accordingly', 'accound', 'account', 'accountant', 'accounting', 'accounts', 'accout', 'accross', 'accrual', 'accse', 'accsess', 'acct', 'accuracy', 'accurate', 'acd', 'ace', 'acess', 'acessos', 'acgyuna', 'ache', 'achghar', 'achghyardr', 'achim', 'ack', 'acknowledgement', 'acl', 'aconnection', 'acqpinyd', 'acquire', 'acrobat', 'across', 'action', 'actionperforme', 'activate', 'activation', 'active', 'actively', 'activesync', 'activex', 'activitiess', 'activity', 'actual', 'actuall', 'actually', 'acyltoe', 'aczyfqjr', 'ad', 'ada', 'adapoter', 'adaptation', 'adapter', 'adaptor', 'adc', 'add', 'adddf', 'added', 'addin', 'addition', 'additional', 'additionally', 'addon', 'addr', 'addreess', 'address', 'addressee', 'addresses', 'adelhmk', 'adgtym', 'aditya', 'adjtmlzn', 'adjust', 'adjustment', 'admin', 'adminhtml', 'administra', 'administrador', 'administration', 'administrative', 'administrator', 'adobe', 'adopter', 'adoption', 'adpvilqu', 'adressaten', 'adresse', 'adrhtykin', 'adt', 'advance', 'advanced', 'advice', 'advise', 'advisor', 'adware', 'adwind', 'adwjfpbreu', 'ae', 'aeb', 'aedwrpvo', 'aeea', 'aef', 'aegpkruc', 'aenderungsantrag', 'aenl', 'aeophctw', 'aeptfbgs', 'aero', 'aerospace', 'aerp', 'aes', 'aese', 'aetwpiox', 'aevzsogn', 'af', 'afcbrhqw', 'afd', 'afdceb', 'afe', 'afef', 'afefsano', 'affect', 'affected', 'affection', 'affiliate', 'afghtyjith', 'aficio', 'afkstcev', 'afplnyxb', 'africa', 'afterit', 'afternoon', 'afukzhnm', 'ag', 'agathon', 'agbighyail', 'agdsqbwv', 'agent', 'agentid', 'agfxelwz', 'aggergrythator', 'aghl', 'aghw', 'aghynil', 'aghynilthykurtyar', 'agjzikpf', 'ago', 'agora', 'agr', 'agree', 'agreement', 'agrtywal', 'agvl', 'agvw', 'ahbgjrqz', 'ahdwqrson', 'ahead', 'ahjklpxm', 'ahlqgjwx', 'ahmbnsoi', 'ahost', 'ahrskvln', 'ahsnwtey', 'ahujajtyhur', 'ahyiuqev', 'ahypftjx', 'aidl', 'aidle', 'aidw', 'aiiw', 'aimcfeko', 'aiml', 'ainl', 'ainuhbmk', 'ainw', 'aiqjxhuv', 'air', 'aircap', 'aisl', 'aitsgqwo', 'aiul', 'aiuw', 'aju', 'ajuda', 'ajuiegrson', 'ak', 'aka', 'akiowsmp', 'akirtyethsyd', 'akisjtzm', 'akku', 'aktplhre', 'aktuell', 'al', 'alabama', 'alarm', 'albaney', 'albrecht', 'ald', 'ale', 'alejayhsdtffndro', 'aler', 'alert', 'alerting', 'alex', 'alexandfrre', 'alexandre', 'alexansxcddre', 'alexgnhtjunder', 'alfa', 'algorithm', 'alicona', 'aliuytre', 'aliv', 'alive', 'alkuozfr', 'alle', 'allein', 'allert', 'allgemeines', 'allinv', 'allinvest', 'allocate', 'allocation', 'allow', 'allowe', 'alloy', 'alluser', 'allway', 'alm', 'almeida', 'almost', 'alone', 'along', 'alook', 'alparslanthyr', 'alphabet', 'alr', 'already', 'alrthyu', 'als', 'also', 'alt', 'alte', 'alternate', 'alternative', 'although', 'alto', 'altogether', 'altweiherstra', 'alvrhn', 'always', 'alwaysupservice', 'alwjivqg', 'amadeu', 'amar', 'amazonaw', 'amb', 'ambal', 'ambient', 'amend', 'amerirtca', 'amerirtcas', 'amfgtyartya', 'amhywoqg', 'amihtar', 'amlswjfr', 'amniujsh', 'amongst', 'amount', 'amrice', 'amssm', 'amunt', 'amy', 'ana', 'analog', 'analtyicspro', 'analyse', 'analyser', 'analysis', 'analyst', 'analytic', 'analyze', 'analyzer', 'anantadth', 'anbei', 'anbtr', 'andere', 'anderen', 'anderer', 'andhtyju', 'andrdgrtew', 'android', 'anecdfps', 'anfghyudrejy', 'anftgup', 'angefragt', 'angeh', 'angelique', 'angeschlossen', 'angezeigt', 'angyta', 'anh', 'anhang', 'anira', 'anivdcor', 'anlage', 'anlegen', 'anleitung', 'anmelde', 'anmelden', 'annehman', 'annette', 'anniversary', 'annotatorlist', 'announce', 'annoy', 'annoying', 'annyhtie', 'anonymize', 'anonymous', 'another', 'anschalten', 'ansehen', 'ansi', 'ansprechpartner', 'answer', 'answering', 'anti', 'anticipate', 'antivirus', 'antrag', 'antwort', 'anubis', 'anubisnetworks', 'anup', 'anvqzdif', 'anwendung', 'anwendungsfehler', 'anwendungstechniker', 'anybody', 'anymore', 'anyone', 'anyother', 'anything', 'anytime', 'anyway', 'anyways', 'anywhere', 'anzahlungsrechnungen', 'anzeige', 'ao', 'aobrelcs', 'aofnvyzt', 'aolhgbps', 'aorthyme', 'aoshpjiu', 'aosqelnr', 'aoxtugzr', 'aoyrspjv', 'ap', 'apac', 'apacc', 'apacnet', 'apacpuchn', 'aparecido', 'apart', 'apc', 'api', 'apkqmrdu', 'apl', 'aplication', 'apo', 'apologize', 'apost', 'app', 'apparat', 'apparent', 'apparently', 'appear', 'appeare', 'append', 'appendix', 'apper', 'apple', 'applewebkit', 'applicable', 'applicaiton', 'application', 'applications', 'apply', 'appointment', 'appreciate', 'appreciatehub', 'apprentice', 'apprenticeship', 'appricatehub', 'approfghache', 'appropriate', 'approva', 'approval', 'approve', 'approver', 'approx', 'approximate', 'approximately', 'apps', 'apptc', 'april', 'aprtgghjk', 'apt', 'apul', 'apusm', 'apvpn', 'aqihfoly', 'aqritplu', 'aqstdryv', 'aqzcisjy', 'aqzz', 'ar', 'arac', 'araghtyu', 'arbeiten', 'arbeitsmedizin', 'arbeitsplatz', 'arbeitsstation', 'arbeitsstationsvertrauensstellung', 'arbeitstage', 'arbeitszeitplan', 'arbitrary', 'arc', 'arcgonvy', 'architecture', 'archive', 'archived', 'arde', 'area', 'argentina', 'argtxmvcumar', 'argument', 'arise', 'arithel', 'arjpdohf', 'arkulcoi', 'aroqwuvz', 'around', 'arpa', 'arrange', 'arrangement', 'arrive', 'arrojhsjd', 'arrow', 'arsbtkvd', 'art', 'article', 'asa', 'asano', 'ascend', 'ascii', 'asfgthok', 'ashdtyf', 'asheshopsw', 'ashley', 'ashtusis', 'asia', 'asiapac', 'asignment', 'asistance', 'asjadj', 'ask', 'aspect', 'aspx', 'asse', 'assessment', 'asset', 'assign', 'assigned', 'assigning', 'assignment', 'assist', 'assistance', 'assistant', 'associate', 'association', 'asst', 'assume', 'assumption', 'assunto', 'assurance', 'assyli', 'assylias', 'asuenpyg', 'aswl', 'aswyuysm', 'asxpnlgk', 'atache', 'atcl', 'atclx', 'athjyul', 'athrdyau', 'athyndy', 'atjsv', 'atlanta', 'atleast', 'atnh', 'atp', 'att', 'attach', 'attached', 'attachement', 'attachment', 'attack', 'attacker', 'attempt', 'attend', 'attendance', 'attendee', 'attens', 'attention', 'attn', 'attrachment', 'attribute', 'atualiza', 'atualizar', 'atuldhy', 'atydjkwl', 'au', 'auch', 'audi', 'audible', 'audio', 'audiocode', 'audit', 'auditor', 'aueftuyaienptkn', 'auf', 'aufgebaut', 'aufgrund', 'aufmvcapktttrux', 'aufstellen', 'aufstellung', 'auftr', 'auftrag', 'auftragspapiere', 'auftrgasbearb', 'aug', 'augdec', 'august', 'aunsgzmd', 'aurangabad', 'aurwddwacher', 'aus', 'ausbildungswerkstatt', 'ausdruck', 'ausdrucken', 'ausgabe', 'ausgedruckt', 'ausgef', 'ausgenommen', 'ausgeschaltet', 'ausliefern', 'austausch', 'austauschen', 'australia', 'auswerten', 'autamatically', 'authenication', 'authentic', 'authenticate', 'authentication', 'author', 'authorisation', 'authoritative', 'authority', 'authorization', 'authorize', 'authorized', 'auto', 'autobank', 'autoforward', 'automate', 'automatic', 'automatical', 'automatically', 'automaticaly', 'automation', 'autoresolve', 'autorice', 'auvolfhp', 'av', 'availability', 'available', 'avaliar', 'avast', 'ave', 'average', 'avez', 'avfertigungszeiten', 'avoid', 'avsbdhyu', 'aw', 'awa', 'await', 'award', 'awards', 'aware', 'awareness', 'away', 'awb', 'awhile', 'awkrdqzb', 'awswere', 'awyl', 'awylw', 'awysinic', 'awysv', 'awyw', 'awywkjswx', 'awywkwdx', 'awywx', 'axcbfuqo', 'axcl', 'axesnghb', 'axhg', 'axhkewnv', 'ayhtrvin', 'aykegsvr', 'ayrhcfxi', 'aytjedki', 'ayuda', 'ayujdm', 'az', 'azbtkqwx', 'azm', 'azoyklqe', 'azubi', 'azubis', 'azure', 'azurewebsite', 'azvixyqg', 'azvoespk', 'ba', 'baa', 'baadea', 'baafd', 'babanlal', 'babhjbu', 'babiluntr', 'bachsdadgtadw', 'bachsmhdyhti', 'back', 'backdate', 'backdoor', 'backend', 'backflush', 'background', 'backorder', 'backorderreport', 'backup', 'bactelephony', 'bad', 'badge', 'badges', 'badgknqs', 'badly', 'bag', 'bagtylleg', 'bahbrgy', 'bahdqrcs', 'bajio', 'baker', 'bakyhr', 'bal', 'balance', 'balzer', 'bandwidth', 'bank', 'banking', 'bankrd', 'bankrupe', 'bankverbindung', 'banner', 'bapi', 'bapireturnederrorexception', 'bar', 'baranwfhrty', 'barcelona', 'barcode', 'bare', 'barely', 'barley', 'barrtyh', 'bas', 'base', 'bash', 'basic', 'basically', 'basis', 'batch', 'bath', 'bathylardb', 'batia', 'battel', 'batter', 'battery', 'battle', 'batuhan', 'bau', 'baugtymli', 'baurhty', 'baut', 'bauuyternfeyt', 'bay', 'bb', 'bbb', 'bbcc', 'bbf', 'bbfa', 'bbo', 'bc', 'bcb', 'bcc', 'bcd', 'bcf', 'bcfac', 'bcom', 'bctypmjw', 'bcxfhekz', 'bd', 'bda', 'bdacd', 'bdc', 'bdclient', 'bddbf', 'bde', 'bdf', 'bdfzamjs', 'bdm', 'bdtryh', 'bdwdwarbara', 'beabsichtigten', 'beach', 'beachten', 'beacon', 'beahleb', 'beamer', 'bearbeiten', 'beathe', 'beb', 'becke', 'beckshtyw', 'beckshtywsnh', 'become', 'bedord', 'bee', 'beec', 'beenefit', 'beep', 'beeping', 'bef', 'befb', 'befdba', 'befinden', 'begin', 'beginning', 'behalf', 'behave', 'behaving', 'behavior', 'beheben', 'behind', 'behsnjty', 'bei', 'beigef', 'beilage', 'beilageproben', 'beim', 'bekommen', 'believe', 'bell', 'bellusco', 'belo', 'belong', 'belt', 'belwo', 'ben', 'benachrichtigen', 'benamor', 'bench', 'beneath', 'benefit', 'benelthyux', 'benethrytte', 'bengtjamin', 'benign', 'benjamtrhdyin', 'benutz', 'benutzen', 'benutzer', 'benz', 'beosjgxt', 'ber', 'beratung', 'berblick', 'berechtigung', 'bereits', 'berfkting', 'bergehend', 'berirtch', 'berirtchtswesen', 'bernardo', 'bernig', 'berpr', 'bersicht', 'bertragung', 'bescheid', 'beschichtungsleitstand', 'beschprechungsraum', 'beschreibung', 'beshryu', 'beshryue', 'beshryulist', 'beshryuliste', 'beshryuout', 'beshryuwire', 'best', 'bestand', 'bestellnumer', 'bestellungen', 'bestimmt', 'beteiligung', 'betoneira', 'betreff', 'betriebliche', 'betriebsrat', 'betriebsratsvorsitzender', 'better', 'bettery', 'bettymcdanghtnuell', 'beuflorc', 'bev', 'bex', 'beyond', 'bezeichnung', 'bf', 'bfb', 'bfda', 'bfeecda', 'bfghabu', 'bfiwanze', 'bfnackrw', 'bfnvjgxd', 'bfqnvezs', 'bfrgtonersp', 'bfrx', 'bgdxitwu', 'bgflmyar', 'bghakch', 'bghrbie', 'bgtyrant', 'bgwneavl', 'bgyluoqn', 'bhatyr', 'bhayhtrathramdnty', 'bhdikthyu', 'bhergtyemm', 'bhqgdoiu', 'bhrtty', 'bhughjdra', 'bi', 'bia', 'biaprod', 'bidengineere', 'big', 'bigdrtyh', 'bigleman', 'bigrtdfatta', 'bigtyl', 'bihrtyull', 'biintll', 'bildschirm', 'bill', 'billghj', 'billing', 'bin', 'bind', 'bio', 'bios', 'bis', 'bise', 'bisschen', 'bit', 'bite', 'bitmap', 'bitte', 'bixsapwu', 'biyhll', 'bjehirkx', 'bjnqikym', 'bk', 'bkbackup', 'bkmeuhfz', 'bkpf', 'bkwin', 'bkzcfmse', 'blade', 'blank', 'blapmcwk', 'blast', 'blaster', 'bld', 'ble', 'bleiben', 'blink', 'blktuiae', 'block', 'blocker', 'blockiert', 'blokker', 'bloque', 'bloqueado', 'bls', 'blue', 'bluescreen', 'bluetooth', 'bmcfrlyz', 'bmdawzoi', 'bmftzwasigbsyxn', 'bmftzwasygvtywl', 'bmhxwvys', 'bmudkpie', 'bng', 'bngell', 'bnmdslzh', 'bnoupaki', 'bnpehyku', 'bnsh', 'bnthygl', 'bob', 'bobj', 'bobje', 'bobjee', 'bobs', 'bocxgin', 'bods', 'boeyhthm', 'bog', 'boivin', 'bokrgadu', 'bollmam', 'bom', 'bomsdgar', 'bonhyb', 'bonus', 'book', 'booking', 'bookmarkhty', 'boot', 'booth', 'booysen', 'bop', 'bosch', 'boss', 'bot', 'bother', 'bothms', 'botnet', 'bottleneck', 'bottom', 'botton', 'boundary', 'box', 'bpa', 'bpc', 'bplfrnis', 'bplnyedg', 'bqapjkcl', 'bqdlegnp', 'bqirpxag', 'bqmjyprz', 'br', 'bra', 'bradstreet', 'bragtydlc', 'brahdthyu', 'branch', 'brand', 'brandeerthy', 'brandhyht', 'brandtrhee', 'braze', 'brdhdd', 'breach', 'break', 'breakdown', 'brembo', 'breqgycv', 'brescsfgryiani', 'brgtyad', 'brgyake', 'brianna', 'bridge', 'bridgex', 'brief', 'briefly', 'bright', 'bring', 'broadband', 'broadcast', 'broadscan', 'broadscanne', 'broadscanning', 'broken', 'brook', 'browse', 'browser', 'browserproblem', 'browsing', 'brrgtyant', 'brrgtyanthet', 'brthryian', 'brthyrtiv', 'brw', 'brxavtzp', 'bsod', 'bsopzxhi', 'bsqdaxhf', 'bsqofdlx', 'bt', 'btelgpcx', 'bthrob', 'bu', 'bucket', 'budget', 'budhtya', 'budighfl', 'buero', 'buffer', 'bug', 'bugat', 'build', 'builder', 'building', 'built', 'buissness', 'bujiesrg', 'bulk', 'bumzwtco', 'bunch', 'bundle', 'bung', 'bur', 'burnhntyham', 'business', 'businessobject', 'businesstrip', 'busse', 'bussiness', 'bussy', 'busy', 'button', 'buy', 'buyer', 'buyoipdj', 'bv', 'bvcdpxrt', 'bvchnrduoqoqf', 'bvfdnale', 'bvwepigr', 'bw', 'bwa', 'bwdpmbkp', 'bwfhtumx', 'bwgldaoe', 'bwhrattr', 'bwhrerattr', 'bwhrertran', 'bwsdslspln', 'bxeagsmt', 'bxgwyamr', 'bxtqducs', 'byclpwmv', 'byczkowski', 'byer', 'byhdderni', 'byoezmla', 'byte', 'bytes', 'byuihand', 'bz', 'bzekndcu', 'bzqcwsgf', 'bzw', 'bzwrchnd', 'bzxljkoy', 'ca', 'caaca', 'caas', 'cabane', 'cabinet', 'cable', 'cac', 'cache', 'cad', 'cada', 'cadagent', 'cadastra', 'cadb', 'cadkey', 'caexmol', 'caexmols', 'caf', 'caflvjrn', 'cagrty', 'caixa', 'cajdwtgq', 'cal', 'calander', 'calculate', 'calculation', 'calculator', 'calendar', 'calibration', 'call', 'callback', 'caller', 'callie', 'caltmgoe', 'cam', 'camera', 'campaign', 'campbell', 'campo', 'campus', 'canada', 'cancel', 'candice', 'cann', 'cannont', 'cantabria', 'cantine', 'caoryhuq', 'capability', 'capacity', 'capture', 'car', 'caractere', 'carahcter', 'carb', 'carbide', 'card', 'cardfrmeca', 'cards', 'care', 'carlos', 'carmer', 'carolutyuin', 'carrier', 'carry', 'cart', 'cartridge', 'carve', 'cas', 'case', 'cash', 'cashpro', 'casting', 'castro', 'catalog', 'catalogue', 'catch', 'category', 'cathytyma', 'cause', 'caution', 'cb', 'cbccb', 'cbhnxafz', 'cbikymvf', 'cbmqufoa', 'cc', 'ccb', 'cccethxakm', 'cccplant', 'ccfterguss', 'ccftv', 'ccgslb', 'ccif', 'ccyks', 'cd', 'cdbaoqt', 'cdd', 'cde', 'ce', 'ceb', 'cebef', 'cec', 'cedsairg', 'ceea', 'cegtcil', 'cegtcily', 'cekomthyr', 'cell', 'cellphone', 'cemvwyso', 'center', 'central', 'centralsamerirtca', 'centre', 'ceo', 'ceqmwkhi', 'cer', 'ceramdntyic', 'cert', 'certain', 'certainly', 'certificate', 'certify', 'cesarrogerio', 'cesco', 'cesgrtar', 'cest', 'cet', 'cf', 'cfac', 'cfb', 'cfc', 'cfcabfafdfaffddfeefbfd', 'cfce', 'cfe', 'cfef', 'cfgxpvzi', 'cfibdamq', 'cfkwxlmq', 'cfsqwtdv', 'cgdaytshqsd', 'cgo', 'cgwdwxhcmlevt', 'cgxlqtiz', 'ch', 'chahdtyru', 'chain', 'chainszv', 'chainszvuywlksb', 'chainttlf', 'chainverifier', 'chairman', 'challan', 'challenge', 'chance', 'chandmt', 'chandruhdty', 'chane', 'change', 'changeable', 'changed', 'changi', 'chanhe', 'channel', 'chaof', 'character', 'characteristic', 'charatcher', 'charge', 'charger', 'chargeur', 'charging', 'charm', 'chart', 'chassis', 'chat', 'chatgrylouy', 'chatryung', 'chdffong', 'che', 'check', 'checking', 'checkoutbapi', 'checkoutview', 'chefghtyn', 'chefgtnp', 'cheghthan', 'chek', 'cher', 'chg', 'chhyene', 'chian', 'chicago', 'chief', 'child', 'china', 'chinese', 'chipset', 'chk', 'chkdsk', 'chkmejsn', 'chkzbeav', 'chmielewski', 'chn', 'chnagdrtymk', 'chnbghyg', 'choice', 'choose', 'chopamghy', 'choppy', 'choragudi', 'chosuygq', 'chrashe', 'christgry', 'christgryta', 'christgrytian', 'christgrytoph', 'chrithysgd', 'chriuimjiann', 'chrome', 'chrsddiwds', 'chrthryui', 'chucashadqc', 'chukhyt', 'chun', 'cid', 'cif', 'cighytol', 'cihaz', 'cindy', 'cioehrnq', 'cip', 'circle', 'circuit', 'ciruit', 'cisco', 'citrix', 'city', 'cixzwuyf', 'ck', 'cker', 'ckinfo', 'ckmeldeterminal', 'ckmeldung', 'ckpojwir', 'ckrpsabm', 'cksetzen', 'cksetzten', 'ckxwtoam', 'cl', 'claapdico', 'claim', 'clappdico', 'clarification', 'clarify', 'class', 'classification', 'classifiertype', 'classify', 'classroom', 'clcking', 'clean', 'cleaner', 'cleanup', 'clear', 'clearance', 'clearly', 'cledara', 'cleoprzq', 'clhqsm', 'clhr', 'click', 'client', 'cliente', 'clientless', 'clients', 'clint', 'clip', 'clock', 'close', 'closed', 'closet', 'closing', 'clothe', 'cloud', 'clrgtydia', 'cls', 'clswzxoq', 'cltnwazh', 'cltszugw', 'clue', 'cluster', 'cm', 'cmm', 'cmor', 'cmp', 'cms', 'cn', 'cnc', 'cnctft', 'cneter', 'cnhgysju', 'cnhqgzwt', 'cnjkeko', 'cnmfbdui', 'cnn', 'cnw', 'co', 'coast', 'coat', 'coating', 'coatncqulao', 'cobrgtool', 'cobsfvjz', 'cockpit', 'code', 'coetzk', 'coferte', 'coffee', 'cold', 'collaboration', 'collapse', 'collate', 'colleague', 'collect', 'collective', 'collegue', 'collogue', 'color', 'column', 'com', 'comapny', 'combi', 'combination', 'combine', 'come', 'comercial', 'comfortable', 'command', 'comment', 'commercial', 'commerirtcal', 'commit', 'commited', 'commodity', 'common', 'commonly', 'commstorage', 'communicate', 'communication', 'communications', 'communicator', 'como', 'comp', 'company', 'companycenter', 'companyguest', 'companyipg', 'companyme', 'companypzyre', 'companys', 'companysecure', 'companyssecure', 'companyst', 'companytm', 'compare', 'comparison', 'compati', 'compatibility', 'compatibilty', 'compatible', 'compensation', 'competitive', 'competrhyrncy', 'complain', 'complaint', 'complete', 'completely', 'completion', 'complex', 'complexity', 'compliance', 'component', 'comprehend', 'compromise', 'compromised', 'compute', 'computer', 'computerkonto', 'comsume', 'comunication', 'con', 'conact', 'concall', 'concern', 'concerned', 'conclusion', 'conclusive', 'condition', 'conduct', 'conf', 'conference', 'conferences', 'confernece', 'confidential', 'confidentiality', 'config', 'configair', 'configig', 'configuration', 'configurator', 'configure', 'configured', 'confirm', 'confirmation', 'confirmationofhpcpo', 'confirmed', 'conforma', 'conformaclad', 'confusion', 'congratuldhyation', 'conn', 'connc', 'connec', 'connect', 'connected', 'connecti', 'connection', 'connectivity', 'connector', 'connectt', 'connoecte', 'conseciones', 'consider', 'consigment', 'consign', 'consignment', 'consist', 'console', 'constance', 'constant', 'constantly', 'constraint', 'construct', 'construction', 'consult', 'consultant', 'consultation', 'consulting', 'consume', 'cont', 'contact', 'contacted', 'contactperson', 'contail', 'contain', 'contatc', 'contate', 'content', 'context', 'continiously', 'continually', 'continue', 'continuous', 'continuously', 'contract', 'contractor', 'contrase', 'contribute', 'control', 'controll', 'controllable', 'controller', 'contv', 'conv', 'convention', 'conversation', 'conversion', 'convert', 'converted', 'coo', 'cook', 'cookie', 'cool', 'cooperation', 'coordinate', 'coordinator', 'copier', 'coppthsy', 'copy', 'copying', 'copyright', 'cor', 'cord', 'cordrtegd', 'core', 'corner', 'corp', 'corpbusinessdev', 'corporacion', 'corporate', 'corporateaccounte', 'corporation', 'correct', 'correction', 'corrective', 'correctly', 'correlation', 'correspond', 'correspondence', 'corresponding', 'corretamente', 'corrupt', 'corsthroc', 'coshopfloor', 'cost', 'costarra', 'costly', 'cothyshy', 'could', 'coumikzb', 'counsel', 'count', 'counter', 'countermeasure', 'countersinking', 'country', 'couple', 'courage', 'course', 'court', 'couskjgd', 'coutidfrc', 'coutinho', 'cover', 'coverage', 'coworker', 'cowqyjzm', 'cp', 'cpbzkrel', 'cpeioxdz', 'cpic', 'cpihaxbs', 'cplant', 'cpmaidhj', 'cpmmecial', 'cpp', 'cptl', 'cpu', 'cqlehowf', 'cqvuexjz', 'cqxahony', 'cr', 'crack', 'crackling', 'cradle', 'craigfgh', 'cran', 'crash', 'crashing', 'create', 'createknownaccountssummary', 'creation', 'creator', 'credential', 'credit', 'crete', 'crhyley', 'cria', 'crieria', 'crishtyutian', 'criterion', 'critical', 'crjhotyk', 'crm', 'crmdynamics', 'crohuani', 'crop', 'cross', 'crosscomp', 'crt', 'crtgyerine', 'cruz', 'cruzjc', 'crysyhtal', 'cs', 'cscache', 'csd', 'cse', 'csenjruz', 'csewdwdwdndmill', 'csi', 'csn', 'csqe', 'csr', 'csrsv', 'csscdddwsawdrill', 'csscdrill', 'cst', 'csv', 'csvlijud', 'ctainstanceid', 'ctc', 'cthaasnoc', 'cthoursook', 'cthryhris', 'cti', 'ctoc', 'ctrbjusz', 'ctrl', 'ctry', 'ctu', 'ctusaqpr', 'ctxjsolz', 'ctzykflo', 'cubdsrml', 'cube', 'cubicle', 'cudgevmx', 'cuibfgna', 'culghjn', 'cumbersome', 'cuqptoah', 'curhetyu', 'curious', 'curr', 'currency', 'current', 'currently', 'currentlyx', 'curso', 'cursor', 'cust', 'custom', 'customer', 'customermaster', 'customet', 'customization', 'cut', 'cute', 'cuthyunniy', 'cutpwjie', 'cutter', 'cutview', 'cv', 'cvd', 'cve', 'cvltebaj', 'cvn', 'cvss', 'cvyg', 'cvyifdirvjfigv', 'cvyycaoygzpcnn', 'cwdzunxs', 'cwfzldts', 'cwip', 'cwivnxuk', 'cwkjruni', 'cwryvksu', 'cwuospin', 'cwuqzyvm', 'cwxtsvkm', 'cyber', 'cybersecurity', 'cycle', 'cyndy', 'cytohwau', 'cyvdluja', 'cyxieuwk', 'cyzuomxa', 'czech', 'cznlfbom', 'czoparqg', 'da', 'daa', 'dabhruji', 'dac', 'dacafb', 'dacl', 'dada', 'dadurch', 'daghyunny', 'daily', 'dailyorderbillingreport', 'daisy', 'dakota', 'dale', 'dalgtylam', 'dallas', 'dalmdwppi', 'damage', 'daman', 'damuphws', 'dan', 'dana', 'danach', 'dane', 'danghtnuell', 'danie', 'dank', 'danke', 'danl', 'dann', 'danyhuie', 'darda', 'dardabthyr', 'daria', 'dartnl', 'das', 'daserf', 'dash', 'dashbankrd', 'dass', 'dat', 'data', 'database', 'databasesliste', 'databse', 'datacenter', 'datacntr', 'datafile', 'datagramdnty', 'dataloads', 'datas', 'dataservice', 'datasource', 'datateam', 'date', 'dated', 'datei', 'dateien', 'daten', 'datenbank', 'datum', 'dauerhaft', 'davgtgyrh', 'davidthd', 'day', 'daylight', 'daypay', 'days', 'dazu', 'db', 'dba', 'dbafdeb', 'dbcccbbe', 'dbdhz', 'dbe', 'dbednyuarski', 'dbfc', 'dbff', 'dbgrtqhs', 'dbif', 'dbkdwwd', 'dbrslnhe', 'dbsgicet', 'dbwkxalj', 'dbwuyxoq', 'dc', 'dca', 'dcafe', 'dcc', 'dcdhzhd', 'dce', 'dceghpwn', 'dcgw', 'dcgwuvfk', 'dctvfjrn', 'dctviemg', 'dd', 'ddb', 'ddc', 'dde', 'ddeihrsh', 'ddp', 'dds', 'ddwjm', 'de', 'dea', 'deab', 'deactivate', 'dead', 'deadlock', 'deadlocke', 'deae', 'deal', 'dealer', 'dear', 'deb', 'debaghjsish', 'debgrtybie', 'debhyue', 'debited', 'debtgyrur', 'debug', 'dec', 'december', 'decent', 'decide', 'decimal', 'decision', 'decommission', 'decommissioning', 'decrease', 'decrypt', 'dedalus', 'dedcea', 'dedicate', 'dedicated', 'deduct', 'deduction', 'deeghyupak', 'deep', 'def', 'default', 'defecbfe', 'defect', 'defective', 'defekt', 'defekte', 'defender', 'defense', 'defigne', 'define', 'definedsubmitform', 'defines', 'definitely', 'definition', 'deflate', 'defrag', 'deghjick', 'dehnfyru', 'deilvery', 'deine', 'del', 'delay', 'delegate', 'delegation', 'delete', 'deleted', 'deletion', 'delievery', 'deliver', 'deliverable', 'deliveries', 'delivery', 'dell', 'deloitte', 'deloro', 'delsonpereira', 'delta', 'delthybid', 'delviery', 'dem', 'demage', 'demand', 'demjqrfl', 'demo', 'demonstration', 'demselben', 'den', 'dene', 'denen', 'dengic', 'denied', 'density', 'deny', 'departement', 'departmenst', 'department', 'departments', 'depend', 'dependent', 'depfugcy', 'deploy', 'deployment', 'deposit', 'deppt', 'depreciation', 'dept', 'depute', 'der', 'des', 'describe', 'description', 'design', 'designate', 'designe', 'designer', 'desk', 'desktop', 'despite', 'dest', 'destinat', 'destination', 'destine', 'destop', 'destrtgoy', 'detachable', 'detail', 'detailed', 'details', 'detect', 'detecting', 'detection', 'determinate', 'determination', 'determine', 'deu', 'deusad', 'deutsch', 'deutschland', 'dev', 'develop', 'development', 'dever', 'device', 'devip', 'devise', 'devt', 'dewicrth', 'deyhtwet', 'df', 'dfetvmzq', 'dfgry', 'dfgtyon', 'dfhtyuison', 'dfpqxbgm', 'dfrt', 'dfsdpor', 'dfupksnr', 'dg', 'dgbfptos', 'dghuane', 'dgmlen', 'dgrkbnua', 'dgrtrkjs', 'dgtalone', 'dgurhtya', 'dhckfmbq', 'dhcopwxa', 'dhcp', 'dhcpack', 'dhcpd', 'dhdtwdd', 'dhec', 'dhjhieltiepvcb', 'dhjuyick', 'dhkovprf', 'dhl', 'dhoalycb', 'dhqwtcsr', 'dhthykts', 'dhwduw', 'di', 'diagnosis', 'diagnostic', 'dial', 'dialing', 'dialog', 'diaolog', 'dibesh', 'dicafxhv', 'diconnection', 'die', 'diehfhyumj', 'dienstag', 'dierppear', 'dierppeare', 'dierppeared', 'diese', 'diesem', 'dieser', 'difference', 'different', 'differential', 'differently', 'difficult', 'difficulty', 'difnjlkp', 'difozlav', 'digger', 'digital', 'digits', 'dilemma', 'dinge', 'dinner', 'dint', 'dinthyesh', 'dipl', 'dir', 'direct', 'directeur', 'direction', 'directionality', 'directive', 'directly', 'director', 'directory', 'direkt', 'disable', 'disabled', 'disappear', 'disassociate', 'disaster', 'discconect', 'disclaimer', 'disclose', 'disclosure', 'disconnect', 'disconnected', 'disconnecting', 'disconnection', 'disconnects', 'discount', 'discover', 'discovery', 'discrepancy', 'discription', 'discuss', 'discussed', 'discussion', 'disk', 'dispatch', 'dispatcher', 'displace', 'display', 'dispo', 'disposition', 'dispositivo', 'disprove', 'disrupt', 'dissemination', 'dist', 'distance', 'distinti', 'distort', 'distribuator', 'distribute', 'distributes', 'distribution', 'distributor', 'distrtgoye', 'disturb', 'disturbance', 'div', 'dive', 'diversos', 'divestiture', 'divide', 'division', 'diwhdd', 'dixhtyuit', 'dizquolf', 'djdwol', 'djhznybt', 'djpwfxzt', 'djskrgae', 'djtyroha', 'djvu', 'djwkylif', 'dkinobsv', 'dkklddww', 'dknejifu', 'dl', 'dljvtebc', 'dll', 'dlmukhyn', 'dlv', 'dlwdwd', 'dly', 'dmcc', 'dmexgspl', 'dmhpm', 'dmitazhw', 'dmqxwkfr', 'dms', 'dmvpn', 'dmz', 'dn', 'dnb', 'dnc', 'dnckipwh', 'dnis', 'dnlhsgyo', 'dnqdqld', 'dnrubpis', 'dns', 'dntym', 'dnwfhpyl', 'dob', 'doc', 'docad', 'docb', 'dock', 'docking', 'docm', 'doctype', 'document', 'documentation', 'documentos', 'documenttype', 'docx', 'doe', 'doen', 'dofghbme', 'doflefne', 'dokumente', 'dokumenten', 'dolder', 'dolhyt', 'dom', 'doma', 'domain', 'domasky', 'domestic', 'dondwdgj', 'donggle', 'dongle', 'donnathyr', 'donnerstag', 'donot', 'donwloade', 'dort', 'dos', 'dosen', 'dot', 'dotm', 'dotnet', 'dotnetframdntyework', 'dotx', 'double', 'doubleklick', 'doubleverify', 'doubt', 'doug', 'douglas', 'dow', 'downgrade', 'download', 'downloaddocumentoriginals', 'downloaded', 'downloader', 'downloading', 'downloads', 'downs', 'downtime', 'doyhtuug', 'dp', 'dpajkrhy', 'dpo', 'dport', 'dps', 'dpuifqeo', 'dpvaymxrest', 'dpyvjcxr', 'dqowbefk', 'dqplrwoy', 'dr', 'drac', 'draft', 'drafting', 'draftsight', 'dramdntyatically', 'draw', 'drawer', 'drawing', 'drctxjqi', 'dream', 'dridex', 'drill', 'drilling', 'dringend', 'drive', 'driver', 'drnqjzph', 'drop', 'dropbox', 'dropdox', 'drops', 'droracle', 'drtawing', 'drtbe', 'druck', 'druckauftr', 'druckauftrag', 'drucker', 'druckt', 'drue', 'drum', 'drvier', 'drwgs', 'ds', 'dsbmgonk', 'dsc', 'dsccache', 'dscsag', 'dsfdb', 'dshferby', 'dsilvfgj', 'dslamtcb', 'dss', 'dst', 'dstassetofinterest', 'dsthostname', 'dstip', 'dstport', 'dsw', 'dt', 'dtbycsgf', 'dtdqvqojzonlcb', 'dtheb', 'dthyan', 'dtjvhyob', 'dtlmbcrx', 'dtlwscma', 'dtnzgkby', 'dtp', 'dtwfaejr', 'dtwlrofu', 'du', 'dual', 'duane', 'duca', 'ducyua', 'dudekm', 'dudyhuyv', 'due', 'duel', 'duffym', 'duisenbergplantsoen', 'dummy', 'dump', 'dunham', 'dunning', 'duplex', 'duplicate', 'duplication', 'duration', 'durch', 'durchgef', 'durchwahl', 'durnfyxb', 'durumu', 'duty', 'duyhurmont', 'dv', 'dvd', 'dveuglzp', 'dvi', 'dviwuzhm', 'dvpnfbrc', 'dvqtziya', 'dvsrepro', 'dvsyxwbu', 'dvw', 'dvzlq', 'dvzrfsbo', 'dw', 'dwdbertfsych', 'dwfiykeo', 'dwgs', 'dwight', 'dwijxgob', 'dwjvfkqe', 'dwon', 'dwtivjrp', 'dwwkd', 'dwwlhews', 'dxf', 'dxnzkcuh', 'dxwuovgs', 'dxyvfuhr', 'dyhtruutt', 'dyhtuiel', 'dymanics', 'dymo', 'dynamic', 'dynamics', 'dyqekzuc', 'dyrgfwbm', 'dyxrpmwo', 'dz', 'dzbujamc', 'dzjespml', 'dzrgpkyn', 'ea', 'eadmpzcn', 'eaeb', 'eaf', 'eafe', 'eagcldaten', 'eagcutview', 'eagl', 'eaglt', 'eagsm', 'eagvusbr', 'eagw', 'eagwsf', 'eagwt', 'eamnvwyh', 'eaodcgsw', 'ear', 'earbud', 'earlier', 'earliest', 'early', 'earning', 'earphone', 'earth', 'earthwork', 'earthworks', 'eartyp', 'easier', 'easily', 'east', 'eastern', 'easy', 'easyterritory', 'eawkpgqf', 'eaymvrzj', 'eb', 'eba', 'ebaad', 'ebc', 'ebcd', 'ebhl', 'ebhsm', 'ebi', 'ebkfwhgt', 'ebm', 'ebom', 'ebpwcfla', 'ebs', 'ebus', 'ebusaar', 'ebusiness', 'ec', 'ecaa', 'ecatel', 'ecc', 'eccc', 'echo', 'ecp', 'ecs', 'ective', 'ecwtrjnq', 'ecygimqd', 'ed', 'edad', 'edb', 'edclhpkf', 'edd', 'ede', 'edfl', 'edfw', 'edge', 'edgemaster', 'edi', 'edimax', 'edit', 'editable', 'edition', 'editor', 'edksm', 'edksw', 'edml', 'edmlx', 'edmsm', 'edpouqjl', 'edsp', 'edspmloy', 'edt', 'educate', 'edula', 'edv', 'edww', 'ee', 'eead', 'eecdaac', 'eeec', 'eef', 'eeml', 'eemw', 'eemwx', 'eeserra', 'eet', 'ef', 'efa', 'efb', 'efbwiadp', 'efce', 'efdhrlwv', 'efdl', 'efdw', 'efe', 'effect', 'effective', 'effectively', 'effeghnk', 'efficiency', 'effort', 'efgoawct', 'efjzbtcm', 'efodqiuh', 'efrjkspc', 'efsdciut', 'efyumrls', 'eg', 'eglavnhx', 'eglwsfkn', 'egnwtvch', 'eh', 'ehem', 'ehndjmlv', 'ehs', 'eight', 'eijzadco', 'eilig', 'eilt', 'eimhxowu', 'ein', 'eine', 'einen', 'eingabe', 'eingegangen', 'eingegeben', 'einige', 'einlasten', 'einlegen', 'einskannen', 'einstein', 'einstellung', 'eintragen', 'einzelne', 'einzig', 'einzug', 'eiomnuba', 'either', 'eject', 'ejvkzobl', 'ek', 'ekim', 'ekmarvgd', 'ekmw', 'ekpl', 'ekpsm', 'ekxl', 'ekxw', 'el', 'elapse', 'elbaqmtp', 'elcpduzg', 'ele', 'elect', 'element', 'elengineere', 'eletronico', 'eligibility', 'eliminate', 'elituyt', 'elituytt', 'elm', 'elrndiuy', 'else', 'elt', 'eluvxqhw', 'elyamqro', 'em', 'email', 'emails', 'emal', 'emanate', 'emb', 'embed', 'embertell', 'emc', 'emea', 'emealeitung', 'emerald', 'emergency', 'emp', 'empf', 'empkirty', 'empl', 'employee', 'employment', 'emporarily', 'empty', 'empw', 'empwa', 'emsw', 'emxbpkwy', 'emzlw', 'en', 'enable', 'enc', 'enceinjury', 'enclose', 'enclosed', 'enclsoe', 'enco', 'encode', 'encodi', 'encoding', 'encontrar', 'encontrou', 'encounter', 'encrypt', 'encryption', 'encxjoawjr', 'end', 'endg', 'endkontrolle', 'endlkglfeghart', 'endpoint', 'ene', 'enforcement', 'eng', 'engagement', 'engg', 'engilsh', 'engine', 'engineer', 'engineering', 'engl', 'englehart', 'english', 'enhance', 'enhancement', 'enormity', 'enough', 'enquiry', 'ensure', 'ent', 'enter', 'entered', 'enterence', 'enterprise', 'enth', 'enthalten', 'entire', 'entity', 'entrance', 'entrie', 'entry', 'entsprechend', 'enumerate', 'env', 'enviada', 'enviar', 'enviroment', 'environment', 'environmental', 'envoy', 'eonhuwlg', 'eoreport', 'eotjzyxm', 'eovkxgpn', 'eozqgims', 'ep', 'epilwzux', 'epj', 'eplan', 'eple', 'epmap', 'epmsystem', 'eps', 'eq', 'eqdgoxap', 'eqiyskhm', 'eqtofwbm', 'equal', 'equipment', 'eqxyvfpi', 'er', 'eraser', 'erathyur', 'erfasse', 'erfolg', 'ergebnis', 'erhalten', 'erhmuncq', 'eri', 'erihyuk', 'erin', 'erirtc', 'erkennbar', 'erkennen', 'erkheim', 'erledigung', 'erode', 'erp', 'erpdata', 'erpgui', 'erplv', 'erpquery', 'erpstartsrv', 'erpsys', 'errata', 'erratasec', 'errir', 'erro', 'error', 'errror', 'erschien', 'erstellen', 'erthryika', 'ertnhxkf', 'ervin', 'ervuyin', 'es', 'esafrtbh', 'escalate', 'escalation', 'eseer', 'eset', 'esguiazn', 'esias', 'esp', 'especially', 'espinosa', 'esprit', 'esrs', 'ess', 'essa', 'est', 'esta', 'establish', 'estate', 'estaxpnz', 'estimate', 'estorage', 'esxi', 'eszl', 'et', 'etc', 'etdh', 'eth', 'ethd', 'ethernet', 'ethic', 'ethical', 'ethics', 'ethnic', 'ethryju', 'ethyxekirty', 'etibgja', 'etime', 'eto', 'etr', 'etsmnuba', 'etvzjmhx', 'etwas', 'etyhumpdil', 'eu', 'euioadyf', 'eujpstxi', 'eulalla', 'eulsvchi', 'euobrlcn', 'euro', 'euromote', 'europe', 'european', 'eusa', 'ev', 'eva', 'evakuierung', 'evaluation', 'evaluationmodel', 'evaluationmodels', 'even', 'evening', 'event', 'eventid', 'eventtypeid', 'eventtypepriority', 'eventually', 'ever', 'evercast', 'every', 'everybody', 'everyday', 'everyone', 'everything', 'everytime', 'everywhere', 'evh', 'evhl', 'evhw', 'evmrcqug', 'evolution', 'evry', 'evzbhgru', 'ewa', 'ewag', 'ewel', 'ewew', 'ewewx', 'ewgihcnz', 'ewkw', 'ewll', 'ewourgcx', 'ewseditor', 'ex', 'exact', 'exactly', 'examine', 'example', 'exbllhvzzxjfawq', 'exceed', 'excel', 'excellence', 'excellist', 'except', 'exception', 'excessive', 'exchange', 'excise', 'exclude', 'exclusion', 'exclusive', 'excuse', 'exe', 'exec', 'exection', 'executable', 'executar', 'execute', 'executing', 'execution', 'executive', 'executncqulao', 'exekirty', 'exel', 'exempt', 'exemption', 'exepsne', 'exgjscql', 'exist', 'existing', 'exit', 'exlbkpoj', 'exls', 'exlude', 'expand', 'expect', 'expedite', 'expense', 'experiance', 'experience', 'expert', 'exphkim', 'expiration', 'expire', 'expiry', 'explain', 'explanation', 'explicit', 'explicitly', 'exploit', 'exploitation', 'explore', 'explorer', 'export', 'exporta', 'exposition', 'expr', 'express', 'exszgtwd', 'ext', 'extend', 'extended', 'extension', 'extensions', 'extensive', 'extent', 'exterior', 'external', 'extn', 'extr', 'extra', 'extract', 'extraction', 'extremely', 'exurcwkm', 'ey', 'ez', 'ezbmonjr', 'ezrsdgfc', 'fa', 'fab', 'fabijhsd', 'fabry', 'fabxjimdghtyo', 'face', 'facet', 'facilitate', 'facilitator', 'facility', 'fact', 'factory', 'fading', 'fae', 'faecee', 'faerfrtbj', 'fail', 'failagain', 'faile', 'failure', 'fakeav', 'falhou', 'fall', 'fallowe', 'falsch', 'false', 'familiar', 'fan', 'fandyhgg', 'faq', 'far', 'farnwhji', 'fashion', 'fast', 'faster', 'fastethernet', 'fasyiokl', 'fatal', 'fault', 'faulty', 'favor', 'favorite', 'fax', 'faxen', 'fb', 'fbadnjhu', 'fbcce', 'fbgetczn', 'fbhyeksq', 'fbjkzxisupply', 'fbln', 'fbmugzrl', 'fbusqrlt', 'fc', 'fca', 'fccee', 'fcd', 'fceymwtz', 'fcf', 'fclswxkz', 'fcniljtu', 'fctmzhyk', 'fd', 'fdb', 'fdbbef', 'fdbgoamk', 'fdceb', 'fdd', 'fdeb', 'fdgrty', 'fdgrzwfyjlyxr', 'fdigznbk', 'fdv', 'fdyietau', 'fe', 'fea', 'feaeff', 'feasibility', 'feather', 'feature', 'feb', 'february', 'fechado', 'fechar', 'federal', 'feecdaac', 'feed', 'feedback', 'feeder', 'feel', 'fef', 'fehl', 'fehlen', 'fehlende', 'fehler', 'fehlerhaft', 'fehlermeldung', 'fehlgeschlagen', 'fehlversuche', 'feira', 'feld', 'felix', 'fellow', 'feluybrn', 'fen', 'fence', 'fengapac', 'fenthgh', 'ferbfhyunam', 'ferguss', 'fernandez', 'fert', 'fertigung', 'festnetztelefon', 'festplatte', 'fetaqndw', 'fetch', 'fever', 'ff', 'ffafbba', 'ffnen', 'ffner', 'ffthhiago', 'fgnqzeai', 'fgvv', 'fgxprnub', 'fhr', 'fhtyulvio', 'fhurakgsl', 'fhyuiinch', 'fi', 'fiber', 'fico', 'fidleyhtjp', 'field', 'fieldname', 'fieldsales', 'fievgddtrr', 'fight', 'figure', 'fijwprtv', 'file', 'filename', 'files', 'filesys', 'filesystem', 'filipim', 'fill', 'filter', 'final', 'finalize', 'finally', 'finance', 'financemssg', 'financial', 'find', 'findet', 'finding', 'fine', 'finial', 'finish', 'finished', 'fioghtna', 'firefox', 'firewall', 'firmware', 'first', 'firstly', 'fitness', 'five', 'fix', 'fiz', 'fjaqbgnld', 'fjzywdpg', 'fkicawph', 'fkuqjwit', 'flag', 'flags', 'flap', 'flapokym', 'flash', 'flashing', 'flat', 'flaw', 'flbnyqzc', 'flea', 'fledge', 'fleisrgtyk', 'flicker', 'flickering', 'flight', 'floor', 'flow', 'flowchart', 'flush', 'fm', 'fmcxikqz', 'fmeozwng', 'fmp', 'fmw', 'fmxcnwpu', 'fmzdkyqv', 'fn', 'fnqelwpk', 'fnr', 'fntmbpla', 'fo', 'foi', 'folder', 'folgende', 'folgender', 'folk', 'follow', 'following', 'followup', 'follwe', 'font', 'footer', 'forcast', 'force', 'fore', 'foreach', 'forecast', 'forecasting', 'foreign', 'foreseeconndirection', 'foreseedstipgeo', 'foreseeexternalip', 'foreseeglobalmodelassessmt', 'foreseeinternalip', 'foreseemaliciouscomment', 'foreseemaliciousprobability', 'foreseemalprobglobalmodel', 'foreseesrcipgeo', 'forever', 'forge', 'forget', 'forgot', 'form', 'forma', 'format', 'formatheywte', 'formatheywted', 'formatheywting', 'formation', 'former', 'formerly', 'forth', 'fortive', 'forum', 'forw', 'forward', 'forwarded', 'forwarding', 'fothrmijm', 'foun', 'foundry', 'four', 'fourth', 'fox', 'fp', 'fpsf', 'fqdgotvx', 'fqdn', 'fqhlvcxn', 'fqpybgri', 'fqqgqevyvfjbido', 'fr', 'fragmentation', 'framdntye', 'framdntyework', 'framdntywork', 'france', 'franhtyu', 'franhtyufurt', 'franhtyuj', 'franjuz', 'frau', 'fre', 'fredi', 'free', 'freetext', 'freeze', 'freezing', 'freigabe', 'freight', 'freimachen', 'freischalten', 'freitag', 'french', 'frente', 'frequent', 'frequently', 'freundliche', 'freundlichem', 'freundlichen', 'frgtyetij', 'frhr', 'friday', 'friend', 'frmyejbx', 'fro', 'fron', 'front', 'frota', 'frozen', 'frseoupk', 'frsilva', 'frthdyui', 'frustrated', 'frustrating', 'fsn', 'fsp', 'ft', 'ftgvlneh', 'ftnijxup', 'ftp', 'ftsf', 'ftungssteuerung', 'fu', 'fue', 'fueiklyv', 'fuer', 'fuf', 'fufrtal', 'fujitsu', 'fulfill', 'fulfillment', 'full', 'fullness', 'fully', 'fulqgsuutybgywr', 'fumkcsji', 'funcionando', 'funcionar', 'function', 'functionality', 'fund', 'fung', 'funke', 'funktion', 'funktionert', 'funktionieren', 'funktioniert', 'furnace', 'furth', 'furto', 'fuser', 'fusion', 'futur', 'future', 'futureinter', 'fuyaojzpcnnbmf', 'fuydxemo', 'fuyidkbv', 'fvaihgpx', 'fvwhyenp', 'fw', 'fwchqjor', 'fwd', 'fwknxupq', 'fx', 'fxmzkvqo', 'fxnkzaqu', 'fxwjhapo', 'fy', 'fybwjzhx', 'fyedqgzt', 'fygrwuna', 'fyi', 'fylrosuk', 'fynkssc', 'fyoxqgvh', 'fyzceglp', 'fzsdnmrk', 'fzsxgapt', 'fzwxitman', 'gabryltk', 'gabryltka', 'gabryltke', 'gabryltkla', 'gacfhedw', 'gadbpfrz', 'gadisyxr', 'gage', 'gain', 'gaiopkun', 'gajthyana', 'galaxy', 'ganedsght', 'gaop', 'gaotwcfd', 'gap', 'gard', 'garthyhtuy', 'gartryhu', 'gas', 'gastronomy', 'gate', 'gather', 'gaxrulwo', 'gayhtjula', 'gb', 'gbaljypo', 'gbar', 'gbr', 'gbytu', 'gcknzthb', 'gclnfkis', 'gcxvtbrz', 'gd', 'gdgy', 'gdhyrt', 'gdthryd', 'gdw', 'gdxujefz', 'gdylnaue', 'ge', 'gear', 'geb', 'geben', 'gebiet', 'geblockt', 'gebraucht', 'gebucht', 'gebuchte', 'gecko', 'gedruckt', 'geehrte', 'geehrter', 'geengineere', 'geetha', 'gefahren', 'geffen', 'gegen', 'geht', 'gei', 'geitrhybler', 'geklappt', 'gekommen', 'gel', 'geladen', 'geloescht', 'geltendem', 'gen', 'general', 'generally', 'generate', 'generating', 'generator', 'generirtc', 'generirtcfunction', 'genetic', 'genius', 'gentleman', 'genuine', 'geolocation', 'geoyhtrge', 'geoyhurg', 'geplant', 'ger', 'gerade', 'geraumer', 'gerberghty', 'gergryth', 'gergrythg', 'german', 'germany', 'germanytially', 'gerung', 'gerusky', 'gesamte', 'gesch', 'geschlossen', 'gesellschaft', 'gesellschafterin', 'gesendet', 'gesperrt', 'gest', 'gestartet', 'gestern', 'get', 'getassignment', 'getcsvfile', 'gethyoff', 'geuacyltoe', 'gew', 'gezpktrq', 'gf', 'gfeymtql', 'gfjcronyudhakar', 'gflewxmn', 'ghaltiek', 'ghiklyop', 'ghjkzalez', 'ghjvreicj', 'ghkkytu', 'ghost', 'ghtysui', 'gi', 'gia', 'gifpuwtb', 'gigabitethernet', 'gigaset', 'gilbrmuyt', 'gille', 'gineman', 'ginemkl', 'giuliasana', 'give', 'gjbtuwek', 'gjedmfvh', 'gjisfonb', 'gkad', 'gkadx', 'gkcoltsy', 'gkzedilm', 'gl', 'glf', 'glgblehryywasyhj', 'glgbpchyrpdmv', 'glgbwyxnzdyzga', 'glich', 'glimpse', 'glitch', 'global', 'globalace', 'globaleng', 'globalengservice', 'globally', 'globalmodelversion', 'globalproxycorrelationurl', 'globalview', 'glog', 'glogold', 'glovia', 'glue', 'gm', 'gmbh', 'gmhkdsnw', 'gmkiatjs', 'gmlhrtvp', 'gmnhjfbw', 'gmrkisxy', 'gmscovxa', 'gmt', 'gn', 'gnasmtvx', 'gncpezhx', 'gneral', 'gnlcripo', 'go', 'godaddy', 'gofgrthyuetz', 'gogtr', 'gogtyek', 'gogtyekhan', 'gogtyektdgwo', 'gogtyekthyto', 'gokcerthy', 'gomcekzi', 'gomeshthyru', 'gonzale', 'good', 'google', 'goptijdtnsya', 'gordon', 'gorlithy', 'gostaria', 'got', 'gotbumak', 'governance', 'govind', 'govt', 'gowhjtya', 'gowzv', 'gpbfkqeu', 'gpc', 'gpfsfs', 'gpkovbah', 'gprs', 'gpsancnanonfvcb', 'gptmrqzu', 'gpts', 'gqchtedl', 'gqdaikbv', 'gqjcbufx', 'gqueiatx', 'gr', 'grab', 'graceuyt', 'gracia', 'grade', 'grant', 'graph', 'graphic', 'grargtfl', 'grargtzzt', 'graurkart', 'grauw', 'gray', 'grcmqaxd', 'great', 'greatly', 'grechduy', 'greet', 'greeting', 'grergtger', 'grethyg', 'grey', 'grfv', 'grhryueg', 'grid', 'gridgetcsvfile', 'griener', 'grind', 'grinding', 'grir', 'grknswyo', 'grljptsbhzgpbl', 'groet', 'ground', 'group', 'grp', 'grtaoivq', 'gru', 'gruesse', 'grugermany', 'grund', 'grupos', 'gruss', 'gsc', 'gshn', 'gslpdhey', 'gsm', 'gsmzfojw', 'gso', 'gsotqxfi', 'gstdy', 'gt', 'gtbfkisl', 'gtc', 'gte', 'gtehdnyu', 'gtehdnyuerrf', 'gtehdnyushot', 'gthxezqp', 'gthydanp', 'gtxuamif', 'gtz', 'guard', 'gueduel', 'guess', 'guest', 'gufwhdky', 'guhtyke', 'gui', 'guide', 'guldiwmn', 'guprgtta', 'gurhyqsath', 'gurpthy', 'gurt', 'guru', 'gurublxkizmh', 'guruythupyhtyad', 'gus', 'gustaco', 'gustathsvo', 'gustavo', 'guten', 'guvgytniak', 'guy', 'gvderpbx', 'gviwlsrm', 'gvxfymjk', 'gwcvmbhn', 'gwfrzuex', 'gwjibhxm', 'gwptzvxm', 'gxuvbcpr', 'gydtvnlw', 'gyhus', 'gyklresa', 'gyweclbt', 'gzhapcld', 'gzip', 'gzvjtish', 'gzwasqoc', 'ha', 'haajksjp', 'habe', 'haben', 'habit', 'hacker', 'hadfiunr', 'haftende', 'hai', 'half', 'hall', 'halle', 'hallo', 'hamper', 'hana', 'hand', 'handb', 'handelt', 'handheld', 'handle', 'handlereturnstructure', 'handlereturnstructureorreturntableline', 'handling', 'handscanner', 'handset', 'hang', 'hanghdyle', 'hangs', 'hanna', 'hannas', 'hannathry', 'hanx', 'happen', 'happended', 'happening', 'harald', 'hard', 'hardcopy', 'hardkopy', 'hardman', 'hardpoint', 'hardware', 'harman', 'harrfgyibs', 'harrhntyl', 'hartbearbeitung', 'hartstoffe', 'hartwell', 'hash', 'hasta', 'hat', 'hathryrtmut', 'hatryu', 'hatryupsfshytd', 'haug', 'haujtimpton', 'haunm', 'haveing', 'haze', 'hbecskgl', 'hbmwlprq', 'hbwunkts', 'hcbmiqdp', 'hckvpary', 'hcljzivn', 'hcm', 'hcmvudfpzcxcmv', 'hctgfeal', 'hcuixqgj', 'hcytr', 'hd', 'hdd', 'hddwdw', 'hddwtra', 'hdfvbjoe', 'hdjdkt', 'hdjm', 'hdmi', 'hdmwolxq', 'hdswinlo', 'hdt', 'hdtyr', 'hdw', 'hdytrkfiu', 'hdywstbl', 'head', 'header', 'headquarters', 'headset', 'health', 'hear', 'heat', 'heating', 'heavily', 'hebrew', 'hedjdbwlmut', 'hegdergyt', 'hegdthy', 'heghjyder', 'hehr', 'heidi', 'heighjtyich', 'heinrifgtch', 'heizraum', 'helftgyldt', 'helical', 'hell', 'hellej', 'hello', 'hellp', 'help', 'helpdesk', 'helpful', 'helpline', 'helpteam', 'hence', 'henghl', 'hennidgtydhyue', 'henvrkuo', 'heptuizn', 'heptuizns', 'herewith', 'hergestellt', 'herghan', 'herr', 'herren', 'herytur', 'hesitate', 'heu', 'heuristic', 'hex', 'hey', 'hfm', 'hfudpeot', 'hfyujqti', 'hfyzudql', 'hgermany', 'hghtyther', 'hgmxq', 'hgrvubzo', 'hgv', 'hgwofcbx', 'hgygrtui', 'hgyvopct', 'hgywselena', 'hi', 'hiapth', 'hiatchi', 'hidhys', 'hidra', 'hidzlfma', 'hierarchical', 'hierarchy', 'high', 'higher', 'highlight', 'highly', 'higqaepr', 'hilfe', 'himghtmelreich', 'hinge', 'hint', 'hip', 'hipghkinjyt', 'hire', 'hiremath', 'hiring', 'historically', 'history', 'hit', 'hitacni', 'hivumtfz', 'hiyhllt', 'hiyhtull', 'hjbukvcq', 'hkcu', 'hkfipags', 'hkg', 'hkydrfdw', 'hlanwgqj', 'hlcrbuqa', 'hlykecxa', 'hmgwrkzb', 'hmovlkyq', 'hmzfewks', 'hnbetvfk', 'hnlasbe', 'hnlasbed', 'hnorauaperabdlbtc', 'hntl', 'hntubjela', 'hnyeajrw', 'hnynhsth', 'hoavdlwc', 'hodgek', 'hoepftyhum', 'hofgvwel', 'hohgajnn', 'hohlbfgtu', 'hoi', 'hold', 'holder', 'hole', 'holemake', 'holemaking', 'holiday', 'homburg', 'home', 'homepage', 'homwadbs', 'hone', 'honest', 'hong', 'hongkong', 'hook', 'hop', 'hope', 'hopqcvza', 'horeduca', 'horrible', 'hortl', 'horz', 'host', 'hostname', 'hot', 'hotel', 'hotf', 'hoti', 'hotline', 'hotspot', 'hotwlygp', 'hour', 'hourglass', 'hourly', 'house', 'housekeep', 'houtnzdi', 'hover', 'however', 'howfanzi', 'howthrelte', 'hp', 'hpcxnyrq', 'hpormqtx', 'hpqc', 'hq', 'hqap', 'hqbxstoy', 'hqn', 'hqnopr', 'hqntn', 'hqyfebtd', 'hr', 'hra', 'hrb', 'hrer', 'hris', 'hrlwizav', 'hrm', 'hrmann', 'hrodszpl', 'hronovsky', 'hrp', 'hrs', 'hrscc', 'hrss', 'hrssc', 'hrsync', 'hrt', 'hrtbcyzxbvcnrfc', 'hrydjs', 'hs', 'hsbc', 'hsdbdtt', 'hsh', 'hspgxeit', 'hswddwk', 'ht', 'htayhil', 'htiemzsg', 'htm', 'html', 'htnvbwxs', 'htsnaodb', 'http', 'htv', 'hu', 'huang', 'hub', 'hugcadrn', 'huge', 'hugely', 'hughdthe', 'huhuyghe', 'huhuyghes', 'huji', 'human', 'humanity', 'humthyphk', 'hundred', 'hurricane', 'hvjbmdgi', 'hvzlqthr', 'hw', 'hwddwwd', 'hwffiglhkins', 'hwfoqjdu', 'hwvjympt', 'hx', 'hxasnzjc', 'hxgaycze', 'hxgayczear', 'hxgayczecompany', 'hxgayczedistributor', 'hxgayczee', 'hxgayczeed', 'hxgayczeet', 'hxgayczeing', 'hxgayczekurtyar', 'hxgayczemii', 'hxgayczeraum', 'hxlbvjgf', 'hxwtidja', 'hybegvwo', 'hybiaxlk', 'hydluapo', 'hydra', 'hydstheud', 'hyeonthygwon', 'hygxzklauthuchidambaramdnty', 'hyperlink', 'hzmxwdrs', 'hzptilsw', 'hzudxyqb', 'ia', 'iak', 'iam', 'iauqlrjk', 'iba', 'ibm', 'ibtvlfah', 'ic', 'ice', 'iceyusnd', 'ich', 'ici', 'icloud', 'icmp', 'icode', 'icon', 'id', 'ida', 'idb', 'idcx', 'idea', 'idelcia', 'identical', 'identifiable', 'identification', 'identifie', 'identify', 'idf', 'idfhtoqv', 'idg', 'idioma', 'idoc', 'idocs', 'idrizj', 'ids', 'ie', 'iebwchlehryysk', 'iechuoxb', 'iehs', 'ierfgayt', 'iervwjzg', 'ifbg', 'ifblxjmc', 'iforme', 'igkqpndy', 'ignore', 'igurwxhv', 'ihkolepb', 'ihlsmzdn', 'ihnen', 'ihr', 'ihre', 'ihrem', 'ihsepkwz', 'ii', 'iid', 'ijdfnayb', 'ijeqpkrz', 'ijswtdve', 'ijyuvind', 'ik', 'ikupsjhb', 'il', 'ile', 'ileatdatacenter', 'ilfvyodx', 'ilkpqtjh', 'illegal', 'illinois', 'illustrate', 'illustrated', 'iltywzjm', 'ilypdtno', 'image', 'imagens', 'imaje', 'imei', 'imjukbqhe', 'imjwbogq', 'immediate', 'immediateley', 'immediately', 'immediatly', 'immer', 'immex', 'immidiately', 'imp', 'impact', 'impacts', 'impede', 'impedindo', 'imperative', 'implement', 'implementation', 'imply', 'import', 'importa', 'importance', 'important', 'imposible', 'impossible', 'imprimir', 'improperly', 'improve', 'improvement', 'imqgfadb', 'imts', 'imuwhokc', 'imvetgoa', 'imwveudk', 'ina', 'inactive', 'inadvertently', 'inbound', 'inboundio', 'inbox', 'inboxe', 'inc', 'incase', 'incident', 'incl', 'include', 'inco', 'incomig', 'incoming', 'incomme', 'incompatibility', 'incomplete', 'incompletion', 'inconsistent', 'inconvenience', 'inconvenient', 'incorrect', 'incorrectly', 'increase', 'increasingly', 'incredibly', 'ind', 'indaituba', 'index', 'indexing', 'indgic', 'india', 'indicate', 'indicating', 'indication', 'indicative', 'indicator', 'indirect', 'individual', 'indonesia', 'indow', 'indra', 'indrakurtyar', 'industrial', 'inf', 'infact', 'infect', 'infected', 'infection', 'infelizmente', 'info', 'infoblox', 'infomation', 'infonet', 'infopath', 'inform', 'information', 'informationen', 'infortype', 'infos', 'infotype', 'infrastructure', 'ing', 'ingdirect', 'ingresar', 'ingreso', 'inhekdol', 'inin', 'inincident', 'initial', 'initialization', 'initialize', 'initiate', 'initiative', 'inivation', 'injection', 'injectncqulao', 'ink', 'inkjet', 'inlet', 'inlineaction', 'inn', 'inner', 'inplant', 'input', 'inputs', 'inq', 'inquiry', 'insensitive', 'insert', 'insertapps', 'inside', 'insist', 'inspection', 'inspector', 'inspectoreventid', 'inspectorruleid', 'instal', 'instala', 'instalar', 'install', 'installation', 'installed', 'installl', 'instan', 'instance', 'instandsetzung', 'instant', 'instantly', 'instatnt', 'instead', 'instruct', 'instruction', 'instrument', 'instuctrion', 'insufficient', 'insurance', 'insure', 'integrity', 'intel', 'intellectual', 'intelligence', 'intend', 'intepmov', 'inter', 'interaction', 'interactive', 'interco', 'intercom', 'intercompany', 'interface', 'interfacetengigabitethernet', 'interfere', 'intermittent', 'intermittently', 'intern', 'internal', 'internally', 'international', 'internet', 'internetsurvey', 'interns', 'interrogate', 'interrupt', 'interrupted', 'interruption', 'interval', 'intouch', 'intranet', 'intransit', 'intrusion', 'intuitive', 'intune', 'invalid', 'invalidate', 'invalidated', 'inventory', 'inventrory', 'inventrtgoy', 'invest', 'investigat', 'investigate', 'investigation', 'investment', 'investmentantrag', 'investor', 'invisible', 'invitation', 'invite', 'invlaid', 'invoice', 'invoicing', 'invoiuce', 'invoke', 'involve', 'inward', 'inwarehouse', 'inxsupmy', 'io', 'iom', 'ion', 'ioqjgmah', 'ios', 'iowa', 'ip', 'ipad', 'ipbl', 'ipc', 'ipd', 'ipglathybel', 'iphone', 'iphonec', 'iplen', 'iqshzdru', 'iqustfzh', 'ir', 'irefox', 'irfhcgzq', 'irgsthy', 'irreceivedtime', 'irrecular', 'irrespective', 'isensor', 'isensplant', 'isjzcotm', 'iso', 'isp', 'isr', 'israel', 'israey', 'issie', 'issue', 'issues', 'ist', 'isue', 'iszaguwe', 'ita', 'italy', 'itar', 'itau', 'itclukpe', 'itelephony', 'item', 'itemization', 'iten', 'iterator', 'itnakpmc', 'itry', 'itslpwra', 'itylnjqw', 'itype', 'ivbkzcma', 'ivhnpdbu', 'ivnhumzjalakrisyuhnyrtn', 'ivohcdpw', 'ivrgdmao', 'ivrhjmnx', 'iwazgesl', 'iwtvrhnz', 'ix', 'ixahzmvf', 'ixcanwbm', 'ixhlwdgt', 'izbxvary', 'izcwuvgo', 'izgul', 'izmxqfud', 'izohlgcq', 'izwtdnfq', 'ja', 'jabra', 'jacfgtykson', 'jack', 'jacyhky', 'jadqhguy', 'jafgty', 'jagtgarthy', 'jagthyin', 'jam', 'jamgpnqe', 'jamhdtyes', 'jan', 'janhduh', 'janhetgdyu', 'janhytrn', 'jankowski', 'january', 'japan', 'japznrvb', 'jargqpkm', 'jartnine', 'jashtyckie', 'jashyht', 'jathyrsy', 'java', 'javascript', 'javaw', 'jayachandran', 'jayatramdntydba', 'jayhrt', 'jb', 'jbgcvlmf', 'jc', 'jcmxerol', 'jco', 'jcoerpmanager', 'jcoshmbf', 'jctgwmyi', 'jctnelqs', 'jdamieul', 'jdcbiezx', 'jdcbiezxs', 'jdhdw', 'jdlxkygf', 'jdqvuhlr', 'jean', 'jeffrghryey', 'jeffrghryeyrghryey', 'jeffrghryeytyf', 'jeftryhf', 'jeknosml', 'jenfrgryui', 'jenhntyns', 'jerhtyua', 'jertyur', 'jerydwbn', 'jescplcdgaxjzdg', 'jeshyensky', 'jesjnlyenm', 'jesjnlyenmrest', 'jet', 'jetcxpda', 'jetzt', 'jfcrdavy', 'jfhytu', 'jftyff', 'jfwvuzdn', 'jgcsaqzi', 'jgdydqqd', 'jgnxyahz', 'jgqbt', 'jha', 'jhapg', 'jhdythua', 'jhr', 'jhwgydeb', 'jidhewlg', 'jiftg', 'jikyworg', 'jimdghty', 'jin', 'jinf', 'jintana', 'jinxyhdi', 'jion', 'jionmpsf', 'jirecvta', 'jivc', 'jivp', 'jk', 'jkddwkwd', 'jkdwbhgs', 'jkuaslxe', 'jlsvxura', 'jlzsardp', 'jmfvwrek', 'jmkcewds', 'jmusidzr', 'jmxrabzy', 'jnb', 'jncvkrzm', 'jnjxbq', 'joacrhfz', 'job', 'jobs', 'jobuacyltoe', 'jobxpkrg', 'jochegtyhu', 'jochgthen', 'joe', 'joerg', 'jofghan', 'jofghyuach', 'jofgyst', 'joftgost', 'jogt', 'johan', 'johddnthay', 'johghajknn', 'johghajknnes', 'johjkse', 'johthryu', 'johthryugftyson', 'join', 'joiner', 'jojfufn', 'jonnht', 'joothyst', 'jorghge', 'jose', 'josefghph', 'josh', 'jost', 'jp', 'jpaftdul', 'jpecxuty', 'jpeg', 'jpg', 'jpix', 'jpsfikow', 'jpsgeghtyui', 'jpwrfuhk', 'jpy', 'jqeczxtn', 'jquery', 'jre', 'jrhoqdix', 'jrigdbox', 'jrilgbqu', 'jruz', 'jrxtbuqz', 'js', 'jstart', 'jsut', 'jsuyhwssad', 'jsytis', 'jtgmpdcr', 'jtlrpigbhzgpbl', 'jtyhnifer', 'juarez', 'juchaomy', 'judi', 'judthti', 'judthtihty', 'jufskody', 'juhu', 'juksmtho', 'jul', 'julgttie', 'juli', 'july', 'jump', 'june', 'juni', 'junior', 'juniowsrr', 'junk', 'jurten', 'jusfrttin', 'justification', 'jutpdcqf', 'juvfghtla', 'jvpkulxw', 'jvshydix', 'jvtsgmin', 'jvxtfhkg', 'jwddkwor', 'jwnsyzbv', 'jwoiyzfp', 'jwoqbuml', 'jwqyxbzs', 'jwvuasft', 'jwzlebap', 'jxlbzwrp', 'jxphgfmb', 'jywvemun', 'jzakfmhw', 'jzhnkclo', 'kadjuwqama', 'kaghjtra', 'kaguhxwo', 'kahrthyeui', 'kahrthyeuiuiw', 'kahtuithra', 'kambthryes', 'kanchi', 'kanjdye', 'kann', 'kannst', 'kantenverrunden', 'kappel', 'karaffa', 'karagtfma', 'karansb', 'karcgdwswski', 'karghytuthik', 'karghyuen', 'karghyuens', 'karhjuyutk', 'karhtyiio', 'karnataka', 'karno', 'karnos', 'kart', 'kas', 'kashfyujqti', 'kasperskylab', 'kasphryer', 'kassia', 'kassiaryu', 'kata', 'kate', 'kathght', 'kaufsfthyman', 'kaum', 'kawtidthry', 'kb', 'kba', 'kbspjrod', 'kbt', 'kbyivdfz', 'kbysnuim', 'kc', 'kcompany', 'kcudbnrw', 'kd', 'kddok', 'kdeqjncw', 'kds', 'kebogxzp', 'ked', 'keddsdn', 'kedgmiul', 'keehadfvkgaalen', 'keep', 'keeps', 'keghn', 'kegsjdva', 'keheu', 'kehtxprg', 'kein', 'keine', 'keinyujo', 'keith', 'kellkwdy', 'ken', 'kenci', 'kennconnect', 'kennmetal', 'kennwort', 'kenny', 'kentip', 'keshyslsj', 'kesm', 'kesrgtyu', 'kevguind', 'key', 'keybankr', 'keybankrd', 'keyence', 'keyhtyvin', 'keyhuerthi', 'keynes', 'keypad', 'kfdyzexr', 'kfirxjag', 'kfshormi', 'kfwdhrmt', 'kg', 'kgarnzdo', 'kggsmgetstre', 'kghaozew', 'kgvrfwcj', 'kgxmisbj', 'kgyboafv', 'khadfhty', 'khdgd', 'khfgharla', 'khfjzyto', 'khrtyujuine', 'khspqlnj', 'khtml', 'khty', 'ki', 'kick', 'kie', 'kigthuym', 'kijhcwur', 'kime', 'kimli', 'kimtc', 'kimthy', 'kimufghtyry', 'kinawsdv', 'kind', 'kindftye', 'kindly', 'king', 'kingdom', 'kinght', 'kingston', 'kinhytudel', 'kinsella', 'kiosk', 'kirathrydan', 'kirgtyan', 'kirty', 'kirtyle', 'kirvecja', 'kis', 'kishore', 'kit', 'kizsjfpq', 'kjtqxroc', 'kk', 'kkbsm', 'kkc', 'klacwufr', 'klarp', 'kln', 'klonypzr', 'kls', 'km', 'kmc', 'kmfgfr', 'kmscan', 'kmvwxdti', 'kmzucxgq', 'kn', 'knemilvx', 'knepkhsw', 'knethyen', 'knicrhtyt', 'knighdjhtyt', 'knlrgsiv', 'knock', 'knovel', 'know', 'knowledge', 'knowledgebase', 'known', 'knqmscrw', 'knrlepglper', 'knxaipyj', 'ko', 'koahsriq', 'koburvmc', 'koenigsee', 'koiapqbg', 'koiergyvh', 'koithc', 'kok', 'komar', 'kommen', 'kommt', 'konferenzraum', 'kong', 'konica', 'konjdmwq', 'konnte', 'kontakt', 'kontaktieren', 'konto', 'kontrolle', 'konu', 'kopieren', 'kopierer', 'kopqcjdh', 'kothyherr', 'kovaddcth', 'koximpja', 'kpm', 'kpobysnc', 'kpr', 'kpro', 'kpudhygb', 'kq', 'kqelgbis', 'kqiurhbt', 'kr', 'kratzen', 'krbbscfprc', 'krcfhoxj', 'krcscfpry', 'kreghtmph', 'krishnyhda', 'krisyuhnyrt', 'krlszbqo', 'kroschke', 'krthdelly', 'krugew', 'kruse', 'krutnylz', 'kryuisti', 'ks', 'ksb', 'ksdvp', 'ksem', 'ksff', 'ksfs', 'ksgytjqr', 'ksiyurvlir', 'kslocjtaaruthapandian', 'ksp', 'kstdaddaad', 'ksvlowjd', 'ksvqzmre', 'ksxchbaf', 'kt', 'ktghvuwr', 'kthassia', 'kthqwxvb', 'kthvr', 'kthyarg', 'ktr', 'ktthasb', 'kubyhtuaa', 'kudhnyuhnm', 'kuhgtyjvelu', 'kuhyakose', 'kuhyndan', 'kujigalore', 'kullan', 'kuluz', 'kumfgtyar', 'kumghtwar', 'kumtcnwi', 'kundegty', 'kurtyar', 'kutgynka', 'kutnik', 'kuttiadi', 'kuyiomar', 'kuznvase', 'kvetadzo', 'kvp', 'kvrmnuix', 'kvwrbfet', 'kw', 'kwehgxts', 'kwfwdw', 'kwtcyazx', 'kxbifzoh', 'kxmidsga', 'kxvwsatr', 'kyamild', 'kyefsrjc', 'kylfgte', 'kyocera', 'kyswcpei', 'kzishqfu', 'kzpbgvfq', 'kzq', 'la', 'lab', 'label', 'labelwriter', 'labor', 'laboratory', 'lack', 'lacl', 'lacw', 'lady', 'ladybi', 'laeusvjo', 'laffekr', 'lafgseimer', 'lafgturie', 'lagp', 'lagqcompanyo', 'laijuttr', 'laijuttryhr', 'lakhsynrhty', 'lalanne', 'lalthy', 'lan', 'lance', 'land', 'lane', 'lang', 'langsamer', 'language', 'languague', 'langytge', 'lanhuage', 'lansuiwe', 'laode', 'lap', 'lapels', 'lapping', 'laptop', 'laqdwvgo', 'lar', 'large', 'laser', 'laserjet', 'lasplant', 'lassen', 'last', 'lat', 'late', 'lately', 'latency', 'later', 'lathe', 'latin', 'latitude', 'latpop', 'lauacyltoe', 'lauftqmd', 'laufwerk', 'laufwerke', 'laugdghjhlin', 'launch', 'launcher', 'launguage', 'lauredwwden', 'laurent', 'lautet', 'lauthry', 'lautsprecher', 'law', 'lawptzir', 'lax', 'lay', 'layered', 'layout', 'lb', 'lbcqfnie', 'lbdl', 'lbdw', 'lbs', 'lbxugpjw', 'lc', 'lcamiopz', 'lcbq', 'lcitrixerpall', 'lcmnllmnvbscsjb', 'lcoke', 'lcosm', 'lcow', 'lcvl', 'ld', 'ldbsm', 'ldg', 'ldgl', 'ldikdowdfm', 'ldil', 'ldism', 'ldiwsf', 'ldnfgt', 'ldpequhm', 'ldvl', 'le', 'leach', 'lead', 'leader', 'leadership', 'leadin', 'leakage', 'lean', 'learning', 'lease', 'least', 'leave', 'lee', 'leengineere', 'left', 'legal', 'legible', 'legislation', 'legit', 'legitimate', 'legitmate', 'lehhywsmat', 'lehl', 'lehsm', 'leibdrty', 'leider', 'leiter', 'leitung', 'length', 'leo', 'ler', 'les', 'leslie', 'less', 'let', 'letgyo', 'lethre', 'letim', 'letter', 'level', 'leverage', 'lewbzysd', 'lewicki', 'lewis', 'lfal', 'lfel', 'lfml', 'lfmpxbcn', 'lghuiezj', 'lgiovknd', 'lhbsm', 'lhejbwkc', 'lhmxposv', 'lhnw', 'lhol', 'lhqfinglbalfyfc', 'lhqftphfm', 'lhqksbdx', 'lhqksbdxa', 'lhqksbdxaccaaca', 'lhql', 'lhqsid', 'lhqsl', 'lhqsm', 'lhqsmdom', 'lhqwsf', 'lhqwxsf', 'lhqx', 'lhutkpxm', 'li', 'liable', 'lib', 'libarary', 'libcktnm', 'library', 'lic', 'licence', 'license', 'licwu', 'lid', 'lidunfjg', 'lie', 'lieben', 'liefern', 'liefert', 'life', 'light', 'ligsnzur', 'lihy', 'lijsyte', 'like', 'likely', 'lilesfhpk', 'limit', 'limitation', 'limited', 'line', 'lineproto', 'linien', 'link', 'linkage', 'linnemann', 'linnes', 'linz', 'lipfnxsy', 'lisbon', 'lisfgta', 'list', 'listen', 'listener', 'literature', 'little', 'liu', 'liugh', 'liuhyt', 'liuytre', 'live', 'lixwgnto', 'liz', 'lizecierte', 'lizhwdoe', 'ljeakcqf', 'ljpgedia', 'ljtzbdqg', 'ljywncvjdxjpdhl', 'lkufgrhq', 'lkwspqce', 'lkzdden', 'lkzddens', 'lla', 'llv', 'llvw', 'llwlfazo', 'lmcaqfkz', 'lmsl', 'lmuxizht', 'lmwohkbd', 'lmxl', 'lnbdm', 'lndypaqg', 'lnpgjhus', 'lnphmsco', 'lnssm', 'lnsvemxy', 'lo', 'loaction', 'load', 'loaded', 'loader', 'loading', 'loan', 'loaner', 'loc', 'local', 'localhost', 'locallist', 'locally', 'locate', 'locating', 'location', 'locator', 'lock', 'locked', 'lockout', 'locky', 'log', 'logfile', 'logformat', 'logger', 'loggin', 'logging', 'logic', 'logical', 'login', 'logistic', 'logistics', 'logistik', 'logo', 'logoff', 'logon', 'logs', 'logsource', 'logtimestamp', 'loin', 'lokce', 'lombab', 'long', 'longer', 'lonn', 'looge', 'look', 'lookup', 'loop', 'loose', 'loosing', 'loovexfbjy', 'lopgin', 'lortwe', 'lorwsf', 'lose', 'loss', 'lost', 'lot', 'lothryra', 'lotus', 'loud', 'loughn', 'louis', 'love', 'lovsan', 'low', 'lowe', 'lowercase', 'lowercaseurlcorrelation', 'loy', 'lpa', 'lpal', 'lpapr', 'lpas', 'lpaw', 'lpawty', 'lpawxsf', 'lperi', 'lpfzasmv', 'lpgw', 'lpnzjimdghtyy', 'lpoebzsc', 'lpriokwa', 'lqdwjdwd', 'lqjoagzt', 'lqnoifve', 'lriupqct', 'lrrsm', 'lrrw', 'lrupiepen', 'lryturhyyth', 'lsgthhuart', 'lsne', 'lsuepvyx', 'lt', 'ltaballallcompanycm', 'ltaballotcsalesemp', 'ltabthrysallotcsalesman', 'ltcl', 'ltd', 'lte', 'ltfskygw', 'lthyqzns', 'ltig', 'ltige', 'ltigung', 'ltksxmyv', 'ltmoubvy', 'ltnivuhw', 'ltrobe', 'ltu', 'lu', 'luartusa', 'luciano', 'luck', 'luesebrink', 'lughjm', 'lugin', 'luifdst', 'luis', 'luji', 'lumia', 'lunch', 'lunjuw', 'luntu', 'luxembourg', 'lv', 'lvdyrqfc', 'lvidgknc', 'lvlw', 'lwddkqddq', 'lwdwdwdr', 'lwguyibh', 'lwgytuxq', 'lwizucan', 'lwohuizr', 'lxfnwyuv', 'lxfwopyq', 'lxkecjgr', 'lxrponic', 'lxv', 'lxvunpiz', 'lxxldmvslhnvcnr', 'ly', 'lyjoeacv', 'lync', 'lynda', 'lynerwjgthy', 'lyszwcxg', 'lzfhdgapifzbtfv', 'lzspyjki', 'lzvdyouh', 'maaryuyten', 'maastricht', 'mac', 'machen', 'machine', 'macro', 'macros', 'macyhtkey', 'madam', 'madhaw', 'mae', 'mafghyrina', 'mafgtnik', 'magda', 'magdalena', 'mage', 'magento', 'magerjtyhd', 'maghtyion', 'maghyuigie', 'magonza', 'magtyrtijc', 'mahapthysk', 'maharashtra', 'mahcine', 'mahtyurch', 'maier', 'maihtyrhu', 'mail', 'mailbox', 'mailer', 'mailing', 'mails', 'mailserver', 'mailsi', 'mailto', 'main', 'mainly', 'mainswitch', 'maint', 'maintain', 'maintenance', 'mais', 'maitaine', 'majetkm', 'major', 'majority', 'make', 'mal', 'malaysia', 'male', 'malefunktion', 'malfunction', 'malicious', 'maliowbg', 'malware', 'mam', 'mamilujli', 'man', 'manage', 'management', 'managementbe', 'manager', 'managing', 'mandatory', 'mandgtryjuth', 'mandt', 'manger', 'manifest', 'manipulate', 'manipulator', 'manjgtiry', 'manjhyt', 'manjuvghy', 'mankind', 'mann', 'manual', 'manually', 'manuel', 'manuf', 'manufacture', 'manufacturer', 'manufacturing', 'manuten', 'many', 'manyhsu', 'map', 'mapper', 'mapping', 'maquinados', 'march', 'marcom', 'marfhtyio', 'marftgytin', 'margin', 'marjnstyk', 'markhty', 'markhtye', 'markhtyet', 'markhtyete', 'markhtyeting', 'markhtyingre', 'marocm', 'marry', 'martha', 'marthhty', 'marty', 'maryhtutina', 'maschine', 'mask', 'mason', 'masonb', 'mass', 'massage', 'massive', 'maste', 'master', 'mat', 'match', 'matching', 'material', 'materials', 'matghyuthdw', 'matgrp', 'mathe', 'matheywt', 'matheywter', 'matheywtyuews', 'mathgie', 'mathrv', 'mathyida', 'mathyuithihyt', 'matlxjgi', 'maus', 'mavxgqbs', 'mawvszflehbyxt', 'max', 'maximgbilian', 'maximum', 'may', 'maybe', 'mazak', 'mazurjw', 'mb', 'mbb', 'mbiance', 'mbps', 'mbr', 'mbrreporte', 'mbs', 'mbyte', 'mbzevtcx', 'mc', 'mccoy', 'mccoyimgs', 'mcelrnr', 'mcfaullfhry', 'mcfgtydonn', 'mcgatnsl', 'mcgee', 'mcgfrtann', 'mcgwdwxhcmlevt', 'mcgyuouald', 'mchectg', 'mcmtxtwjnbvchv', 'mcnerny', 'mcoswhjuanthila', 'mcsqzlvd', 'md', 'mddwwyleh', 'mdevcqjk', 'mdfcr', 'mdflqwxg', 'mdghayi', 'mdiwjd', 'mdjftxli', 'mdm', 'mdpviqbf', 'mds', 'mdulwthb', 'mdvlkbac', 'mdw', 'mdwydindy', 'mea', 'mean', 'meaning', 'meantime', 'measure', 'measurement', 'measuring', 'mecftgobusa', 'mechanic', 'mechmet', 'med', 'media', 'medial', 'mediante', 'medium', 'meet', 'meeting', 'meetinmg', 'megfgthyhana', 'mehr', 'mehrere', 'mehrfach', 'mehrota', 'mehrotra', 'mehrugshy', 'mein', 'meine', 'meinem', 'meixni', 'melbourne', 'meldung', 'meldungen', 'melerowicz', 'melhduty', 'melisdfysa', 'melthryerj', 'member', 'membership', 'memepr', 'memo', 'memory', 'memotech', 'mensagem', 'mention', 'menu', 'menue', 'mercedes', 'merdivan', 'merely', 'merktc', 'merthayu', 'mertut', 'mesaage', 'mesg', 'mess', 'message', 'messecke', 'messgage', 'messger', 'messmaschine', 'mesz', 'metal', 'metalworke', 'metaplas', 'meter', 'metghyjznk', 'method', 'metric', 'metrics', 'mex', 'mexico', 'mexkspfc', 'mf', 'mfeyouli', 'mffbsf', 'mfg', 'mfp', 'mfyivqes', 'mg', 'mgermanyger', 'mghlisha', 'mghllenbecfnfk', 'mgjxwept', 'mgmt', 'mgndhtillen', 'mgr', 'mgvpabsj', 'mgvpoyqd', 'mhasttdd', 'mhdyhtya', 'mhfjudahdyue', 'mhtyike', 'mi', 'mic', 'mich', 'michbhuael', 'micheyi', 'michghytuael', 'michigan', 'michjnfyele', 'microphone', 'microphones', 'microscope', 'microsoft', 'mictbdhryhle', 'middle', 'middleware', 'miepcwzf', 'might', 'migo', 'migrate', 'migration', 'mii', 'miiadmin', 'miioperatordev', 'miioperatorqa', 'mijhmijhmile', 'mikdhyu', 'mikhghytr', 'mikrofon', 'milan', 'milano', 'mileage', 'mill', 'milli', 'milsytr', 'miltgntyuon', 'milton', 'milyhyakrp', 'min', 'mine', 'mini', 'minimize', 'minimum', 'minitab', 'minnesotta', 'minolta', 'mins', 'mint', 'minus', 'minute', 'miowvyrs', 'mir', 'miro', 'mirror', 'misc', 'misconfiguration', 'misconfigure', 'mismatch', 'misplace', 'misplaced', 'miss', 'missing', 'missrouting', 'mistake', 'misuhet', 'mit', 'mitarbeiter', 'mitarbeiterin', 'mitctdrh', 'mitctdrhb', 'mitgckqf', 'mithyke', 'mitigation', 'mitteilung', 'mittwoch', 'mityhuch', 'mix', 'mizpywld', 'mizumoto', 'mjudivse', 'mjvfxnka', 'mkdfetuq', 'mkjubdti', 'mksysbalv', 'mkt', 'mktgen', 'mkuhtyhui', 'mkynswqd', 'mldufqov', 'mm', 'mmaster', 'mmbe', 'mms', 'mnakehrf', 'mngr', 'mnktdsjq', 'mnlvhtug', 'mnr', 'mo', 'mobaidfx', 'mobil', 'mobile', 'mobility', 'mobilteil', 'mobiltelefon', 'moblews', 'mobley', 'mod', 'mode', 'model', 'modeli', 'modeling', 'modelversion', 'modern', 'modific', 'modification', 'modify', 'modul', 'module', 'modules', 'moedyanvess', 'moeglich', 'mogtrevn', 'mohgrtyan', 'mohnrysu', 'moin', 'mojfbwds', 'mokolthrla', 'moment', 'momentarily', 'momitor', 'mon', 'monatswechsel', 'monday', 'mondhrbaz', 'money', 'monitor', 'monitoring', 'monitorixepyfbga', 'montag', 'month', 'monthly', 'monthy', 'montitor', 'moranm', 'moreover', 'morgens', 'morhyerw', 'morning', 'moryctrhbkm', 'mostly', 'motherbankrd', 'moto', 'motor', 'motorola', 'mount', 'mountpoint', 'mouse', 'mov', 'move', 'moved', 'movement', 'moviment', 'moxnqszg', 'mozi', 'mozill', 'mozilla', 'mp', 'mpatible', 'mpihysnw', 'mpls', 'mpvhakdq', 'mqetjxwp', 'mqhrvjkd', 'mqjdyizg', 'mqlsfkre', 'mr', 'mrp', 'mrptype', 'mrqwdtil', 'mrs', 'mruzqhac', 'ms', 'msblast', 'msc', 'mscrm', 'msd', 'msdotnet', 'msfc', 'msg', 'mshost', 'msid', 'msie', 'msoffice', 'mss', 'mstipsolution', 'mswineventlog', 'mtb', 'mtbelengineering', 'mtbu', 'mtd', 'mtdesign', 'mtg', 'mthyike', 'mthyn', 'mthyuleng', 'mti', 'mtlghwex', 'mu', 'muapxkns', 'much', 'muejkipler', 'muggftyali', 'muiqteyf', 'mukghyuhea', 'mulhylen', 'mullthyed', 'multidetail', 'multinational', 'multipart', 'multiple', 'munnangi', 'murakt', 'music', 'muss', 'must', 'muthdyrta', 'mutoralkv', 'mutual', 'muywpnof', 'mvhcoqed', 'mvunqihf', 'mvwduljx', 'mw', 'mwdddlleh', 'mwdjuli', 'mwdlkloran', 'mwetuhqf', 'mwgdenbs', 'mws', 'mwst', 'mwtrouyl', 'mwtvondq', 'mwuateyx', 'mx', 'mxjcnqfs', 'mxwibrtg', 'mycompany', 'myhrt', 'myhzrtsi', 'mykcourx', 'mynfoicj', 'mys', 'mysli', 'myslidz', 'mysterious', 'mzyejqvd', 'na', 'naa', 'nabjwvtd', 'nach', 'nachdem', 'nachi', 'nachricht', 'nachstehenden', 'nad', 'nafghyncy', 'nagdyiyst', 'nagfghtyudra', 'nahumo', 'nahytu', 'nahytua', 'naivebayes', 'najuty', 'nakagtwsgs', 'name', 'namen', 'naming', 'nanrfakurtyar', 'narefgttndra', 'narthdyhy', 'naruedlk', 'nascimento', 'nasftgcijj', 'naslrwdb', 'nat', 'nate', 'nathyresh', 'nathyuasha', 'nature', 'natytse', 'navbrtheen', 'navdgtya', 'naveuythen', 'navigation', 'nawab', 'nawkpdtx', 'nazarr', 'nb', 'nbfyczqr', 'nbgvyqac', 'nbhoxqpe', 'nbr', 'nc', 'ncasrpvx', 'ncoded', 'ncoileu', 'nd', 'nda', 'nde', 'nderen', 'nderildi', 'ndern', 'nderung', 'ndig', 'ndigung', 'ndjorwab', 'ndkrcxjb', 'ndobtzpw', 'ndtfvple', 'ndthwedwys', 'ne', 'neal', 'nealxjbc', 'near', 'nearby', 'nearing', 'necessarily', 'necessary', 'nection', 'ned', 'nedeni', 'nederland', 'nee', 'need', 'needful', 'needs', 'neerthyu', 'negative', 'negativeevaluationthreshold', 'negatively', 'nehtjuavathi', 'nein', 'neither', 'nesbfirjeerabhadrappa', 'net', 'netacuity', 'netbio', 'netbios', 'netch', 'netframdntyework', 'netperfmon', 'netscape', 'nett', 'netweaver', 'netwo', 'network', 'networking', 'netz', 'netzteil', 'netzwerk', 'netzwerkkabel', 'netzwerkverbindung', 'neu', 'neue', 'neuen', 'neues', 'never', 'nevertheless', 'nevinmw', 'nevins', 'new', 'newducsl', 'newflv', 'newly', 'news', 'newweaver', 'next', 'nextgen', 'nfayqjhg', 'nfc', 'nfdtriwx', 'nfe', 'nfsbackup', 'nftgyair', 'nfybpxdg', 'ng', 'ngen', 'nger', 'ngerungskabel', 'ngfedxrp', 'nginx', 'ngkcdjye', 'ngliche', 'ngm', 'ngprt', 'ngt', 'ngten', 'ngth', 'ngtr', 'nguqityl', 'ngvwoukp', 'ngyht', 'nhfrbxek', 'nhgvmqdl', 'nia', 'nibaotpy', 'nicdhylas', 'nice', 'nicht', 'nichts', 'nicolmghyu', 'nicrhty', 'nictafvwlpz', 'nieconn', 'nieghjyukea', 'night', 'nightly', 'nightmare', 'nigktly', 'nihktgsh', 'nihtykki', 'nijdaukz', 'nikam', 'nikitha', 'nikszpeu', 'nikulatrhdy', 'nil', 'nimmt', 'nipt', 'niptbwdq', 'nivqoxyt', 'nizholae', 'njdrcagt', 'njhaqket', 'njpwxmdi', 'nk', 'nkademwy', 'nkiopevt', 'nkjtoxwv', 'nkqafhod', 'nkthumgf', 'nld', 'nlich', 'nliche', 'nlig', 'nmpworvu', 'nmywsqrg', 'nmyzehow', 'nmzfdlar', 'nnen', 'nnlein', 'no', 'nobody', 'nobook', 'noc', 'noch', 'nocpyxaz', 'node', 'noggtyuerp', 'nogo', 'nogrfadw', 'nogui', 'noi', 'noise', 'nologin', 'nom', 'non', 'none', 'noon', 'nop', 'nor', 'nord', 'noris', 'normal', 'normally', 'north', 'northgate', 'noscwdpm', 'not', 'nota', 'notch', 'note', 'notebook', 'notepad', 'nothing', 'notic', 'notice', 'notification', 'notify', 'notion', 'notwendig', 'notworking', 'nouveau', 'nov', 'nova', 'novamente', 'november', 'nowxjztk', 'npc', 'npgxuzeq', 'npmzxbek', 'npr', 'nqclatbw', 'nqepkugo', 'nr', 'nrbcqwgj', 'nrbgctwm', 'nrehuqpa', 'nrlfhbmu', 'nrzykspt', 'nsdwd', 'nsu', 'nsyapewg', 'nt', 'nter', 'ntfxgpms', 'ntgdsehl', 'nthing', 'nthryitin', 'nti', 'ntner', 'ntqkuocz', 'ntteam', 'ntydihzo', 'nuerthytzg', 'null', 'num', 'number', 'numeric', 'numerirtc', 'numerirtcal', 'numerous', 'nummer', 'nunber', 'nur', 'nutzung', 'nv', 'nvajphfm', 'nvawmlch', 'nvihmbwc', 'nvjyhizu', 'nvodbrfluppasadabasavaraj', 'nvyjtmca', 'nwcobvpl', 'nwfodmhc', 'nwfoucba', 'nwgcbfdt', 'nwqktzlx', 'nwtehsyx', 'nwwiebler', 'nx', 'nxa', 'nxd', 'nxjivlmr', 'nxjvzcta', 'nxloukai', 'ny', 'nyifqpmv', 'nyrjkctu', 'nythug', 'nyzxjwud', 'nz', 'nzuofeam', 'oa', 'oabdfcnk', 'oahmgpfy', 'ob', 'obanjrhg', 'obdphylz', 'oben', 'obj', 'object', 'objmod', 'oblghuyf', 'obqridjk', 'obr', 'obrfunctioneventqueue', 'observation', 'observe', 'observed', 'observing', 'obsolete', 'obtain', 'obuwfnkm', 'obviously', 'obvrxtya', 'obvyknzx', 'oc', 'occ', 'occasion', 'occasional', 'occationally', 'occur', 'occured', 'occurence', 'occurred', 'occurrence', 'och', 'ockthiyj', 'ocsnugeh', 'oct', 'october', 'octophon', 'odbc', 'odd', 'oded', 'oder', 'odo', 'odwfhmze', 'oe', 'oemcold', 'oevyhtdx', 'offenlegung', 'offer', 'office', 'officer', 'official', 'offinance', 'offline', 'often', 'ofuhdesi', 'ogabwxzv', 'ogadikxv', 'ogrhivnm', 'oh', 'ohio', 'ohljvzpn', 'ohne', 'oikhfqyl', 'oinqckds', 'oirmgqcs', 'oiykfzlr', 'ojdukgzc', 'ojflyruq', 'ojgrpafb', 'ojtmnpxc', 'ok', 'okay', 'okhyipgr', 'oktober', 'olckhmvx', 'old', 'olghiveii', 'olhryhira', 'olibercsu', 'olivesadia', 'olmwqzpu', 'olovxcdeira', 'olthyivectr', 'olvidley', 'olympus', 'omf', 'omforiginalsexport', 'omfvxjpw', 'omiwzbue', 'omleknjd', 'omokam', 'ompeztak', 'omufjcxr', 'onbankrding', 'oncidblt', 'one', 'oneteam', 'onfiirm', 'ongoing', 'onjzqptl', 'online', 'onsite', 'ontario', 'ontent', 'onto', 'ontology', 'ontologyid', 'ontologystring', 'onukdesq', 'oon', 'ooo', 'oop', 'ooshstyizen', 'op', 'ope', 'open', 'opening', 'openne', 'openorderbook', 'openvas', 'opera', 'operate', 'operating', 'operation', 'operational', 'operator', 'opetion', 'opeyctrhbkm', 'opfigqramdntyatically', 'opkqwevj', 'oportunitie', 'oppening', 'oppo', 'opportstorage', 'opportunity', 'opposite', 'oppurtunitie', 'oprbatch', 'oprn', 'opt', 'optic', 'optical', 'optimization', 'option', 'optional', 'optiplex', 'opundxsk', 'opus', 'oqxdecus', 'ora', 'oraarch', 'oracle', 'orange', 'orde', 'order', 'orders', 'ordinary', 'ordinate', 'ordner', 'ordnerzugriff', 'orelikon', 'orelli', 'org', 'organisation', 'organise', 'organization', 'organizational', 'organizer', 'orgs', 'orientation', 'origin', 'original', 'originally', 'orshop', 'os', 'oscar', 'oss', 'ost', 'osterwalder', 'ot', 'otc', 'otd', 'otherwise', 'othybin', 'othyoiz', 'ou', 'ouaepwnr', 'oulook', 'oumeaxcz', 'outage', 'outbound', 'outbox', 'outbreak', 'outdate', 'outdated', 'outgoing', 'outil', 'outlet', 'outllok', 'outlock', 'outloo', 'outloock', 'outlook', 'outloook', 'outloot', 'outook', 'output', 'outrlook', 'outside', 'outsource', 'outsoure', 'outstanding', 'outubro', 'ouutlook', 'overall', 'overload', 'overpay', 'override', 'overview', 'overwhelm', 'overwritten', 'ovuweygj', 'ovuxmolouvsvcb', 'owa', 'owe', 'owenghyga', 'owenssdcl', 'owhuxbnf', 'owjduxai', 'owner', 'ownership', 'owqplduj', 'owupktcg', 'owwddwens', 'oxlqvika', 'oxrkfpbz', 'oxvakgcl', 'oypnxftq', 'oyunatye', 'ozhnjyef', 'oziflwma', 'ozphysqw', 'pa', 'paasword', 'pacific', 'pack', 'package', 'packet', 'pacote', 'pacvbetl', 'pad', 'page', 'pagthyuathy', 'pain', 'paint', 'pair', 'pak', 'palff', 'palghjmal', 'pallutyr', 'palo', 'palyer', 'pam', 'pamxszek', 'pan', 'pande', 'pandethrypv', 'pane', 'paneer', 'panel', 'panelfgt', 'panghyiraj', 'panjkytr', 'paper', 'papi', 'papierstau', 'para', 'paralegal', 'paramdntyeter', 'parameter', 'parent', 'parkeyhrt', 'parrfgyksm', 'part', 'parthyrubhji', 'parti', 'partial', 'partially', 'partials', 'participant', 'participate', 'particular', 'partir', 'partly', 'partner', 'party', 'pasgryo', 'pasgryowski', 'pass', 'passiep', 'passive', 'passoword', 'passowrd', 'passw', 'passward', 'password', 'passwordmanage', 'passwordmanager', 'passwordproblem', 'passwords', 'passwort', 'past', 'paste', 'pasue', 'pasword', 'patch', 'patching', 'patent', 'paternoster', 'path', 'pathuick', 'patience', 'patino', 'patirjy', 'patrcja', 'pattghyuy', 'pause', 'pavan', 'pax', 'pay', 'payable', 'paycheck', 'payload', 'paymant', 'payment', 'payout', 'payroll', 'payslip', 'paystub', 'payt', 'pbx', 'pbxqtcek', 'pc', 'pcap', 'pcd', 'pcl', 'pcqobjnd', 'pcqobjndadditional', 'pcs', 'pdf', 'pdfmailer', 'pdlc', 'pds', 'pdu', 'pdujfybc', 'pdv', 'pe', 'peathryucoj', 'pedxruyf', 'peer', 'peghyurozich', 'peilerk', 'pen', 'pende', 'penn', 'pennsylvania', 'people', 'per', 'percent', 'percentage', 'pereira', 'perfectly', 'perform', 'performance', 'perhaps', 'period', 'periodic', 'periodically', 'peripheral', 'permanent', 'permanently', 'permission', 'permit', 'permition', 'pernr', 'perpsrglovia', 'perpsrpsad', 'perry', 'persist', 'persistence', 'persit', 'person', 'personal', 'personally', 'personalnr', 'personel', 'personen', 'personnel', 'pesonal', 'pesylifc', 'petgvwch', 'pethrywr', 'pethrywrs', 'pethrywrsburg', 'petljhxi', 'petqkjra', 'petrghada', 'petrhyr', 'pevokgiu', 'pez', 'pf', 'pfad', 'pfgia', 'pfgyhtu', 'pfjwinbg', 'pfner', 'pfneutkg', 'pfnmjsok', 'pfxwuvce', 'pfzxecbo', 'pgcmwqze', 'pghjkanijkraj', 'pgi', 'pgid', 'ph', 'phase', 'phd', 'phil', 'philadelph', 'philipp', 'phillpd', 'phishe', 'phishing', 'phjencfg', 'phksfqxe', 'phlpiops', 'phone', 'photo', 'php', 'phpinfo', 'phr', 'phufsav', 'phvkowml', 'phvwitud', 'phwdxqev', 'physical', 'physically', 'pi', 'pic', 'pichayapuk', 'picjthkd', 'pick', 'picking', 'picture', 'piece', 'pieza', 'pifyudbo', 'pihddltzr', 'pildladjadga', 'pilot', 'piltzrnj', 'pin', 'ping', 'pinging', 'pinkow', 'pintfgtyo', 'pinto', 'pintoddsa', 'piper', 'pipfhypeu', 'pirce', 'pitcure', 'pivot', 'pix', 'pjdhfitman', 'pjl', 'pjwvdiuz', 'pjxclyhs', 'pk', 'pkaegicn', 'pkinmjqs', 'pkj', 'pkjhmfgc', 'pkmyrdga', 'pktcqbxu', 'pl', 'pla', 'place', 'placement', 'pladjmxt', 'plaese', 'plaghynilhas', 'plain', 'plam', 'plan', 'planck', 'planet', 'planned', 'planner', 'planning', 'plant', 'plantronic', 'plase', 'plate', 'platform', 'platz', 'plaunyud', 'play', 'player', 'plc', 'pldqbhtn', 'please', 'plesae', 'plese', 'plm', 'plmfile', 'plnvcwuq', 'ploease', 'plot', 'pls', 'plsseald', 'pltndoab', 'plug', 'plugged', 'plugin', 'plugins', 'plus', 'pluytd', 'plvnuxmril', 'plvnuxmrnoj', 'plvnuxmrterial', 'plvnuxmry', 'pm', 'pmgzjikq', 'pmqansex', 'pmr', 'pmw', 'pn', 'pnabslgh', 'png', 'pngufmvq', 'pnp', 'pntp', 'po', 'pobleme', 'pocxqtrl', 'poezmwny', 'pofgtzdravem', 'pogredrty', 'point', 'pol', 'poland', 'policy', 'poll', 'pollaurid', 'pollaurido', 'poloidgthyl', 'poloisky', 'polycom', 'poncacity', 'pond', 'pone', 'poor', 'pop', 'popularity', 'populate', 'populating', 'popup', 'por', 'port', 'portable', 'portal', 'portelance', 'porteta', 'portfolio', 'portion', 'portugal', 'portuguese', 'poruxnwb', 'porwrloisky', 'pos', 'pose', 'position', 'positionen', 'positive', 'positiveevaluationthreshold', 'posrt', 'posrte', 'poss', 'possble', 'possibilite', 'possibility', 'possible', 'possibly', 'post', 'postbus', 'poste', 'posting', 'potential', 'potentially', 'potm', 'potmrkxy', 'potx', 'pound', 'pour', 'povich', 'povictcfgt', 'povirttch', 'powder', 'power', 'powercor', 'powerpoint', 'powersave', 'pozdrsavom', 'pozna', 'pp', 'ppam', 'ppc', 'ppm', 'ppsm', 'ppsx', 'ppt', 'pptm', 'pptx', 'pqdjtzin', 'pqnteriv', 'pqwehmzgagannathan', 'pr', 'practice', 'praddgtip', 'pradtheyp', 'pradyhtueep', 'pragtyhusa', 'pragtyhusas', 'praise', 'prakaythsh', 'prarthyr', 'prarttsagj', 'prasath', 'prathryep', 'pratma', 'prdord', 'pre', 'precall', 'precimat', 'precision', 'preeco', 'prefer', 'preferably', 'prefetch', 'prelim', 'preparation', 'prepare', 'preparedness', 'presence', 'present', 'presentation', 'presenter', 'preserve', 'president', 'press', 'presse', 'pressure', 'presume', 'prevalence', 'prevent', 'prevention', 'preview', 'previous', 'previously', 'prgewfly', 'prgthyuulla', 'prgxwzco', 'price', 'pricing', 'priflhtret', 'prim', 'primarily', 'primary', 'print', 'printer', 'printerscreen', 'printing', 'printout', 'printscreen', 'prior', 'prioritise', 'prioritize', 'priority', 'prir', 'prishry', 'priter', 'prithivrtyaj', 'private', 'privilage', 'privilege', 'privileged', 'pro', 'proactive', 'probable', 'probably', 'probe', 'proben', 'probieren', 'proble', 'problem', 'problematic', 'probleme', 'problme', 'proc', 'procache', 'proce', 'procedure', 'proceed', 'proceeding', 'procenter', 'process', 'processing', 'processor', 'procte', 'proctected', 'procurement', 'prod', 'prodn', 'produce', 'product', 'productio', 'production', 'productive', 'productivity', 'productly', 'productmanagement', 'produkt', 'produktion', 'prof', 'professional', 'profile', 'profit', 'profitability', 'proforma', 'proglovia', 'program', 'programdnty', 'programdntya', 'programdntym', 'programdntyme', 'programdntymer', 'programdntys', 'progress', 'prohgtyarb', 'prohibit', 'proint', 'project', 'projection', 'projector', 'projekt', 'projekte', 'promote', 'promotion', 'prompt', 'prompting', 'prompts', 'proof', 'proofreading', 'propagate', 'propagation', 'proper', 'properly', 'property', 'proplem', 'proposal', 'propose', 'prospect', 'protect', 'protection', 'protel', 'proto', 'protocol', 'prove', 'provide', 'provider', 'provigjtyswkb', 'provision', 'proxy', 'proygkjt', 'prpf', 'prqmp', 'prs', 'prst', 'prt', 'prtgghjk', 'prtgn', 'prtgt', 'prtikusy', 'prtoplant', 'prtor', 'prtoru', 'prtpu', 'prtqc', 'prtqi', 'prtqv', 'prtqx', 'prtqz', 'prtsid', 'pruchase', 'prussian', 'prwiqjto', 'prye', 'przcxbml', 'przndfbo', 'ps', 'pse', 'psf', 'psfshytd', 'psid', 'pssword', 'pstn', 'pt', 'ptczqbdw', 'pte', 'pthsqroz', 'pthyu', 'ptirhcwv', 'ptljghyk', 'ptmjvysi', 'ptmzsbhk', 'ptsbhzgpblcv', 'ptuqhrwk', 'ptygkvzl', 'ptyzxscl', 'pu', 'public', 'publication', 'publik', 'publish', 'pubreport', 'puedo', 'pughjuvirl', 'pull', 'pulverleitstand', 'pulvermetalogy', 'pumjbcna', 'punch', 'pur', 'purartnpn', 'purch', 'purchaise', 'purchase', 'purchasing', 'purchasingupstreamsso', 'purple', 'purpose', 'purrqs', 'purvi', 'push', 'pushixepyfbga', 'put', 'putyrh', 'puxiomgy', 'puxsvfwr', 'pvbomqht', 'pvd', 'pvimkcfw', 'pvjdtrya', 'pw', 'pwd', 'pweaver', 'pwrhmc', 'pws', 'px', 'pxslorbe', 'pxvjczdt', 'py', 'pyeothbl', 'pyhuule', 'pyua', 'pyx', 'pz', 'pzcmv', 'pzjelyxg', 'qa', 'qad', 'qaeicrkz', 'qamyesuv', 'qaohugxw', 'qasdhyzm', 'qasouhlc', 'qauighdpchine', 'qauighdplicious', 'qauighdpnager', 'qauighdpss', 'qavdrpfu', 'qbgclmit', 'qbjmoihg', 'qbpafrsx', 'qbsmonwv', 'qc', 'qcjevayr', 'qcow', 'qcxivzag', 'qdbfemro', 'qdxyifhj', 'qdztknml', 'qekdgaim', 'qeue', 'qfcxbpht', 'qfrntose', 'qfunricw', 'qfwijzbd', 'qgilmtyc', 'qgrbnjiu', 'qgtxjsdc', 'qgwypesz', 'qgxrptnf', 'qhjkxoyw', 'qhtvlrxe', 'qhyoiwls', 'qidgvtwa', 'qieagkos', 'qieswrfu', 'qikvnjzc', 'qiwhfkdv', 'qiyujevw', 'qjeymnzs', 'qjgnkhso', 'qjhitbcr', 'qkgnwxto', 'qkmvosen', 'qkoipbzn', 'qkspyrdm', 'qkspyrdms', 'qksrtvzb', 'qlhmawgi', 'qlzgbjck', 'qm', 'qmglkaru', 'qmsoft', 'qngschtz', 'qnigujek', 'qnxfegjw', 'qnxhoryg', 'qohfjpna', 'qolrvbip', 'qoxvpbam', 'qp', 'qpixeudn', 'qs', 'qskwgjym', 'qsmrwvle', 'qsoxltny', 'qspdztiw', 'qt', 'qty', 'quadra', 'qualify', 'qualit', 'quality', 'qualitycontrol', 'qualsys', 'qualtiy', 'qualys', 'quando', 'quantety', 'quantify', 'quantity', 'quanttiy', 'quantum', 'quaraintine', 'quarantine', 'quarter', 'quarterly', 'quaterly', 'quattro', 'que', 'quer', 'querrie', 'query', 'question', 'queue', 'queuing', 'quick', 'quickly', 'quit', 'quite', 'quota', 'quotation', 'quote', 'quotes', 'qux', 'qv', 'qvbutayx', 'qvhixotw', 'qvncizuf', 'qvtaykbg', 'qwg', 'qwghlvdx', 'qwijaspo', 'qwsjptlo', 'qwvpgayb', 'qwynjdbk', 'qxhdcnmj', 'qycgdfhz', 'qyinrmaf', 'qzhgdoua', 'qzkyugce', 'qznjshwm', 'rabbit', 'rabhtui', 'rabhtuikurtyar', 'rabin', 'rabkypet', 'rack', 'rad', 'radgthika', 'raflghneib', 'rage', 'raghfhgh', 'raghjkavhjkdra', 'raghu', 'raghyvhdra', 'ragsbdhryu', 'rahmen', 'rahymos', 'rai', 'raid', 'raifstow', 'railgnfb', 'raise', 'raju', 'rajy', 'rajyutyi', 'rak', 'rakthyesh', 'ralf', 'ralfteimp', 'ramdnty', 'ramdntya', 'ramdntyassthywamy', 'ramdntyfon', 'ramdntygy', 'ramdntyification', 'ramdntysey', 'ramdntythanjesh', 'ramdntythanjeshkurtyar', 'ran', 'random', 'randomly', 'randstad', 'range', 'rangini', 'ranjhruy', 'ranlpbmw', 'ransomware', 'rao', 'raonoke', 'raosetuv', 'raouf', 'rapid', 'rappel', 'rar', 'rarily', 'rarty', 'rate', 'rather', 'raum', 'raus', 'ravhdyui', 'raw', 'ray', 'rayhtuorv', 'rb', 'rbmfhiox', 'rbmosifh', 'rbozivdq', 'rc', 'rcf', 'rckfthy', 'rclqfpgt', 'rcp', 'rcpt', 'rcwpvkyb', 'rd', 'rddept', 'rden', 'rder', 'rdig', 'rdp', 'rds', 'rdxzgpej', 'rdyrty', 'reach', 'reachable', 'react', 'reactivate', 'reactivation', 'reactive', 'read', 'readd', 'readde', 'reader', 'reading', 'ready', 'real', 'reality', 'realize', 'reallocate', 'really', 'realpresence', 'realtek', 'reason', 'reassign', 'reassignment', 'reatle', 'reattache', 'rebate', 'reboot', 'rebuild', 'rec', 'recall', 'recebida', 'receipt', 'receive', 'received', 'receiver', 'receiving', 'receivng', 'recent', 'recently', 'recertification', 'recheck', 'rechner', 'rechnern', 'recht', 'recibo', 'recieve', 'reciever', 'recipient', 'recive', 'recode', 'recognition', 'recognize', 'recommend', 'recommit', 'reconciliation', 'recondition', 'reconditioning', 'reconfigure', 'reconnaissance', 'reconnect', 'reconnecte', 'record', 'recording', 'recover', 'recovery', 'recreate', 'recruit', 'recruiting', 'recs', 'recsynqt', 'rectify', 'recur', 'recurrent', 'red', 'reddakv', 'reddatrhykv', 'reddfgymos', 'reddy', 'rede', 'redo', 'redytudy', 'reeive', 'reenable', 'reeset', 'ref', 'refer', 'reference', 'referenced', 'referenceerror', 'refererproxycorrelationurl', 'refinery', 'reflect', 'refrence', 'refresh', 'refreshing', 'refuse', 'reg', 'regard', 'regardless', 'regelungen', 'regen', 'reghythicsa', 'region', 'regional', 'register', 'registergerirtcht', 'registration', 'registry', 'regster', 'regular', 'regularly', 'rehtyulds', 'reiceve', 'reichenberg', 'reichlhdyl', 'reimage', 'reimbursement', 'reinaldo', 'reincker', 'reinhard', 'reinstall', 'reinstallation', 'reinstate', 'reisekosten', 'reisekostenabrechnungen', 'reissue', 'reject', 'rekmqxfn', 'rekwlqmu', 'relase', 'relate', 'related', 'relation', 'relationship', 'relatively', 'relaunche', 'relay', 'relazed', 'release', 'relese', 'relevant', 'reliability', 'reliable', 'relly', 'relocate', 'remain', 'remappe', 'remediate', 'remedie', 'remedy', 'remember', 'remfg', 'remind', 'reminder', 'remote', 'remotely', 'remove', 'removed', 'ren', 'rename', 'renew', 'renewal', 'renytrner', 'reoccurre', 'reopen', 'rep', 'repair', 'reparar', 'reparo', 'repeat', 'repeatedly', 'replace', 'replacement', 'replay', 'replicate', 'replication', 'reply', 'reponde', 'report', 'reporting', 'reportncqulao', 'repository', 'repoter', 'representative', 'reprint', 'reproduction', 'reprogramdntymieren', 'reprot', 'republic', 'republish', 'reputation', 'reputational', 'repyzajo', 'req', 'requena', 'request', 'requester', 'requestor', 'require', 'requirement', 'requisition', 'requistion', 'requite', 'requste', 'rer', 'reroute', 'rerouting', 'rerun', 'res', 'resale', 'reschedule', 'research', 'researcher', 'reseat', 'reselect', 'resend', 'resending', 'reserve', 'reset', 'resetfor', 'reside', 'resign', 'resignation', 'reso', 'resolution', 'resolve', 'resource', 'resp', 'respect', 'respective', 'respectively', 'resplve', 'respond', 'responding', 'response', 'responsibility', 'responsible', 'responsive', 'resset', 'rest', 'restare', 'restart', 'restoration', 'restore', 'restricting', 'restriction', 'result', 'resultado', 'resume', 'retain', 'retention', 'rethtyuzkd', 'retire', 'retrieval', 'retrieve', 'retroactively', 'retry', 'return', 'reuwibpt', 'rev', 'revenue', 'reversal', 'reverse', 'revert', 'review', 'revilla', 'revisar', 'revise', 'revocation', 'reward', 'reyshakw', 'rfa', 'rfc', 'rfcserver', 'rfgrhtdy', 'rfid', 'rfumsv', 'rfvchzmp', 'rfvmeyho', 'rfwlsoej', 'rgazclmi', 'rgds', 'rghkiriuyte', 'rgpvdhcm', 'rgrtrs', 'rgtry', 'rgtsm', 'rgtw', 'rgtyob', 'rhaycqjg', 'rhbsawmf', 'rhgteini', 'rhoade', 'rhozsfty', 'rhquvzfm', 'ribbon', 'ricagthyr', 'richoscan', 'richthammer', 'richtig', 'richtige', 'rick', 'rickjdt', 'ricoh', 'rieqbtnp', 'riess', 'right', 'rightly', 'rights', 'ring', 'ringtone', 'rios', 'ripple', 'riqmdnzs', 'risk', 'riss', 'rita', 'riuvxda', 'rj', 'rjc', 'rjeyfxlg', 'rjlziysd', 'rjodlbcf', 'rjsulvat', 'rjtnlocs', 'rk', 'rkdwohas', 'rkupnshb', 'rkyjnbqh', 'rl', 'rlgmiuwt', 'rlhuwmve', 'rljdhmwb', 'rm', 'rma', 'rmas', 'rmb', 'rmegscqu', 'rmt', 'rn', 'rnafleys', 'rname', 'rnibmcve', 'rnsuipbk', 'ro', 'road', 'roaghyunokepc', 'roanoke', 'rob', 'robankm', 'robhyertyj', 'robhyertyjo', 'robhyertyjs', 'robot', 'roboworker', 'robsdgerp', 'roceshun', 'rockehsty', 'rod', 'rodny', 'rodstock', 'roedel', 'roedfghtec', 'roesshnktler', 'rofghach', 'rofgtyger', 'roh', 'rohhsyni', 'rohit', 'rohitdrf', 'rohjghit', 'rohlings', 'rohntyub', 'rohthsit', 'rolcgqhx', 'role', 'roles', 'roll', 'rollfgyuej', 'rolling', 'rollomatic', 'rollout', 'romania', 'rome', 'romertanj', 'ron', 'rong', 'room', 'root', 'roshyario', 'ross', 'rostuhhwr', 'rough', 'round', 'routable', 'route', 'router', 'routine', 'routinely', 'routing', 'rovfghesntine', 'row', 'rowville', 'royhtub', 'rpbdvgoy', 'rpc', 'rpgcdbfa', 'rpmwh', 'rps', 'rqfhiong', 'rqflkeuc', 'rqfmcjak', 'rqigfgage', 'rqiw', 'rqll', 'rqvl', 'rqxaudix', 'rqxl', 'rqxmaindept', 'rqxsm', 'rqxw', 'rr', 'rrc', 'rrmx', 'rrsp', 'rs', 'rsa', 'rscrm', 'rsir', 'rspqvzgu', 'rsql', 'rt', 'rtbkimey', 'rter', 'rtgdcoun', 'rtgyon', 'rth', 'rtmjwyvk', 'rtnyumbg', 'rtnzvplq', 'rtpcnyhq', 'rtr', 'rtro', 'rtwjunior', 'ru', 'rub', 'rubber', 'ruben', 'rubiargty', 'rubyfgty', 'rucfxpla', 'ruchitgrr', 'ruckruf', 'rudfgbens', 'rudolf', 'rudra', 'ruemlang', 'ruenzm', 'ruf', 'rufo', 'rujpckto', 'rujteoza', 'rule', 'run', 'running', 'runter', 'runtime', 'rus', 'rushethryli', 'russ', 'russia', 'russoddfac', 'ruy', 'rv', 'rvjlnpef', 'rvoiqthl', 'rwnhqiyv', 'rwuqydvo', 'rxiumhfk', 'rxloutpn', 'rxoynvgi', 'rxqtvanc', 'rxuobtjg', 'rxutkyha', 'ryafbthn', 'ryhunan', 'rzonkfua', 'rzpmnylt', 'rzucjgvp', 'rzxfgmcu', 'sa', 'sab', 'sabhtyhiko', 'sabrthy', 'sad', 'sadghryiosh', 'sadghryioshkurtyar', 'sadiertpta', 'sadjuetha', 'sadmin', 'safari', 'safe', 'safely', 'safety', 'safghghga', 'safrgyynjit', 'sagar', 'sagfhosh', 'sahl', 'sahryu', 'sahtym', 'saindo', 'sal', 'salary', 'sale', 'sales', 'salesforce', 'salesman', 'salesorg', 'salesperson', 'saludos', 'salutation', 'saluti', 'sam', 'samaccountname', 'samacocuntname', 'samag', 'sammelarbpl', 'sample', 'samstag', 'samsung', 'samsungsmgf', 'sanchrtyn', 'sandblasting', 'sanddry', 'sandfield', 'sandir', 'sandplant', 'sandrgru', 'sandstrahlger', 'sanhjtyhru', 'sanitize', 'santhuy', 'santiago', 'santodde', 'santoe', 'santosdfd', 'santossdm', 'santrtos', 'sao', 'saoltrmy', 'sar', 'sarhfa', 'sarhytukas', 'sarmtlhyanardhanan', 'sartlgeo', 'sarxkfvj', 'sasqkjqh', 'sat', 'satisfied', 'satisfy', 'saturday', 'save', 'saver', 'savgrtyuille', 'savin', 'saving', 'say', 'sayatgr', 'sayg', 'says', 'saztolpx', 'sbdudfrtglgbyzwx', 'sbfhydeep', 'sbgvrncj', 'sbinuxja', 'sbltduco', 'sbtvploj', 'sc', 'scan', 'scandinavia', 'scannen', 'scanner', 'scanning', 'scannt', 'scdp', 'scedxqur', 'scenario', 'scghhnellsten', 'scghhnellstm', 'scgtitt', 'sch', 'schauen', 'schddklne', 'sche', 'schedule', 'scheduled', 'scheduler', 'schedulerbhml', 'scheduling', 'schen', 'scherfgpd', 'schgtewmik', 'schhdgtmip', 'schichtplanung', 'schicken', 'schl', 'schlumhdyhter', 'schnafk', 'schneeberger', 'schneider', 'schoegdythu', 'schoemerujt', 'schoenfeld', 'school', 'schr', 'schrenfgker', 'schriftverkehr', 'scht', 'schtrtgoyht', 'schtrtgoyhtsdale', 'schuette', 'schulung', 'schulzgth', 'schung', 'schutzw', 'schyhty', 'scluvtyj', 'scm', 'score', 'scorecard', 'scot', 'scrap', 'scratch', 'screen', 'screensaver', 'screenshot', 'scren', 'screw', 'scrip', 'script', 'scroll', 'scthyott', 'sctqwgmj', 'scwx', 'sd', 'sdfgwong', 'sdguo', 'sdilxrfk', 'sdjdskjdkyr', 'sdlwfkvach', 'sdnemlwy', 'sds', 'sdtoezjb', 'sdxjiwlq', 'se', 'search', 'seat', 'seating', 'sebfghkasthian', 'sebxvtdj', 'sec', 'seceffa', 'secomea', 'second', 'secondary', 'section', 'secure', 'secureserver', 'securework', 'security', 'see', 'seefgrtybum', 'seek', 'seem', 'seemor', 'seep', 'seghyurghei', 'segment', 'segue', 'seguintes', 'segvwfyn', 'sehe', 'sehr', 'seibel', 'sein', 'seit', 'seite', 'sekarft', 'sektoren', 'selbstst', 'select', 'selection', 'selector', 'self', 'sell', 'semi', 'send', 'sender', 'sending', 'senior', 'sensation', 'sense', 'sensitivity', 'sensor', 'sent', 'sentence', 'seocompanyxv', 'sep', 'separate', 'separatelly', 'sept', 'september', 'septemer', 'seq', 'sequence', 'ser', 'seraching', 'serch', 'serevrs', 'serial', 'series', 'serious', 'serirtce', 'serravdsa', 'sertce', 'serthyei', 'serv', 'serve', 'served', 'server', 'servermigration', 'servers', 'serverteam', 'service', 'servicedienst', 'services', 'servicing', 'servrs', 'session', 'set', 'setgyrt', 'sethdyr', 'setrup', 'setting', 'settle', 'settlement', 'setun', 'setup', 'setuplaptop', 'setzen', 'setzten', 'sev', 'sever', 'several', 'severe', 'severeal', 'severity', 'sewilrxm', 'sf', 'sfb', 'sfhbunrp', 'sfhxckgq', 'sfmrzdth', 'sg', 'sgd', 'sge', 'sghtyhlp', 'sgnubadl', 'sgwipoxn', 'sgwipoxns', 'sgxqsuojr', 'sh', 'sha', 'shadakjsdd', 'shahid', 'shall', 'share', 'shared', 'sharee', 'sharepont', 'shathyra', 'shatryung', 'shaungtyr', 'sheehy', 'sheet', 'sherlock', 'sherlockruleid', 'sherwtgyu', 'shesyhur', 'shfhyw', 'shfsako', 'shhkioaprhkuoash', 'shhuivashankar', 'shi', 'shift', 'shifu', 'shighjvnn', 'shigthyuva', 'shikghtyuha', 'ship', 'shipment', 'shipping', 'shiv', 'shivakuhdty', 'shiz', 'shkdwd', 'shloosh', 'shoot', 'shop', 'shopfloor', 'shopflor', 'shopping', 'short', 'shortcut', 'shortly', 'shot', 'shourxyp', 'show', 'showing', 'showixepyfbga', 'shown', 'shrghyadja', 'shrugott', 'shryresh', 'shthuihog', 'shut', 'shutdown', 'shutting', 'shwhdbthyuiethadri', 'shwyhdtu', 'shyheehew', 'shynhjundar', 'si', 'siavgtby', 'sica', 'sich', 'sicherheisdatenbank', 'sicherheitsupdate', 'sid', 'side', 'sidecar', 'sie', 'siehe', 'siemens', 'siepvygpkttjtln', 'sign', 'signage', 'signal', 'signature', 'significantly', 'signin', 'signout', 'sigrtyhdeo', 'sihtvocw', 'silent', 'silvaes', 'silvgtyar', 'sim', 'simcard', 'simekdty', 'simfghon', 'similar', 'similarly', 'simple', 'simply', 'simplyfie', 'simulate', 'simulation', 'sin', 'sinc', 'since', 'sincerely', 'sincronizaci', 'sind', 'singapore', 'single', 'sinic', 'sinkhole', 'sinkholes', 'sintering', 'sinterleitstand', 'sipppr', 'sippprs', 'sir', 'sistem', 'sistemi', 'sit', 'site', 'sitepages', 'sitmzuje', 'situation', 'sitz', 'sitze', 'size', 'sjv', 'sk', 'skad', 'skannen', 'skip', 'skirtylport', 'skirtylset', 'skotthyutc', 'skpe', 'skr', 'skus', 'skv', 'sky', 'skype', 'sl', 'slc', 'sldm', 'sldowapb', 'sldx', 'sle', 'sless', 'slide', 'slidz', 'slight', 'slimware', 'slip', 'slkxgzdj', 'sllwdw', 'slno', 'slo', 'slovakia', 'slow', 'slowly', 'slowness', 'slrgconp', 'sls', 'slt', 'sm', 'small', 'smart', 'smartphone', 'smb', 'smcxerwk', 'smdbqnef', 'smfkuhwi', 'smhdyhti', 'smhdyhtis', 'smitrtgcj', 'smkpfjzv', 'smoltelephony', 'smpijawb', 'sms', 'smtp', 'smxoklny', 'sn', 'snagit', 'snap', 'snapshot', 'sndaofyw', 'sng', 'snhdfihytu', 'snip', 'snkz', 'snmp', 'snp', 'sntvfpbl', 'sny', 'snyder', 'soap', 'soc', 'soedjitv', 'soemec', 'soflex', 'soft', 'softland', 'software', 'softwarea', 'softwarei', 'sogo', 'sogou', 'sohu', 'sohytganvi', 'sokdelfgty', 'soldfnbq', 'sole', 'solely', 'solicito', 'solid', 'solidwork', 'solidworks', 'soll', 'sollarbeitszeit', 'sollte', 'solman', 'solution', 'solutioning', 'solutions', 'solve', 'solver', 'somebody', 'somehow', 'somente', 'someone', 'something', 'sometime', 'sometimes', 'somewhat', 'somewhere', 'sonar', 'songhyody', 'soon', 'sooner', 'sop', 'soplant', 'sorahdyggs', 'sorry', 'sort', 'sotmfcga', 'soujqrxw', 'sound', 'source', 'sourcecode', 'south', 'southeast', 'souzarft', 'sox', 'sp', 'space', 'spain', 'spam', 'spamme', 'span', 'spanish', 'spare', 'spdczoth', 'speak', 'speake', 'speaker', 'special', 'specialist', 'specially', 'specific', 'specifically', 'specification', 'specify', 'specs', 'speculation', 'speed', 'speichern', 'speicherort', 'speker', 'spell', 'spelling', 'spend', 'spengineere', 'spike', 'spill', 'spillage', 'spimolgz', 'spl', 'splash', 'split', 'sponsor', 'spoof', 'spool', 'sport', 'spot', 'spread', 'spreadsheet', 'sprhouiv', 'springt', 'spro', 'sproc', 'spt', 'spxqmiry', 'sqevyvfjblevtew', 'sqgtkmci', 'sql', 'sqlagent', 'sqlcuhep', 'sqlite', 'sqlitedb', 'sqlmtixr', 'sqlservr', 'sr', 'sratdeol', 'src', 'srcassetofinter', 'srcassetofinterest', 'srchostname', 'srcip', 'srcmacaddress', 'srcport', 'sre', 'sreedhar', 'sreenshot', 'srglovia', 'srgtycha', 'sridhar', 'sridthshar', 'srinfhyath', 'srinifghvah', 'srirgrtyam', 'srl', 'srpsad', 'srujan', 'srv', 'srvlavpwdrprd', 'srvlavstorage', 'ssemos', 'ssen', 'ssid', 'ssl', 'sso', 'ssofgrtymerset', 'ssp', 'sst', 'ssylias', 'st', 'stable', 'stack', 'staebefertigung', 'staeberoth', 'staerte', 'staff', 'stage', 'stahyru', 'stall', 'stamp', 'stand', 'standard', 'standstill', 'stanfghyley', 'stankewitz', 'start', 'starten', 'startet', 'startpassword', 'startup', 'stasrty', 'staszk', 'stat', 'state', 'statement', 'states', 'static', 'stating', 'station', 'statistic', 'stats', 'status', 'staut', 'stavenheim', 'stay', 'std', 'stdezpqw', 'steal', 'steel', 'stefdgthy', 'steffen', 'stefyty', 'stefytyn', 'stegyhui', 'stehenden', 'steht', 'steince', 'steinh', 'steinich', 'steli', 'step', 'stepfhryhan', 'sthry', 'sthytachnik', 'stiarhlu', 'stibo', 'stick', 'stil', 'still', 'stkxkcksmcwwlde', 'stl', 'sto', 'stock', 'stocktransfer', 'stoebtrt', 'stop', 'stope', 'stoppage', 'storage', 'storch', 'store', 'storm', 'storno', 'stp', 'stra', 'strahlraum', 'strange', 'stransfers', 'strasse', 'strategic', 'stream', 'streamline', 'street', 'streng', 'strgrtyiet', 'strictly', 'strigtyet', 'string', 'strip', 'strixner', 'structure', 'stuarthsyt', 'stub', 'stuck', 'student', 'studio', 'study', 'stuff', 'stunden', 'stundenlang', 'stury', 'stuwbacm', 'stwpzxbf', 'su', 'sua', 'sub', 'subbathykrisyuhnyrt', 'subcontract', 'subcontracting', 'subdirectory', 'subdomain', 'subfolder', 'subgtybaryuao', 'subject', 'submission', 'submit', 'submittal', 'subroutine', 'subscribe', 'subscription', 'subsequent', 'subsite', 'subsitute', 'substitute', 'subsystem', 'subtask', 'subtract', 'succeed', 'succesful', 'success', 'successful', 'successfully', 'suche', 'suchytro', 'suck', 'sud', 'sudden', 'suddenly', 'sudghhahjkkar', 'sudghhahjkkarreddy', 'sudghnthdra', 'sudo', 'suffer', 'sufficient', 'suggest', 'suggestion', 'sugisdfy', 'suhrhtyju', 'suhtnhdyio', 'suitable', 'suite', 'sujitra', 'sum', 'summary', 'summit', 'sunday', 'sundaycommitted', 'suomfxpj', 'sup', 'super', 'superior', 'supervisor', 'suplier', 'supplied', 'supplier', 'supply', 'suppor', 'support', 'suppose', 'suppress', 'suraj', 'sure', 'surely', 'surge', 'surthryr', 'surveillance', 'survey', 'suspect', 'suspicious', 'suthye', 'sutyu', 'suzjhmfa', 'sv', 'svc', 'svchost', 'svuxizgr', 'svuxjkpg', 'sw', 'swap', 'swathi', 'swisscom', 'switch', 'switchover', 'switzerland', 'switzerlandik', 'switzerlandim', 'swmiynoz', 'swqndxhl', 'swsince', 'sxbgyrou', 'sxpotjlu', 'sxthcobm', 'syatem', 'sycxgdxnlcmhbwv', 'syghmesa', 'sygnyzwfzwrglgb', 'syhtu', 'syhunil', 'sykpe', 'sylvthryia', 'sylyhtsvesuyter', 'symantec', 'symbol', 'symmetrix', 'syn', 'sync', 'synced', 'synch', 'synche', 'synched', 'synchro', 'synchronisiert', 'synchronisierung', 'synchronization', 'synchronize', 'synchronizer', 'syncronize', 'sype', 'sys', 'sysetem', 'syslog', 'system', 'systemaccess', 'systemic', 'systems', 'syxewkji', 'syxjpdhlbdgdptm', 'szcbhvwe', 'szewiguc', 'szockfpj', 'szpilewska', 'szumyhtulas', 'tab', 'table', 'tablearu', 'tablet', 'tackle', 'tag', 'tagen', 'tagsfbny', 'tahamt', 'tahat', 'taiwan', 'take', 'takeshi', 'takheghshi', 'taking', 'talagrtymr', 'talipg', 'talk', 'tally', 'talryhtir', 'tam', 'tami', 'tammineni', 'taneghrty', 'tank', 'tanrgty', 'tape', 'taqekwrd', 'tar', 'taranga', 'tarde', 'target', 'targetlist', 'tarzana', 'task', 'taskbar', 'taskmgr', 'tastatur', 'tasten', 'tauschen', 'tawfcmszwagkhb', 'tax', 'taxcizwv', 'taxis', 'tayjuoylor', 'tayloml', 'taylthyuoaj', 'tbbuyhexstandoffmm', 'tbhkenlo', 'tbkywpqz', 'tbnovxdp', 'tbvpkjoh', 'tc', 'tcb', 'tcbjyqps', 'tcflirwg', 'tcjnuswg', 'tck', 'tcl', 'tcode', 'tcp', 'tcpflag', 'tcplen', 'tcwrdqboinition', 'td', 'tdlwdkunis', 'tdmgolwn', 'te', 'team', 'teamcall', 'teamleiter', 'teammeete', 'teamordner', 'teams', 'teamsales', 'teamviewer', 'tebenutzer', 'tebetriebssystem', 'tech', 'techn', 'technical', 'technically', 'technician', 'technische', 'technologist', 'technology', 'tecnologia', 'ted', 'tegdtyyp', 'teh', 'tehdy', 'teilweise', 'tel', 'telecom', 'telecomitalia', 'telefon', 'telefonnummer', 'telekom', 'telephone', 'telephonic', 'telephony', 'teleservice', 'tell', 'tem', 'temodell', 'temp', 'tempdev', 'temperature', 'template', 'templet', 'tempo', 'temporal', 'temporarily', 'temporarlly', 'temporary', 'temprature', 'temps', 'tempuser', 'ten', 'tender', 'tengigabitethernet', 'tent', 'tente', 'ter', 'terhyury', 'term', 'termin', 'terminal', 'terminate', 'termination', 'terralink', 'territory', 'tess', 'tesscenter', 'test', 'tetyp', 'teufeae', 'tevkia', 'tewgersy', 'tex', 'text', 'teyldpkw', 'tezugriffsstatus', 'tfazwrdv', 'tfedground', 'tfedpnd', 'tfgtodd', 'tfhzidnq', 'tfrbwoua', 'tfsehruw', 'tfw', 'tgbtyim', 'tge', 'tgewaniq', 'tgeyd', 'tghkris', 'tghrlok', 'tgrsyduf', 'tgryds', 'tgryhu', 'tgryudf', 'tgzbklec', 'th', 'tha', 'thadasgg', 'thadhylman', 'thank', 'thanking', 'thaybd', 'thdjzolw', 'thdjzolwronization', 'thecomputer', 'theeadjjd', 'theecanse', 'theft', 'thema', 'theme', 'therefor', 'therefore', 'thermal', 'thesdf', 'thesis', 'thetadkg', 'theydbar', 'thgheijmer', 'thhyuokhkp', 'thicker', 'thilo', 'thinclient', 'thing', 'think', 'thip', 'third', 'thiw', 'thjquiyl', 'thnak', 'thnsguzj', 'thomafghk', 'thomklmas', 'though', 'thought', 'thoyht', 'thrdyakdj', 'thrdyd', 'threat', 'three', 'threshold', 'thrgxqsuojr', 'thrice', 'throughout', 'throw', 'thru', 'thry', 'thryad', 'thryd', 'thrydad', 'thrydksd', 'thrydsss', 'thryduf', 'thrydufg', 'thrys', 'thsadyu', 'thsaqsh', 'thsgy', 'thsydaas', 'thtudb', 'thu', 'thumb', 'thursday', 'thus', 'thx', 'thyel', 'ti', 'tiaghry', 'tick', 'ticket', 'ticketing', 'tier', 'tif', 'tiff', 'tifpdchb', 'tige', 'tigt', 'tigung', 'tikona', 'til', 'till', 'tim', 'time', 'timecard', 'timeclock', 'timeframdntye', 'timegraphfilter', 'timely', 'timeout', 'timerecorde', 'times', 'timestamp', 'timing', 'timnhyt', 'tims', 'ting', 'tinmuym', 'tinyurl', 'tion', 'tip', 'tipset', 'tiresome', 'titcket', 'titel', 'title', 'tiyhum', 'tjlgzkbp', 'tjlizqgc', 'tjnwdauo', 'tjwdhwdw', 'tjzohmve', 'tkhafgrc', 'tkhaymqg', 'tkpfumeb', 'tkt', 'tltz', 'tlvwusmh', 'tlzsrvgw', 'tm', 'tmb', 'tml', 'tmqfjard', 'tms', 'tmunkaiv', 'tmyeqika', 'tnghnha', 'tnhymatj', 'tnlshpwb', 'tnorudbf', 'tnowikyv', 'tnxiuramdnty', 'today', 'todd', 'todfrm', 'todthyd', 'toengineere', 'tofinance', 'together', 'toll', 'tologin', 'tom', 'tomashtgd', 'tomlin', 'tommyth', 'tomoe', 'tomorrow', 'tomyhoen', 'tone', 'toner', 'tonerwechsel', 'tonight', 'tony', 'tool', 'toolbar', 'toolcal', 'toold', 'tooldcvcgenratn', 'tooldplcmmaninp', 'toolher', 'toolhone', 'toolical', 'tooling', 'toolkuznetsk', 'toollant', 'toolmail', 'toolmforrun', 'tooloductdata', 'toolometer', 'toolonic', 'toolpasswordmanager', 'toolrently', 'toolroom', 'toolscal', 'toolt', 'toolte', 'tooltion', 'tootal', 'top', 'topcustomersendmarkhtyet', 'topefd', 'topic', 'tor', 'toriaytun', 'tortm', 'torvxeda', 'torx', 'tos', 'tot', 'total', 'totally', 'totalteamsales', 'touch', 'touche', 'towards', 'tower', 'town', 'townhall', 'township', 'tp', 'tpfghtlugn', 'tpfnzkli', 'tps', 'tpsshru', 'tpurnjvi', 'tqnbkjgu', 'tqvefyui', 'tqvpohwj', 'tr', 'trace', 'tracert', 'track', 'tracker', 'tracking', 'trade', 'traffic', 'trafficdenie', 'trail', 'train', 'trainee', 'trainer', 'training', 'traiyctrhbkm', 'tranpertation', 'transaction', 'transaktion', 'transfe', 'transfer', 'transferring', 'transiit', 'transit', 'transition', 'translate', 'translation', 'transmit', 'transport', 'transportation', 'trask', 'trat', 'travel', 'traveler', 'traversecity', 'traversecitymi', 'trayton', 'tre', 'tree', 'trgdyyufs', 'trghwyng', 'trgqbeax', 'trhadg', 'trhdaa', 'trhdyd', 'trhsys', 'trhsyvdur', 'trial', 'trigger', 'trinzic', 'trip', 'trmzwbyc', 'trn', 'tro', 'trojan', 'trouble', 'troubleshoot', 'troubleshooter', 'troubleshooting', 'trqmnpvu', 'trtgoy', 'trtgoywdd', 'tru', 'truck', 'true', 'trunk', 'trup', 'trupthyti', 'trurthyuft', 'trust', 'truview', 'trxsychl', 'try', 'tryfuh', 'tryhdty', 'ts', 'tsantamaria', 'tsicojkp', 'tsk', 'tskvmwag', 'tsmanagement', 'tss', 'tswwah', 'tszvorba', 'ttemplate', 'ttl', 'tu', 'tue', 'tuesday', 'tujutnis', 'tuning', 'tup', 'tupsgrnd', 'tuqrvowp', 'turbo', 'tureinter', 'turkey', 'turleythy', 'turn', 'turnover', 'tuzkadxv', 'tv', 'tvcdfqgp', 'twdyzsfr', 'twejhda', 'twhyang', 'twice', 'twimc', 'two', 'tx', 'tyco', 'tyhuellis', 'tyhufrey', 'typ', 'type', 'typing', 'tys', 'tyss', 'tyuhfljp', 'tyyhtuler', 'tzfwjxhe', 'tzornbldf', 'tzrekwqf', 'tzscsjxhcruyw', 'tzung', 'uacyltoe', 'uadkqcsj', 'uagqromi', 'uanigkqc', 'uaoyhcep', 'uasername', 'uat', 'ubfcwegt', 'ubiqcrvy', 'ubyjolnc', 'ucewizyd', 'ucs', 'ucziatex', 'udmbwocs', 'udo', 'udp', 'udpate', 'udrzjxkm', 'ue', 'ueiybanz', 'uekapfzt', 'ufgkybsh', 'ufiatosg', 'ufpwmybi', 'ufpzergq', 'ug', 'ugelctsz', 'ughynofq', 'ughzilfm', 'ugi', 'ugnthxky', 'ugrmkdhx', 'ugu', 'ugyothfz', 'uhammet', 'uhefoqtg', 'uhnbsvqd', 'uhntgvyj', 'uhr', 'uhytry', 'ui', 'uicjxvng', 'uidgt', 'uihvzzxjfawqgrlj', 'uiu', 'ujtmipzv', 'ujxvrlzg', 'uk', 'ukasz', 'ukcbaufmvcasicd', 'ukwfgxrl', 'ukxtqfda', 'ukynmfig', 'ulezhxfw', 'uli', 'ulm', 'ulrike', 'ultra', 'ultramdntyet', 'ulv', 'um', 'umbau', 'umgestellt', 'umykjweg', 'umzcxfah', 'umziehen', 'umzug', 'un', 'unable', 'unacceptable', 'unannounced', 'unauthorised', 'unauthorized', 'unavailable', 'unaware', 'unbale', 'unblock', 'uncaught', 'unchecked', 'unconfirme', 'unconverted', 'und', 'undate', 'undeliverable', 'underlie', 'underscore', 'understand', 'understanding', 'undock', 'undocking', 'unexpected', 'unfortunately', 'unfreeze', 'ungksotp', 'uninstall', 'uninstallation', 'uninstalle', 'uninstalled', 'uninstaller', 'unique', 'unit', 'united', 'universal', 'unix', 'unknown', 'unlesbar', 'unless', 'unlicensed', 'unlikely', 'unlinked', 'unlock', 'unlocked', 'unlocking', 'unlook', 'unmarkhty', 'unmittelbar', 'unmonitored', 'unnessary', 'unplanned', 'unpliugged', 'unpost', 'unqlarpk', 'unrbafjx', 'unreachable', 'unread', 'unreadable', 'unrecognized', 'unregistered', 'unresolved', 'unresponsive', 'unrestricte', 'unrestricted', 'unsafe', 'unsaved', 'unser', 'unsere', 'unsuccessful', 'unsupported', 'unter', 'unterhaltung', 'unterlagen', 'unterst', 'untinstall', 'untrustworthy', 'unvdyask', 'unvollst', 'unzip', 'uorcpftk', 'uoyipxqg', 'upadate', 'upadhyaya', 'upajtkbn', 'upcgxthj', 'upcoming', 'update', 'updated', 'updating', 'updation', 'updown', 'uperform', 'upgrade', 'upgtrvnj', 'upitdmhz', 'upiyobvj', 'uplink', 'upload', 'uploaded', 'uploader', 'uploading', 'upon', 'upper', 'uprmwlgb', 'uprodleq', 'ups', 'upservice', 'upto', 'upwonzvd', 'uqjbkydr', 'urbghty', 'urgapyzt', 'urgency', 'urgent', 'urgently', 'urgnet', 'urgqkinl', 'urhbvfgd', 'url', 'urlaubsplanung', 'urlaubsst', 'urlcorrelation', 'urle', 'urlenc', 'urlfullpath', 'urlhost', 'urlpath', 'urspr', 'urumqi', 'urvitans', 'us', 'usa', 'usadtto', 'usae', 'usaed', 'usage', 'usalikfj', 'usar', 'usas', 'usatdhdal', 'usb', 'uschow', 'usd', 'usdekfzq', 'use', 'used', 'useful', 'useid', 'user', 'userid', 'userlogin', 'username', 'usero', 'users', 'usersetting', 'usr', 'usser', 'ustvaifg', 'usual', 'usually', 'usx', 'utbnkyop', 'utc', 'utejhdyd', 'uthagtpgc', 'util', 'utility', 'utiliuytretion', 'utilization', 'utilize', 'utislgov', 'utlization', 'utrimobs', 'utwijzag', 'uvbmysgcbenezer', 'uwdqtrnx', 'uwe', 'uwjchqor', 'uwncfovt', 'uwtakcmj', 'uxhq', 'uxndyfrs', 'uxpytsdk', 'uy', 'uyfqgomx', 'uyjlodhq', 'uylvgtfi', 'uynrhiva', 'uyocgasl', 'uypsqcbm', 'uyrpdvoq', 'uywlidgjbvbgl', 'uzojtkmh', 'uzpycdho', 'uzvsnlbd', 'va', 'vacation', 'vadnhyt', 'vaghjmskee', 'vaghyliort', 'vagnerlrtopes', 'vahgolwx', 'vahxnfgl', 'vaigycet', 'vajtodny', 'val', 'valid', 'validate', 'validation', 'validity', 'value', 'vamthrsee', 'vanghtydec', 'variable', 'variant', 'variation', 'various', 'vas', 'vasanqi', 'vat', 'vatpgsxn', 'vaugtyghtl', 'vault', 'vavilova', 'vb', 'vbap', 'vbgljescsqfbbum', 'vbkpf', 'vc', 'vcenter', 'vchvpwdldenzd', 'vdhfy', 'vdjqoeip', 'vdklzxqg', 'vefghgarr', 'veiw', 'vel', 'vendor', 'vendorclassification', 'vendoreventid', 'vendorpriority', 'vendorreference', 'vendorsigid', 'vendorversion', 'venfgugjhytpal', 'venkat', 'venkbghksh', 'venkthrysh', 'venktyamk', 'ventilst', 'venue', 'vepxdgot', 'ver', 'verbinden', 'verbindung', 'verbinung', 'verboma', 'verboncouer', 'verboten', 'verbreitung', 'verehrte', 'verf', 'verggermany', 'verghjuen', 'verificar', 'verification', 'verified', 'verify', 'verizon', 'verkauf', 'verkaufsgebiet', 'verl', 'verly', 'versa', 'versand', 'versehens', 'versendeten', 'version', 'versions', 'verstrauensstellung', 'versucht', 'verteilung', 'vertiayhtu', 'vertical', 'vertraulich', 'vervielf', 'verwenden', 'verz', 'verzeichnis', 'vf', 'vfdglqnp', 'vfjsubao', 'vfkwscao', 'vfnraqxc', 'vfx', 'vg', 'vga', 'vgsqetbx', 'vh', 'vhcmnoxdyawqgb', 'vhebydgs', 'vhihrty', 'vhjkdqop', 'vhsw', 'vhw', 'vhzxkjet', 'via', 'vic', 'vice', 'vicinity', 'victim', 'vid', 'vide', 'video', 'videos', 'vidya', 'viele', 'vielen', 'view', 'viewer', 'vig', 'vignbhyesh', 'vigrtgyne', 'vijeghtyundra', 'vijghyduhprga', 'vijuryat', 'vikrhtyas', 'vikrhtyaskurtyar', 'vil', 'village', 'vinhytry', 'violation', 'viotto', 'vip', 'vipqmdse', 'virakv', 'virtual', 'virtualcenter', 'viruhytph', 'virus', 'visando', 'visfgthal', 'visibility', 'visible', 'visid', 'visio', 'visit', 'visitble', 'visitor', 'visual', 'visualisieren', 'vitalyst', 'vivbhuek', 'vivian', 'vivthyek', 'vjkftuai', 'vjzfocgt', 'vk', 'vkdobexr', 'vkezwolt', 'vkjdgtxb', 'vkm', 'vkrepcybwa', 'vkrqojyt', 'vksfrhdx', 'vkzwafuh', 'vl', 'vlan', 'vlinspectkiosk', 'vln', 'vlpfgjyz', 'vm', 'vmax', 'vmdk', 'vmhfteqo', 'vmqcyzda', 'vms', 'vmsliazh', 'vmsw', 'vmthcrkf', 'vmware', 'vmxathog', 'vnc', 'vnglqiht', 'vnhaycfo', 'vnizrdeb', 'vnjdghui', 'vnjwsadx', 'vnlqkgpb', 'vobarhzk', 'vobluewg', 'voethrylke', 'vogelfontein', 'void', 'voigt', 'volkhd', 'volume', 'volunteer', 'vom', 'von', 'voprdmae', 'vor', 'voraus', 'voreingestellte', 'vorgeschlafen', 'vorgesetzten', 'vorhanden', 'vorschl', 'votgygel', 'vou', 'voucher', 'vous', 'voyyhuek', 'vp', 'vpksyfco', 'vpn', 'vpns', 'vpro', 'vpv', 'vriendelijke', 'vrkoqaje', 'vroanwhu', 'vrtvpopc', 'vrtx', 'vs', 'vsbhyrt', 'vsdtxwry', 'vsid', 'vsknlfri', 'vsp', 'vsphere', 'vstyaouc', 'vtbegcho', 'vtdygauw', 'vthuzanc', 'vtokgley', 'vtykrubi', 'vtyr', 'vu', 'vudghzcb', 'vulnerability', 'vulnerable', 'vupglewt', 'vuxdrbng', 'vv', 'vvaghjnthl', 'vvamirsdwnp', 'vvamrtryot', 'vvbgrtyeleb', 'vvbloor', 'vvblorytor', 'vvblothryor', 'vvbthryhn', 'vvcodgtjud', 'vvdeftmea', 'vvdfgtyuji', 'vvdghtteij', 'vvdgtyachac', 'vvdortddp', 'vvfrtgarnb', 'vvftgor', 'vvggrthhibg', 'vvghychamc', 'vvgoythttu', 'vvgraec', 'vvgtybyrn', 'vvgtycargvc', 'vvgtyhpej', 'vvgtyrhds', 'vvhstyap', 'vvhthyoffc', 'vvjodav', 'vvjotsgssea', 'vvkatt', 'vvkertgipn', 'vvkuhtdppg', 'vvkuimtyu', 'vvkujup', 'vvkusgtms', 'vvkuthyrppg', 'vvlahstyurr', 'vvlixthy', 'vvnergtubj', 'vvparthyrra', 'vvrajai', 'vvrassyhrt', 'vvrnrtacri', 'vvrtgffada', 'vvrtgwildj', 'vvrttraja', 'vvrtyjakaa', 'vvrtymitrd', 'vvrurtgsur', 'vvsallz', 'vvsfgtyrinv', 'vvsimpj', 'vvspecmfrt', 'vvsthryomaa', 'vvtathadnda', 'vvtdfettc', 'vvterra', 'vvtghjscha', 'vvthuenka', 'vvthygschj', 'vvttraja', 'vvwhtyuy', 'vvwtyeidt', 'vvyhtyumasp', 'vw', 'vwaliogd', 'vwkasnxe', 'vwniefok', 'vxfkwaqh', 'vxjbunfi', 'vxpcnrtw', 'vxuikqaf', 'vyamhjip', 'vybdkuoa', 'vyjmlain', 'vyluaepi', 'vythytalyst', 'vytqlphd', 'vyucbagx', 'vywrfywnsxzsywd', 'vzmneycx', 'vzqomdgt', 'wa', 'waagerechte', 'wac', 'wafglhdrhjop', 'wagshrzl', 'wait', 'waitgr', 'wake', 'walddkrrm', 'waldjrrm', 'walkme', 'wall', 'wallet', 'wallpaper', 'wam', 'wanrtyg', 'wanrtygm', 'want', 'wanthryg', 'waqslrbd', 'warden', 'ware', 'warehouse', 'wareneingang', 'warm', 'warn', 'warning', 'warrrtyen', 'wasload', 'waste', 'watch', 'watcher', 'wauhocsk', 'way', 'waynesboro', 'wbr', 'wbs', 'wbsfavhg', 'wc', 'wckrxovs', 'wcrbmgon', 'wdflefrong', 'wdfwsggalleh', 'wdjwd', 'wdkaoneh', 'wdkfww', 'wdkwdwd', 'wdkyiqfx', 'wdleell', 'wdlmdwwck', 'wdnwe', 'wdnwk', 'wdnwwl', 'wdq', 'wdtsyuxg', 'wdugqatr', 'wdwddw', 'wdwmd', 'weak', 'wear', 'weaver', 'web', 'webapp', 'webapps', 'webdhyt', 'webfnhtyer', 'webi', 'webpage', 'webportal', 'webrger', 'webshop', 'webside', 'website', 'websty', 'webyutelc', 'wechseln', 'weclfnhx', 'wedgrtyh', 'wednesday', 'week', 'weekday', 'weekend', 'weekly', 'wegen', 'wehlauer', 'wei', 'weight', 'weird', 'weit', 'weiterleiten', 'welch', 'welchia', 'welcome', 'well', 'welling', 'welwsswbtwe', 'wendt', 'wenige', 'wenn', 'went', 'wer', 'werden', 'werk', 'werkzeuge', 'wesley', 'west', 'westcoast', 'wester', 'westes', 'weszfyok', 'wethruiberg', 'wethrybb', 'wezeb', 'wf', 'wfgtyill', 'wfyhgelz', 'wg', 'wghjkftewj', 'wgpelvyn', 'wgpimkle', 'wgq', 'wgtcylir', 'wgtyillsford', 'wgyhktic', 'wh', 'whalep', 'whaley', 'wharehouse', 'whatever', 'whenever', 'whenn', 'whereas', 'whereby', 'wherein', 'wherever', 'whether', 'whilst', 'white', 'whjtlkn', 'whjtyulen', 'whoever', 'whole', 'whomever', 'whose', 'whoyizfp', 'whqsm', 'whryuiam', 'whsipqno', 'whwdiuw', 'whzbrusx', 'wi', 'wichtige', 'wickhamtf', 'wide', 'widespread', 'widget', 'wie', 'wieder', 'wiederherstellen', 'wiejas', 'wifi', 'wiggrtgyis', 'wightygins', 'wijuiidl', 'wikfnmlwds', 'wiksufty', 'wild', 'wildschuetz', 'wilfert', 'williuthyr', 'wilmington', 'wilsfgtjl', 'wilsfrtch', 'wim', 'win', 'window', 'windows', 'windowseventid', 'windy', 'winow', 'winprodnc', 'winrar', 'winsock', 'winwip', 'winzip', 'wip', 'wir', 'wird', 'wire', 'wireless', 'wirelss', 'wise', 'wish', 'wit', 'within', 'without', 'witrh', 'wj', 'wjkzgyxh', 'wjslkzfr', 'wjzvabrl', 'wk', 'wkbovsmu', 'wkgpcxqd', 'wkly', 'wkpnlvts', 'wkqjcfgy', 'wktttrvqgqfnbtfq', 'wl', 'wlan', 'wlc', 'wlcdvjywouvmrun', 'wly', 'wlzqaivr', 'wmsg', 'wmtiruac', 'wnk', 'wnkpzcmv', 'wnorzsyv', 'wnxzhqoa', 'wnyierbu', 'wo', 'woche', 'woehyl', 'wohtyugang', 'wohzmlib', 'wolfthry', 'wollschl', 'wonder', 'woodscf', 'word', 'work', 'workaround', 'workbook', 'workbooks', 'workcenter', 'workcentre', 'worker', 'workfflow', 'workflow', 'workgroup', 'workig', 'working', 'worklfow', 'worklist', 'workman', 'workng', 'workplace', 'workplanne', 'worksheet', 'workshop', 'workstation', 'worl', 'world', 'worm', 'worry', 'worthy', 'wothyehre', 'would', 'wp', 'wpakylnj', 'wpcatozg', 'wpdxlbhz', 'wpkcbtjl', 'wptbgchj', 'wqbsodni', 'wqfzjycu', 'wqinjkxs', 'wqpfdobe', 'wqtlzvxu', 'wquxvrvmgkdesmiw', 'wqw', 'wqxcrzhj', 'wqxzleky', 'wrapper', 'wrcktgbd', 'wrctgoan', 'wrench', 'write', 'wrk', 'wrke', 'wrong', 'wrongful', 'wrongly', 'wrtyuh', 'ws', 'wsb', 'wsboedtj', 'wseacnvi', 'wshqqhdqh', 'wsignin', 'wsjkbw', 'wsljdqqds', 'wsp', 'wswdd', 'wt', 'wthaldlmdsrop', 'wtldpncx', 'wtqdyoin', 'wtqdyoinware', 'wtubpdsz', 'wtxvqngf', 'wtykmnlg', 'wu', 'wunderlist', 'wunthyder', 'wurdack', 'wurde', 'wurden', 'wuryhtudack', 'wusa', 'wusdajqv', 'wusgaozx', 'wv', 'wvdxnkhf', 'wvhelqxu', 'wvngzrca', 'wvprteja', 'wvqgbdhm', 'wwdyuan', 'wwi', 'wwisvc', 'www', 'wxdvjoct', 'wxnetroc', 'wxpytevu', 'wxrvavuycxgcnb', 'wxstfouy', 'wy', 'wydorpzi', 'wyighrjl', 'wyjsbzda', 'wymgzcrh', 'wynhtydf', 'wysiwyg', 'wz', 'wza', 'wzfryxav', 'wzrgyunp', 'wzs', 'wzyspovl', 'xaad', 'xabba', 'xabbf', 'xabkyoug', 'xacbc', 'xaccedd', 'xackgvmd', 'xad', 'xadbff', 'xadc', 'xamcuong', 'xamesrpfrop', 'xamtgvnw', 'xaqzisrk', 'xawlkiey', 'xaykwtrf', 'xb', 'xbc', 'xbdht', 'xbedac', 'xbff', 'xblnr', 'xbmyvnqf', 'xbsckemt', 'xbtsaodr', 'xbvghozp', 'xc', 'xcb', 'xcc', 'xce', 'xcel', 'xceliron', 'xcirqlup', 'xcwavhyu', 'xd', 'xdabb', 'xdaedb', 'xdddde', 'xdefb', 'xdgjizek', 'xdvwitpm', 'xe', 'xebc', 'xec', 'xece', 'xed', 'xeda', 'xedbf', 'xee', 'xef', 'xefd', 'xelhoicd', 'xernsfqa', 'xerox', 'xeuhkoqa', 'xex', 'xf', 'xfae', 'xfaf', 'xfbcdcc', 'xfbe', 'xfc', 'xfdce', 'xfdkwusj', 'xff', 'xfizlnap', 'xfuqovkd', 'xgufkidq', 'xhaomnjl', 'xhnmygfp', 'xia', 'xiframdntye', 'xighjacj', 'xikojdym', 'xirwgjks', 'xithya', 'xiyhtu', 'xjhpznd', 'xjhpznds', 'xjmpacye', 'xjvubmlq', 'xjzcbgnp', 'xkegcqov', 'xkhsirtd', 'xkjuigsc', 'xl', 'xls', 'xlsb', 'xlsm', 'xlsx', 'xltm', 'xltx', 'xmeytziq', 'xmgptwho', 'xml', 'xmlbfjpg', 'xnklbfua', 'xnqzhtwu', 'xomkhzrq', 'xos', 'xosdfhbu', 'xoukpfvr', 'xovczlad', 'xp', 'xpoqcrtb', 'xprwayoc', 'xptuoaid', 'xpugntjv', 'xqbevoic', 'xqgovpik', 'xqtldrcs', 'xref', 'xrfcjkdl', 'xrqnyzhb', 'xsdb', 'xsfgitmq', 'xsrkthvf', 'xss', 'xsso', 'xszoedmc', 'xt', 'xtmjlari', 'xukajlvg', 'xuqvaobxuy', 'xvgftyr', 'xvgzdtqj', 'xvwchsdg', 'xvysrnmb', 'xwbesorf', 'xwbesorfs', 'xwelumfz', 'xwgnvksi', 'xwirzvda', 'xwlcqfsr', 'xxx', 'xxxx', 'xxxxx', 'xyculgav', 'xyedbsnm', 'xyuscbkn', 'xyz', 'xzbtcfar', 'xzn', 'xzopjhlq', 'xzs', 'yadavtghya', 'yahoo', 'yakimp', 'yambwtfk', 'yandfgs', 'yandy', 'yathryu', 'yaxmwdth', 'yayuel', 'ybaoluck', 'ybexblpufkbwlua', 'ybhazlqp', 'ybuvlkjq', 'ycgkinov', 'ycimqxdn', 'ydgqtpbo', 'ydigzqbu', 'year', 'yecbmliq', 'yeghrrajghodu', 'yegzbvru', 'yellow', 'yepifgbl', 'yerrav', 'yes', 'yesilc', 'yesterday', 'yet', 'yevirgnl', 'yeyhtung', 'yfaqhceo', 'yfeuhtib', 'yhe', 'yhhm', 'yhmwxsqj', 'yhroaeqj', 'yhru', 'yhtdush', 'yhteijwf', 'yhtheehey', 'yi', 'yiagubvh', 'yicpojmf', 'yidvloun', 'yifdirvjfihvzzxj', 'yihelxgp', 'yijgokrn', 'yimwfntl', 'yjscozva', 'yjtdkfuo', 'yjurztgd', 'ykeilmog', 'ykolismx', 'ylfwnbkr', 'ylhogjct', 'ylqvitsk', 'ymdqokfp', 'ymedkatw', 'ynlqrebs', 'yno', 'ynowzqfh', 'yolktfas', 'yopvwrjq', 'yotyhga', 'youfzmgp', 'young', 'ypdhesrq', 'ype', 'ypladjeu', 'yptglhoe', 'yqddquanw', 'yqnajdwh', 'yqxlbswt', 'yrada', 'yrhackgt', 'yrjhd', 'yrlsguzk', 'yscgjexz', 'ysfiwvmo', 'yspnqxgw', 'ytd', 'ytqhfmwi', 'ytzpxhql', 'yubtgy', 'yucgfmiq', 'yuglsrwx', 'yukdzwxs', 'yup', 'yuxloigj', 'yvhlenaz', 'yvlswgxb', 'yvtjzkaw', 'ywqgrbnx', 'yyufs', 'yzemkhbq', 'yzhao', 'yzmcfxah', 'yzugpdco', 'yzwnvbjt', 'zaf', 'zahlen', 'zahllauf', 'zanegtyla', 'zarlgjes', 'zartupsw', 'zazrtulds', 'zbpdhxvk', 'zbudwnfr', 'zbwtunpy', 'zcae', 'zcaermdt', 'zcejmwsq', 'zchjbfdehivashankaraiah', 'zcnc', 'zcnp', 'zcopc', 'zcor', 'zcp', 'zcqnuawo', 'zcudbnyq', 'zcustgrp', 'zd', 'zdcheloy', 'zdfymgjp', 'zdis', 'zdsxmcwu', 'zdus', 'zearn', 'zebra', 'zedghkler', 'zedlet', 'zeichnungsrahmen', 'zeit', 'zeitbuchungen', 'zeiterfassung', 'zeitkonten', 'zeitweise', 'zeitwirtschaft', 'zektaqof', 'zembok', 'zero', 'zevpkogu', 'zfghsxiw', 'zgdckste', 'zh', 'zhang', 'zhengdr', 'zheqafyo', 'zhhtyangq', 'zhm', 'zhothu', 'zhrgtang', 'zhu', 'zhuyhts', 'zhwmifvx', 'ziehe', 'zifujpvr', 'zigioachstyac', 'zip', 'ziped', 'zitec', 'ziv', 'zjcsqtdn', 'zjihgovn', 'zkaowfrx', 'zkb', 'zke', 'zkea', 'zkevitua', 'zkwfqagb', 'zkwfqagbs', 'zla', 'zlettel', 'zlftrkpq', 'zlgmctws', 'zlnfpuam', 'zlnxswvp', 'zload', 'zlp', 'zlqfptjx', 'zlx', 'zlxcsqdg', 'zlz', 'zm', 'zmcp', 'zmeo', 'zmgsfner', 'zmm', 'zmmdata', 'zmmtaxupd', 'znet', 'znewqgop', 'zneyrlhg', 'zno', 'znqcljxt', 'znr', 'zntc', 'zocjdutp', 'zokivdfa', 'zollerfgh', 'zone', 'zopbiufn', 'zopcrshl', 'zpcokgbj', 'zpd', 'zpdist', 'zpfitlyu', 'zpononpo', 'zpsr', 'zpsu', 'zpumhlic', 'zpwgoqju', 'zqbldipk', 'zqbmxdgy', 'zqt', 'zredeploy', 'zrfc', 'zrvbahym', 'zrwdgsco', 'zscr', 'zscxqdhoalaramdntyan', 'zsd', 'zsdrshstrud', 'zsdslsum', 'zslugaxq', 'zsluxctw', 'zsqabokr', 'ztfn', 'ztnfhiwq', 'zttf', 'ztyhng', 'zu', 'zuehlke', 'zugriff', 'zugriffs', 'zugriffsrechte', 'zuhoylt', 'zukommen', 'zum', 'zur', 'zurtxjbd', 'zusammen', 'zuteillisten', 'zuvjqgwa', 'zvjxuahe', 'zvnxlobq', 'zw', 'zwar', 'zwischen', 'zwrypjqv', 'zwutmehy', 'zwwirep', 'zwwzwsnkerplcb', 'zxdtskpw', 'zyjfpgtk', 'zz', 'zzcmpgn']
X_train_tfidf = vectorizer.transform(x_train_count)
X_test_tfidf = vectorizer.transform(x_test_count)
X_train_tfidf.shape
(6800, 10330)
mclf = MultinomialNB().fit(X_train_tfidf, y_train_count)
data_m=predict_ml_model(mclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['MultinomialNB_TFIdf'] = data_m
accuracy 0.581764705882353 Training score: 56.205882352941174 Testing score: 58.1764705882353
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
rclf = RandomForestClassifier()
data_m=predict_ml_model(rclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['RandomForestClassifier_TFIdf'] = data_m
accuracy 0.6694117647058824 Training score: 94.86764705882354 Testing score: 66.94117647058823
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
sclf=LogisticRegression(n_jobs=1, C=1e5)
data_m=predict_ml_model(sclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['LogisticRegression_TFIdf'] = data_m
accuracy 0.6888235294117647 Training score: 94.6029411764706 Testing score: 68.88235294117648
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning:
Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
lclf= SGDClassifier(loss='hinge', penalty='l2',alpha=1e-3, random_state=42, max_iter=5, tol=None)
data_m=predict_ml_model(lclf,X_train_tfidf,y_train_count,X_test_tfidf,y_test_count)
modecomparedf['SGDClassifier_TFIdf'] = data_m
accuracy 0.6511764705882352 Training score: 72.25 Testing score: 65.11764705882352
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
modecomparedf_new=modecomparedf.drop(["MultinomialNB","RandomForest","LogisticRegression"], axis=1)
modecomparedf_new
| ModelName | MultinomialNB_TFIdf | RandomForestClassifier_TFIdf | LogisticRegression_TFIdf | SGDClassifier_TFIdf | |
|---|---|---|---|---|---|
| 0 | TrainAccuracy | 56.205882 | 94.867647 | 94.602941 | 72.250000 |
| 1 | TestAccuracy | 58.176471 | 66.941176 | 68.882353 | 65.117647 |
| 2 | PrecisionScore | 98.254740 | 87.509943 | 75.299586 | 86.974980 |
| 3 | RecallScore | 58.176471 | 66.941176 | 68.882353 | 65.117647 |
| 4 | F1Score | 72.396392 | 73.778066 | 71.122372 | 72.145036 |
modelCompare_TFIDFVect=modecomparedf_new.set_index('ModelName').rename_axis(None).T
modelCompare_TFIDFVect['Model_Name']=['MultinomialNB_TFIdf','RandomForest_TFIdf','LogisticR_TFIdf','SGD_TFIdf']
#Accuracy plot
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y=['TrainAccuracy','TestAccuracy'], grid=True,width = 0.4)
plt.ylabel('Accuracy')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(15,10))
plt.show()
#Precision plot
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y='PrecisionScore', grid=True)
plt.title('Precision Score')
plt.ylabel('PrecisionScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
#Recall plot
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y='RecallScore', grid=True)
plt.title('Recall Score')
plt.ylabel('RecallScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
#F1 score
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y='F1Score', grid=True)
plt.title('F1 Score')
plt.ylabel('F1Score')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 1080x720 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
modelCompare_TFIDFVect.plot(kind='bar',x='Model_Name',y=['PrecisionScore','RecallScore','F1Score'], grid=True)
plt.title('Metrices Comparison')
plt.ylabel('Metrices')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 720x360 with 0 Axes>
We have fitted the transformed input to Random forest Logistic Regression,SGD and Multinomial Naive Bayes models and plotted the test train accuracy plot.
From the comparison mentioned above it is inferred that though Logistic regression and Random forest gives better training accuracy but the test accuracy comes out to be very poor. SGD Classifier NB gives 73% training accuracy in the training dataset and 65% in the testing data which shows that it has less amount of overfit. So, for TF-IDF vectorizer, SGD Classifier gives better result in terms of accuracy. It is observed that all the models have low recall.
x_train_tfid, x_test_tfidf, y_train_tfidf, y_test_tfidf = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"], finalticketsummary['Assignment group_num'], test_size=0.3,random_state=0)
print(x_train_tfid.shape,x_test_tfidf.shape)
print(y_train_tfidf.shape,y_test_tfidf.shape)
(5950,) (2550,) (5950,) (2550,)
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', MultinomialNB())])
#text_clf.fit(x_train_tfid, y_train_tfidf)
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['MultinomialNB_CountandTFIdf'] = data_m
accuracy 0.5662745098039216 Training score: 56.11764705882353 Testing score: 56.627450980392155
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', LogisticRegression(n_jobs=1, C=1e5))])
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['LogisticRegression_CountandTFIdf'] = data_m
/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning:
lbfgs failed to converge (status=1):
STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
Increase the number of iterations (max_iter) or scale the data as shown in:
https://scikit-learn.org/stable/modules/preprocessing.html
Please also refer to the documentation for alternative solver options:
https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression
accuracy 0.6627450980392157 Training score: 94.82352941176471 Testing score: 66.27450980392156
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', RandomForestClassifier())])
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['RandomForestClassifier_CountandTFIdf'] = data_m
accuracy 0.6415686274509804 Training score: 94.92436974789916
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
Testing score: 64.15686274509804
text_clf = Pipeline([('vect', CountVectorizer()),('tfidf', TfidfTransformer()), ('clf', SGDClassifier(loss='hinge', penalty='l2',alpha=1e-3, random_state=42, max_iter=5, tol=None))])
data_m=predict_ml_model(text_clf,x_train_tfid,y_train_tfidf,x_test_tfidf,y_test_tfidf)
modecomparedf['SGDClassifier_CountandTFIdf'] = data_m
accuracy 0.6462745098039215 Training score: 72.6218487394958 Testing score: 64.62745098039215
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall is ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
modecomparedf_pipe=modecomparedf.drop(["MultinomialNB","RandomForest","LogisticRegression","MultinomialNB_TFIdf","RandomForestClassifier_TFIdf","LogisticRegression_TFIdf","SGDClassifier_TFIdf"], axis=1)
modecomparedf_pipe
| ModelName | MultinomialNB_CountandTFIdf | LogisticRegression_CountandTFIdf | RandomForestClassifier_CountandTFIdf | SGDClassifier_CountandTFIdf | |
|---|---|---|---|---|---|
| 0 | TrainAccuracy | 56.117647 | 94.823529 | 94.924370 | 72.621849 |
| 1 | TestAccuracy | 56.627451 | 66.274510 | 64.156863 | 64.627451 |
| 2 | PrecisionScore | 97.895042 | 73.222735 | 86.720695 | 88.799106 |
| 3 | RecallScore | 56.627451 | 66.274510 | 64.156863 | 64.627451 |
| 4 | F1Score | 70.959219 | 68.435308 | 71.734852 | 72.933984 |
modelCompare_Pipe=modecomparedf_pipe.set_index('ModelName').rename_axis(None).T
modelCompare_Pipe['Model_Name']=['MultinomialNB_TFIdf','RandomForestClassifier_TFIdf','LogisticRegression_TFIdf','SGDClassifier_TFIdf']
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y=['PrecisionScore','RecallScore','F1Score'], grid=True)
plt.title('Metrices Comparison')
plt.ylabel('Metrices')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 720x360 with 0 Axes>
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y=['TrainAccuracy','TestAccuracy'], grid=True,width = 0.4)
plt.title('Training and Test accuracy')
plt.ylabel('Accuracy')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(15,10))
plt.show()
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y='PrecisionScore', grid=True)
plt.title('Precision Score')
plt.ylabel('PrecisionScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y='RecallScore', grid=True)
plt.title('Recall Score')
plt.ylabel('RecallScore')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
modelCompare_Pipe.plot(kind='bar',x='Model_Name',y='F1Score', grid=True)
plt.title('F1 Score')
plt.ylabel('F1Score')
#modelCompare_countVect.plot(kind='line',x='Model_Nmae',y='', grid=True)
fig = plt.figure(figsize=(10,5))
plt.show()
<Figure size 1080x720 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
<Figure size 720x360 with 0 Axes>
From the comparison mentioned above it is inferred that though Logistic regression and Random forest gives better training accuracy but the test accuracy comes out to be very poor. SGD Classifier NB gives 72% training accuracy in the training dataset and 64% in the testing data which shows that it has less amount of overfit. So, for Count and TF-IDF vectorizer, SGD Classifier gives better result in terms of accuracy. It is observed that all the models have low recall.
4.1.1.Building of basic model with one Embedding,LSTM and Dense layer without weight matrix to check the accuracy.
4.1.2.Tokenization and vocab creation
4.1.3.Base Model with categorical_crossentropy and adam optimizer
4.1.4. Prediction
4.1.5.Error Plot
4.1.6 Prediction block and classification report
4.1.7.Observation
4.3.1.Building of basic model with one Embedding,LSTM and Dense layer with weight matrix to check the accuracy.
4.3.2.Tokenization and vocab creation
4.3.3.Base Model with categorical_crossentropy and adam optimizer
4.3.4.Error Plot
4.3.5 Prediction block and classification report
4.3.6.Observation
4.4.1. Building of a model with one Embedding with glove 100d weight matrix, one bidirectional LSTM and one Dense layer to check the accuracy.
4.4.2.Bi directional LSTM Model with categorical_crossentropy and adam optimizer
4.4.3.Error Plot
4.4.4. Prediction block and classification report
4.4.5.Observation
4.5.1. Building of a model with one Embedding layer with glove 100d weight matrix, one bidirectional LSTM with return sequence as True and one flatten and one Dense layer.
4.5.2.Model Description
4.5.3.Error Plot
4.5.4. Prediction block and classification report
4.5.5.Observation
4.6.1. Building of a model with one Embedding layer with glove 100d weight matrix, one bidirectional LSTM with return sequence as True,1 globalmaxpool1D,3 Dense layers.
4.6.2.Model Description
4.6.3.Error Plot
4.6.4. Prediction block and classification report
4.6.5.Observation
4.7.1. Building of a model with one Embedding layer with glove 100d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer.
4.7.2.Model Description
4.7.3.Error Plot
4.7.4. Prediction block and classification report
4.7.5.Observation
4..8.1. Building of a model with one Embedding layer with glove 100d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer, 1 drop out layer and 1 spatial drop out layer
4.8.2.Model Description
4.8.3. Prediction block and classification report
4.8.5.Error Plot
4.8.6.Observation
Embedding index
finalticketsummary=finaldataset
embeddings_index = {}
f = open(EMBEDDING_FILE)
for line in f:
values = line.split()
word = values[0]
coefs = np.asarray(values[1:], dtype='float32')
embeddings_index[word] = coefs
f.close()
print('Found %s word vectors.' % len(embeddings_index))
Found 400000 word vectors.
y = pd.get_dummies(finalticketsummary["Assignment group"]).values
y.shape
#Convert y to onehot encoded output
(5435, 5)
y.shape
(5435, 5)
y
array([[1, 0, 0, 0, 0],
[1, 0, 0, 0, 0],
[1, 0, 0, 0, 0],
...,
[0, 0, 1, 0, 0],
[0, 0, 1, 0, 0],
[1, 0, 0, 0, 0]], dtype=uint8)
X_train_basic,X_test_basic,y_train_basic,y_test_basic = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
#70:30 split
print(y_test_basic.shape)
print(y_train_basic.shape)
(1631, 5) (3804, 5)
print(X_train_basic.shape)
print(X_test_basic.shape)
(3804,) (1631,)
tokenizer = Tokenizer()
tokenizer.fit_on_texts(finalticketsummary["CleanTextAfterRemoveStopword"])
word_index = tokenizer.word_index
vocab_size=len(word_index)+1
##Tokenize the words
vocab_size
#Calculate vocab size
6743
finalticketsummary["WordLength"] = finalticketsummary['CleanTextAfterRemoveStopword'].str.split().str.len()
Get max length of word
finalticketsummary.sort_values(by='WordLength', ascending=False).head()
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | Assignment group_num | WordLength | |
|---|---|---|---|---|---|
| 7445 | GRP_12 | security incident dsw suspicious ms rpc ms ds ... | [security, incident, dsw, suspicious, ms, rpc,... | 1 | 352 |
| 8490 | GRP_0 | stepfhryhan need access collaboration platform... | [stepfhryhan, need, access, collaboration, pla... | 0 | 232 |
| 2709 | GRP_0 | mobile device activation tsbnfixp numwqahj sen... | [mobile, device, activation, tsbnfixp, numwqah... | 0 | 227 |
| 6273 | GRP_12 | security incident dsw incident no suspicious m... | [security, incident, dsw, incident, no, suspic... | 1 | 220 |
| 6676 | GRP_0 | symantec endpoint encryption see agent roll eu... | [symantec, endpoint, encryption, see, agent, r... | 0 | 202 |
sequences = tokenizer.texts_to_sequences(X_train_basic)
X_train_padded = pad_sequences(sequences, maxlen=352)
sequences = tokenizer.texts_to_sequences(X_test_basic)
X_test_padded=pad_sequences(sequences, maxlen=352)
X_test_padded.shape
#padd the input to have same size
(1631, 352)
X_train_padded.shape
(3804, 352)
This model has 1 embedding layer 1 lstm layer with output 100 and return sequence as false and onse dense layer with output 5 as 5 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
embedding_vector_features=100
model=Sequential()
model.add(Embedding(vocab_size,embedding_vector_features,input_length=352))
model.add(LSTM(100,return_sequences=False))
model.add(Dense(5,activation='softmax'))
model.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model.summary())
Model: "sequential" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding (Embedding) (None, 352, 100) 674300 _________________________________________________________________ lstm (LSTM) (None, 100) 80400 _________________________________________________________________ dense (Dense) (None, 5) 505 ================================================================= Total params: 755,205 Trainable params: 755,205 Non-trainable params: 0 _________________________________________________________________ None
history=model.fit(X_train_padded,y_train_basic,validation_data=(X_test_padded,y_test_basic),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',min_delta=0.0001,patience=5)])
Epoch 1/30 39/39 [==============================] - 2s 50ms/step - loss: 1.0005 - accuracy: 0.7179 - val_loss: 0.6821 - val_accuracy: 0.7627 Epoch 2/30 39/39 [==============================] - 2s 41ms/step - loss: 0.4928 - accuracy: 0.8381 - val_loss: 0.4288 - val_accuracy: 0.8455 Epoch 3/30 39/39 [==============================] - 2s 40ms/step - loss: 0.3099 - accuracy: 0.8880 - val_loss: 0.3495 - val_accuracy: 0.8792 Epoch 4/30 39/39 [==============================] - 2s 41ms/step - loss: 0.2236 - accuracy: 0.9177 - val_loss: 0.3343 - val_accuracy: 0.8811 Epoch 5/30 39/39 [==============================] - 2s 41ms/step - loss: 0.1821 - accuracy: 0.9293 - val_loss: 0.3001 - val_accuracy: 0.8903 Epoch 6/30 39/39 [==============================] - 2s 40ms/step - loss: 0.1388 - accuracy: 0.9406 - val_loss: 0.3266 - val_accuracy: 0.8915 Epoch 7/30 39/39 [==============================] - 2s 40ms/step - loss: 0.1130 - accuracy: 0.9485 - val_loss: 0.2888 - val_accuracy: 0.9074 Epoch 8/30 39/39 [==============================] - 2s 40ms/step - loss: 0.0914 - accuracy: 0.9603 - val_loss: 0.3514 - val_accuracy: 0.9007 Epoch 9/30 39/39 [==============================] - 2s 40ms/step - loss: 0.0922 - accuracy: 0.9572 - val_loss: 0.2993 - val_accuracy: 0.9062 Epoch 10/30 39/39 [==============================] - 2s 40ms/step - loss: 0.0763 - accuracy: 0.9614 - val_loss: 0.3154 - val_accuracy: 0.8970 Epoch 11/30 39/39 [==============================] - 2s 41ms/step - loss: 0.0704 - accuracy: 0.9629 - val_loss: 0.3449 - val_accuracy: 0.9062 Epoch 12/30 39/39 [==============================] - 2s 40ms/step - loss: 0.0675 - accuracy: 0.9650 - val_loss: 0.3368 - val_accuracy: 0.9093
def groupname(prediction):
if prediction == 0:
prediction='Group_0'
print (prediction)
elif prediction == 1:
prediction='Group_8'
print (prediction)
elif prediction==2:
prediction='Group_24'
print (prediction)
elif prediction==3:
prediction='Group_12'
print (prediction)
elif prediction==4:
prediction='Group_9'
print (prediction)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
list[np.argmax(pred)]
[[9.9990022e-01 5.2180665e-05 6.5937229e-06 1.9324238e-05 2.1635287e-05]]
'Group_0'
testval
[[11, 21, 151, 12, 217]]
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
list[np.argmax(pred)]
[[2.3502205e-03 5.8402391e-03 9.8937702e-01 6.6756166e-04 1.7649850e-03]]
'Group_24'
testval
[[55, 121, 1083, 317, 958, 1761]]
acc = history.history['accuracy']
val_acc = history.history['val_accuracy']
loss = history.history['loss']
val_loss = history.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
features=["analysis not work run quote report show tool bar try open erp business give error launcher exit add register correctly"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["circuit outage india carrier company"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["usa file server hostname fail hard drive"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[0.00413338 0.01021876 0.00355903 0.02914483 0.95294404]]
Group_9
[[0.03210765 0.0308573 0.00981625 0.5926108 0.33460805]]
Group_8
[[3.3698737e-04 9.5811421e-01 8.9993188e-04 2.5189290e-02 1.5459565e-02]]
Group_12
51/51 - 0s
precision recall f1-score support
0 0.96 0.98 0.97 1201
1 0.74 0.51 0.60 77
2 0.95 0.88 0.91 89
3 0.75 0.90 0.82 190
4 0.43 0.22 0.29 74
micro avg 0.91 0.91 0.91 1631
macro avg 0.77 0.70 0.72 1631
weighted avg 0.90 0.91 0.90 1631
samples avg 0.91 0.91 0.91 1631
We can observe that there are 755,205 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 11 epochs comes with 96 in train and 90 in test which has a larger overfit and to less training loss compare to validation loss.
The error plot also explains the overfit.
If we see the classification report we can see the f1 score came poor for 5th highest group among top 5 ,so compare to machine learning model where 2 gropus had poor f1 here only one group but due to large overfit we cannot select this model.
embedding_vector_features=100
modelr=Sequential()
modelr.add(Embedding(vocab_size,embedding_vector_features,input_length=352))
modelr.add(LSTM(100,return_sequences=False))
modelr.add(Dropout(0.2))
modelr.add(Dense(5,activation='softmax'))
modelr.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(modelr.summary())
Model: "sequential_1" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_1 (Embedding) (None, 352, 100) 674300 _________________________________________________________________ lstm_1 (LSTM) (None, 100) 80400 _________________________________________________________________ dropout (Dropout) (None, 100) 0 _________________________________________________________________ dense_1 (Dense) (None, 5) 505 ================================================================= Total params: 755,205 Trainable params: 755,205 Non-trainable params: 0 _________________________________________________________________ None
history=modelr.fit(X_train_padded,y_train_basic,validation_data=(X_test_padded,y_test_basic),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',min_delta=0.0001,patience=5)])
Epoch 1/30 39/39 [==============================] - 2s 48ms/step - loss: 1.0276 - accuracy: 0.7108 - val_loss: 0.7610 - val_accuracy: 0.7364 Epoch 2/30 39/39 [==============================] - 1s 38ms/step - loss: 0.5640 - accuracy: 0.8226 - val_loss: 0.4231 - val_accuracy: 0.8430 Epoch 3/30 39/39 [==============================] - 1s 38ms/step - loss: 0.3282 - accuracy: 0.8822 - val_loss: 0.4093 - val_accuracy: 0.8645 Epoch 4/30 39/39 [==============================] - 1s 38ms/step - loss: 0.2665 - accuracy: 0.9083 - val_loss: 0.3121 - val_accuracy: 0.8964 Epoch 5/30 39/39 [==============================] - 1s 38ms/step - loss: 0.1821 - accuracy: 0.9327 - val_loss: 0.3123 - val_accuracy: 0.9031 Epoch 6/30 39/39 [==============================] - 1s 38ms/step - loss: 0.1451 - accuracy: 0.9422 - val_loss: 0.2890 - val_accuracy: 0.9044 Epoch 7/30 39/39 [==============================] - 1s 38ms/step - loss: 0.1183 - accuracy: 0.9506 - val_loss: 0.2881 - val_accuracy: 0.9068 Epoch 8/30 39/39 [==============================] - 1s 38ms/step - loss: 0.1013 - accuracy: 0.9545 - val_loss: 0.2952 - val_accuracy: 0.9080 Epoch 9/30 39/39 [==============================] - 2s 39ms/step - loss: 0.0940 - accuracy: 0.9561 - val_loss: 0.3127 - val_accuracy: 0.8939 Epoch 10/30 39/39 [==============================] - 1s 38ms/step - loss: 0.0884 - accuracy: 0.9616 - val_loss: 0.2904 - val_accuracy: 0.9037 Epoch 11/30 39/39 [==============================] - 2s 39ms/step - loss: 0.0814 - accuracy: 0.9648 - val_loss: 0.2960 - val_accuracy: 0.9142 Epoch 12/30 39/39 [==============================] - 1s 38ms/step - loss: 0.0767 - accuracy: 0.9608 - val_loss: 0.3118 - val_accuracy: 0.9001
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelr.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
list[np.argmax(pred)]
[[9.9984145e-01 7.1105627e-05 3.2362423e-05 2.1557198e-05 3.3500583e-05]]
'Group_0'
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelr.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
list[np.argmax(pred)]
[[2.6733417e-03 2.2491664e-03 9.9212146e-01 7.1236124e-04 2.2437267e-03]]
'Group_24'
acc = history.history['accuracy']
val_acc = history.history['val_accuracy']
loss = history.history['loss']
val_loss = history.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
y_probs = modelr.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
51/51 - 0s
precision recall f1-score support
0 0.97 0.97 0.97 1194
1 0.60 0.77 0.67 74
2 0.88 0.84 0.86 90
3 0.77 0.93 0.84 200
4 0.57 0.05 0.10 73
micro avg 0.91 0.91 0.91 1631
macro avg 0.76 0.71 0.69 1631
weighted avg 0.90 0.91 0.90 1631
samples avg 0.91 0.91 0.91 1631
features=["analysis not work run quote report show tool bar try open erp business give error launcher exit add register correctly"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelr.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["circuit outage india carrier company"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelr.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["usa file server hostname fail hard drive"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelr.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
[[0.00413338 0.01021876 0.00355903 0.02914483 0.95294404]] Group_9 [[0.03210765 0.0308573 0.00981625 0.5926108 0.33460805]] Group_8 [[3.3698737e-04 9.5811421e-01 8.9993188e-04 2.5189290e-02 1.5459565e-02]] Group_12
We can observe that there are 755,205 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 12 epochs comes with 96 in train and 90 in test which has a large overfit but the overfit is reduced with respect to previous model
The error plot also explains the overfit.
If we see the classification report we can see the f1 score came very poor for 5th and 2nd highest group among top 5 and same result with dropout so we cannot select this model for above reason
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
embedding_dim = 100
embedding_matrix = np.zeros((vocab_size, embedding_dim))
for word, i in tokenizer.word_index.items():
if i < vocab_size:
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
Padding
def padd_sequence(X_train_Glove,X_test_Glove):
sequences = tokenizer.texts_to_sequences(X_train_Glove)
X_train_padded_Glove = pad_sequences(sequences, maxlen=352)
sequences = tokenizer.texts_to_sequences(X_test_Glove)
X_test_padded_Glove=pad_sequences(sequences, maxlen=352)
print(X_test_padded_Glove.shape,X_train_padded_Glove.shape)
return X_train_padded_Glove,X_test_padded_Glove
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer with weight matrix of glove 100, 1 lstm layer with output 128 and return sequence as false and one dense layer with output 5 and softmax activation , as 5 groups are there for prediction. Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model1 = Sequential()
model1.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
model1.add(LSTM(128, return_sequences=False))
model1.add(Dense(5, activation='softmax'))
model1.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model1.summary())
Model: "sequential_2" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_2 (Embedding) (None, 352, 100) 674300 _________________________________________________________________ lstm_2 (LSTM) (None, 128) 117248 _________________________________________________________________ dense_2 (Dense) (None, 5) 645 ================================================================= Total params: 792,193 Trainable params: 792,193 Non-trainable params: 0 _________________________________________________________________ None
history1=model1.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=10,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/10 39/39 [==============================] - 2s 48ms/step - loss: 0.7614 - accuracy: 0.7608 - val_loss: 0.4555 - val_accuracy: 0.8461 Epoch 2/10 39/39 [==============================] - 2s 40ms/step - loss: 0.4111 - accuracy: 0.8596 - val_loss: 0.3491 - val_accuracy: 0.8945 Epoch 3/10 39/39 [==============================] - 2s 41ms/step - loss: 0.2901 - accuracy: 0.8956 - val_loss: 0.3638 - val_accuracy: 0.8663 Epoch 4/10 39/39 [==============================] - 2s 40ms/step - loss: 0.2487 - accuracy: 0.9056 - val_loss: 0.2702 - val_accuracy: 0.8970 Epoch 5/10 39/39 [==============================] - 2s 41ms/step - loss: 0.1880 - accuracy: 0.9246 - val_loss: 0.2479 - val_accuracy: 0.9129 Epoch 6/10 39/39 [==============================] - 2s 40ms/step - loss: 0.1519 - accuracy: 0.9356 - val_loss: 0.2342 - val_accuracy: 0.9001 Epoch 7/10 39/39 [==============================] - 2s 40ms/step - loss: 0.1284 - accuracy: 0.9453 - val_loss: 0.2401 - val_accuracy: 0.9037 Epoch 8/10 39/39 [==============================] - 2s 40ms/step - loss: 0.1159 - accuracy: 0.9443 - val_loss: 0.2393 - val_accuracy: 0.9166
acc = history1.history['accuracy']
val_acc = history1.history['val_accuracy']
loss = history1.history['loss']
val_loss = history1.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["analysis not work run quote report show tool bar try open erp business give error launcher exit add register correctly"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["circuit outage india carrier company"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["usa file server hostname fail hard drive"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model1.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9981254e-01 5.8077159e-05 1.2360166e-05 8.2303995e-05 3.4804369e-05]]
Group_0
[[3.0572072e-03 1.7092940e-03 9.9321365e-01 3.5595472e-04 1.6638638e-03]]
Group_24
[[0.00413338 0.01021876 0.00355903 0.02914483 0.95294404]]
Group_9
[[0.03210765 0.0308573 0.00981625 0.5926108 0.33460805]]
Group_8
[[3.3698737e-04 9.5811421e-01 8.9993188e-04 2.5189290e-02 1.5459565e-02]]
Group_12
51/51 - 0s
precision recall f1-score support
0 0.99 0.99 0.99 1201
1 0.79 0.87 0.83 77
2 0.97 0.97 0.97 89
3 0.76 0.96 0.85 190
4 0.88 0.20 0.33 74
micro avg 0.94 0.94 0.94 1631
macro avg 0.88 0.80 0.79 1631
weighted avg 0.95 0.94 0.93 1631
samples avg 0.94 0.94 0.94 1631
We can observe that there are 792193 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 8 epochs comes with 94 in train and 91 in test which has a overfit.
The error plot also explains the overfit.
If we see the classification report we can see the f1 score came bad for the 5th highest groups and also due to large overfit we cannot select this model.
X_train_Glove_bi,X_test_Glove_bi,y_train_Glove_bi,y_test_Glove_bi = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_bi_padded,X_test_Glove_bi_padded=padd_sequence(X_train_Glove_bi,X_test_Glove_bi)
(1631, 352) (3804, 352)
X_train_Glove_bi_padded.shape
(3804, 352)
This model has 1 embedding layer with glove 100d weight matrix, 1 Bi directional lstm layer with output 128 and return sequence as false and one dense layer with output 5 as 5 groups are there for prediction with soft max in dense layer as activation
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from tensorflow.keras.layers import LSTM, Embedding, Dense, Dropout, Bidirectional
model2 = Sequential()
model2.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
#model2.add(Dropout(0.1))
model2.add(Bidirectional(LSTM(128, return_sequences=False)))
model2.add(Dense(5, activation='softmax'))
model2.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model2.summary())
Model: "sequential_4" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_4 (Embedding) (None, 352, 100) 674300 _________________________________________________________________ bidirectional_1 (Bidirection (None, 256) 234496 _________________________________________________________________ dense_4 (Dense) (None, 5) 1285 ================================================================= Total params: 910,081 Trainable params: 910,081 Non-trainable params: 0 _________________________________________________________________ None
history2=model2.fit(X_train_Glove_bi_padded,y_train_Glove_bi,validation_data=(X_test_Glove_bi_padded,y_test_Glove_bi),epochs=10,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/10 39/39 [==============================] - 3s 81ms/step - loss: 0.8046 - accuracy: 0.7542 - val_loss: 0.5048 - val_accuracy: 0.8363 Epoch 2/10 39/39 [==============================] - 3s 67ms/step - loss: 0.4224 - accuracy: 0.8507 - val_loss: 0.3700 - val_accuracy: 0.8909 Epoch 3/10 39/39 [==============================] - 3s 68ms/step - loss: 0.2959 - accuracy: 0.8988 - val_loss: 0.2846 - val_accuracy: 0.8939 Epoch 4/10 39/39 [==============================] - 3s 68ms/step - loss: 0.2210 - accuracy: 0.9114 - val_loss: 0.2716 - val_accuracy: 0.9099 Epoch 5/10 39/39 [==============================] - 3s 67ms/step - loss: 0.1961 - accuracy: 0.9217 - val_loss: 0.2516 - val_accuracy: 0.9086 Epoch 6/10 39/39 [==============================] - 3s 67ms/step - loss: 0.1476 - accuracy: 0.9385 - val_loss: 0.2487 - val_accuracy: 0.9142 Epoch 7/10 39/39 [==============================] - 3s 67ms/step - loss: 0.1505 - accuracy: 0.9356 - val_loss: 0.2851 - val_accuracy: 0.9031 Epoch 8/10 39/39 [==============================] - 3s 67ms/step - loss: 0.1264 - accuracy: 0.9416 - val_loss: 0.2509 - val_accuracy: 0.9123
acc = history2.history['accuracy']
val_acc = history2.history['val_accuracy']
loss = history2.history['loss']
val_loss = history2.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model2.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model2.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["analysis not work run quote report show tool bar try open erp business give error launcher exit add register correctly"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model2.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["circuit outage india carrier company"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model2.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["usa file server hostname fail hard drive"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model2.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model2.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9781883e-01 1.6591271e-03 1.7821304e-04 1.5166141e-04 1.9221430e-04]]
Group_0
[[0.01028503 0.00698364 0.9736177 0.00657778 0.0025359 ]]
Group_24
[[0.0254306 0.16864496 0.00077824 0.15146501 0.65368116]]
Group_9
[[0.27506718 0.03691607 0.05725357 0.61483693 0.01592616]]
Group_8
[[0.00645555 0.9352032 0.00408375 0.05036519 0.00389235]]
Group_12
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1201
1 0.81 0.88 0.84 77
2 1.00 0.94 0.97 89
3 0.75 0.95 0.84 190
4 0.88 0.20 0.33 74
micro avg 0.94 0.94 0.94 1631
macro avg 0.89 0.79 0.79 1631
weighted avg 0.95 0.94 0.93 1631
samples avg 0.94 0.94 0.94 1631
We can observe that there are 910,081 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 8 epochs comes with 94 in train and 91 in test which has a overfit and too less training loss compare to validation loss.
The error plot also explains the overfit.
If we see the classification report we can see the f1 score came poor for 5th highest group among top 5 along with that due to large overfit we cannot select this model.
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer with glov 100d 1 bi directional lstm layer with output 128 and return sequence as true, one flatten layer and one dense layer with output 5 as 5 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import TimeDistributed
from keras.models import Sequential
from keras.layers import Activation, Dense, Flatten
model13 = Sequential()
model13.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
model13.add(Bidirectional(LSTM(128, return_sequences=True)))
model13.add(Flatten())
model13.add(Dense(5, activation='softmax'))
model13.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model13.summary())
Model: "sequential_5" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_5 (Embedding) (None, 352, 100) 674300 _________________________________________________________________ bidirectional_2 (Bidirection (None, 352, 256) 234496 _________________________________________________________________ flatten (Flatten) (None, 90112) 0 _________________________________________________________________ dense_5 (Dense) (None, 5) 450565 ================================================================= Total params: 1,359,361 Trainable params: 1,359,361 Non-trainable params: 0 _________________________________________________________________ None
history13=model13.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=10,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/10 39/39 [==============================] - 3s 82ms/step - loss: 0.6625 - accuracy: 0.8007 - val_loss: 0.4550 - val_accuracy: 0.8302 Epoch 2/10 39/39 [==============================] - 3s 69ms/step - loss: 0.3214 - accuracy: 0.8899 - val_loss: 0.3562 - val_accuracy: 0.8774 Epoch 3/10 39/39 [==============================] - 3s 69ms/step - loss: 0.2220 - accuracy: 0.9180 - val_loss: 0.3240 - val_accuracy: 0.8945 Epoch 4/10 39/39 [==============================] - 3s 68ms/step - loss: 0.1790 - accuracy: 0.9311 - val_loss: 0.3198 - val_accuracy: 0.8945 Epoch 5/10 39/39 [==============================] - 3s 68ms/step - loss: 0.1292 - accuracy: 0.9445 - val_loss: 0.3324 - val_accuracy: 0.8909 Epoch 6/10 39/39 [==============================] - 3s 68ms/step - loss: 0.1043 - accuracy: 0.9503 - val_loss: 0.3339 - val_accuracy: 0.9025
def plot_acc(history2):
acc = history2.history['accuracy']
val_acc = history2.history['val_accuracy']
loss = history2.history['loss']
val_loss = history2.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
plot_acc(history13)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model13.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model13.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["analysis not work run quote report show tool bar try open erp business give error launcher exit add register correctly"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model13.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model13.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9951470e-01 1.9155235e-04 1.1624792e-05 2.2662511e-05 2.5936886e-04]]
Group_0
[[0.0017915 0.00175925 0.989513 0.00124688 0.00568954]]
Group_24
[[1.7151229e-01 1.3517665e-02 3.6395938e-04 8.4765983e-04 8.1375849e-01]]
Group_9
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1201
1 0.96 0.88 0.92 77
2 0.97 0.98 0.97 89
3 0.76 0.97 0.85 190
4 0.88 0.20 0.33 74
micro avg 0.95 0.95 0.95 1631
macro avg 0.91 0.81 0.81 1631
weighted avg 0.95 0.95 0.94 1631
samples avg 0.95 0.95 0.95 1631
We can observe that there are 1,359,361 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 8 epochs with early stopping comes with 95 in train and 90 in test which has a larger overfit and to less training loss compare to validation loss.
The error plot also explains the overfit.
If we see the classification report we can see the f1 score came low for 5th highest group and also due to large overfit we cannot select this model
X_train_Glove_bi,X_test_Glove_bi,y_train_Glove_bi,y_test_Glove_bi = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_bi_padded,X_test_Glove_bi_padded=padd_sequence(X_train_Glove_bi,X_test_Glove_bi)
(1631, 352) (3804, 352)
from keras.layers import Dense, Input, Embedding, Dropout, Activation, Flatten, Bidirectional, GlobalMaxPool1D
This model has 1 embedding layer with glove 100d embedding and 1 bidirectional lstm layer with output 128 and return sequence as true and one globalmaxpool1D layer and 3 dense layers with final layer having output as 5 as 5 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model4 = Sequential()
model4.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix]))
model4.add(Bidirectional(LSTM(units=128 , return_sequences = True)))
model4.add(GlobalMaxPool1D())
model4.add(Dense(100, activation="relu"))
#model4.add(Dropout(0.5))
model4.add(Dense(80, activation="relu"))
#model4.add(Dropout(0.5))
model4.add(Dense(5, activation="softmax"))
model4.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'])
print(model4.summary())
Model: "sequential_5" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_5 (Embedding) (None, None, 100) 674300 _________________________________________________________________ bidirectional_2 (Bidirection (None, None, 256) 234496 _________________________________________________________________ global_max_pooling1d (Global (None, 256) 0 _________________________________________________________________ dense_5 (Dense) (None, 100) 25700 _________________________________________________________________ dense_6 (Dense) (None, 80) 8080 _________________________________________________________________ dense_7 (Dense) (None, 5) 405 ================================================================= Total params: 942,981 Trainable params: 942,981 Non-trainable params: 0 _________________________________________________________________ None
history4=model4.fit(X_train_Glove_bi_padded,y_train_Glove_bi,validation_data=(X_test_Glove_bi_padded,y_test_Glove_bi),epochs=10,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/10 39/39 [==============================] - 3s 86ms/step - loss: 0.7936 - accuracy: 0.7723 - val_loss: 0.4695 - val_accuracy: 0.8565 Epoch 2/10 39/39 [==============================] - 3s 70ms/step - loss: 0.3845 - accuracy: 0.8696 - val_loss: 0.3044 - val_accuracy: 0.8909 Epoch 3/10 39/39 [==============================] - 3s 70ms/step - loss: 0.2470 - accuracy: 0.9069 - val_loss: 0.2388 - val_accuracy: 0.9074 Epoch 4/10 39/39 [==============================] - 3s 70ms/step - loss: 0.1798 - accuracy: 0.9261 - val_loss: 0.2481 - val_accuracy: 0.9086 Epoch 5/10 39/39 [==============================] - 3s 69ms/step - loss: 0.1322 - accuracy: 0.9437 - val_loss: 0.2951 - val_accuracy: 0.9074 Epoch 6/10 39/39 [==============================] - 3s 69ms/step - loss: 0.1131 - accuracy: 0.9493 - val_loss: 0.2473 - val_accuracy: 0.9086 Epoch 7/10 39/39 [==============================] - 3s 69ms/step - loss: 0.0957 - accuracy: 0.9532 - val_loss: 0.2482 - val_accuracy: 0.9105 Epoch 8/10 39/39 [==============================] - 3s 69ms/step - loss: 0.0814 - accuracy: 0.9600 - val_loss: 0.2896 - val_accuracy: 0.9001
plot_acc(history4)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model4.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model4.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model4.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9999762e-01 1.4118532e-06 6.2388182e-08 8.0040530e-11 8.6592678e-07]]
Group_0
[[5.0778495e-04 2.5379696e-04 9.9918252e-01 4.3070060e-05 1.2752812e-05]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1194
1 0.87 0.96 0.91 74
2 0.98 0.92 0.95 90
3 1.00 0.66 0.79 200
4 0.51 0.90 0.65 73
micro avg 0.94 0.94 0.94 1631
macro avg 0.87 0.89 0.86 1631
weighted avg 0.96 0.94 0.94 1631
samples avg 0.94 0.94 0.94 1631
We can observe that there are 942,981 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 8 epochs with early stopping comes with 96 in train and 90 in test which has a larger overfit and to less training loss compare to validation loss.
The error plot also explains the overfit.
If we see the classification report we can see the f1 score came not well for 4th and 5th highest group and due to large overfit we cannot select this model
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer 2 bidirectional LSTM layers with weight matrix as glove 100 and return sequence as True and one flatten and one dense layer with output 5 as 5 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model007 = Sequential()
model007.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
model007.add(Bidirectional(LSTM(128, return_sequences=True)))
model007.add(Bidirectional(LSTM(128, return_sequences=True)))
model007.add(Flatten())
model007.add(Dense(5,activation='softmax'))
model007.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model007.summary())
Model: "sequential_7" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_7 (Embedding) (None, 352, 100) 674300 _________________________________________________________________ bidirectional_5 (Bidirection (None, 352, 256) 234496 _________________________________________________________________ bidirectional_6 (Bidirection (None, 352, 256) 394240 _________________________________________________________________ flatten_2 (Flatten) (None, 90112) 0 _________________________________________________________________ dense_9 (Dense) (None, 5) 450565 ================================================================= Total params: 1,753,601 Trainable params: 1,753,601 Non-trainable params: 0 _________________________________________________________________ None
history007=model007.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=10,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/10 39/39 [==============================] - 6s 162ms/step - loss: 0.6764 - accuracy: 0.8031 - val_loss: 0.5167 - val_accuracy: 0.8418 Epoch 2/10 39/39 [==============================] - 5s 134ms/step - loss: 0.3600 - accuracy: 0.8809 - val_loss: 0.3397 - val_accuracy: 0.8676 Epoch 3/10 39/39 [==============================] - 5s 134ms/step - loss: 0.2684 - accuracy: 0.9012 - val_loss: 0.2888 - val_accuracy: 0.9001 Epoch 4/10 39/39 [==============================] - 5s 134ms/step - loss: 0.2109 - accuracy: 0.9196 - val_loss: 0.2672 - val_accuracy: 0.9025 Epoch 5/10 39/39 [==============================] - 5s 134ms/step - loss: 0.1503 - accuracy: 0.9364 - val_loss: 0.2933 - val_accuracy: 0.8921 Epoch 6/10 39/39 [==============================] - 5s 134ms/step - loss: 0.1190 - accuracy: 0.9485 - val_loss: 0.3163 - val_accuracy: 0.9001 Epoch 7/10 39/39 [==============================] - 5s 134ms/step - loss: 0.0993 - accuracy: 0.9561 - val_loss: 0.3695 - val_accuracy: 0.8964 Epoch 8/10 39/39 [==============================] - 5s 133ms/step - loss: 0.1043 - accuracy: 0.9550 - val_loss: 0.3830 - val_accuracy: 0.8939 Epoch 9/10 39/39 [==============================] - 5s 133ms/step - loss: 0.0862 - accuracy: 0.9582 - val_loss: 0.4040 - val_accuracy: 0.8976
plot_acc(history007)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model007.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model007.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model007.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9999869e-01 9.7070631e-07 4.8370254e-08 8.7049607e-08 2.7455670e-07]]
Group_0
[[2.9741391e-04 8.6993753e-04 9.9757141e-01 9.2027348e-04 3.4092428e-04]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.99 1.00 0.99 1194
1 0.97 0.86 0.91 74
2 1.00 0.92 0.96 90
3 0.77 0.99 0.87 200
4 0.88 0.19 0.31 73
micro avg 0.95 0.95 0.95 1631
macro avg 0.92 0.79 0.81 1631
weighted avg 0.96 0.95 0.94 1631
samples avg 0.95 0.95 0.95 1631
We can observe that there are 1,753,601 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 10 epochs comes with 95 in train and 89 in test which has a larger overfit and to less training loss compare to validation loss.
The error plot also explains the overfit.
If we see the classification report we can see the f1 score came bad for 5th highest group and due to large overfit we cannot select this model.
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer 2 bidirectional LSTM layers with weight matrix as glove 100 and return sequence as True and one flatten and one dense layer with 1 drop out layer and 1 spatial drop out layer .
Drop out we have used 0.3 and spatial drop out as 0.4
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import Activation, Dense, Flatten, Dropout, Bidirectional, SpatialDropout1D
model009 = Sequential()
model009.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
model009.add(SpatialDropout1D(0.4))
model009.add(Bidirectional(LSTM(128, return_sequences=True)))
model009.add(Dropout(0.3))
model009.add(Bidirectional(LSTM(128, return_sequences=True)))
model009.add(Flatten())
model009.add(Dense(5,activation='softmax'))
model009.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model009.summary())
Model: "sequential_9" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_9 (Embedding) (None, 352, 100) 674300 _________________________________________________________________ spatial_dropout1d_1 (Spatial (None, 352, 100) 0 _________________________________________________________________ bidirectional_9 (Bidirection (None, 352, 256) 234496 _________________________________________________________________ dropout_2 (Dropout) (None, 352, 256) 0 _________________________________________________________________ bidirectional_10 (Bidirectio (None, 352, 256) 394240 _________________________________________________________________ flatten_4 (Flatten) (None, 90112) 0 _________________________________________________________________ dense_11 (Dense) (None, 5) 450565 ================================================================= Total params: 1,753,601 Trainable params: 1,753,601 Non-trainable params: 0 _________________________________________________________________ None
history009=model009.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=10,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/10 39/39 [==============================] - 6s 163ms/step - loss: 0.7149 - accuracy: 0.7818 - val_loss: 0.4511 - val_accuracy: 0.8479 Epoch 2/10 39/39 [==============================] - 5s 135ms/step - loss: 0.4285 - accuracy: 0.8554 - val_loss: 0.4824 - val_accuracy: 0.8387 Epoch 3/10 39/39 [==============================] - 5s 136ms/step - loss: 0.3383 - accuracy: 0.8883 - val_loss: 0.3524 - val_accuracy: 0.9019 Epoch 4/10 39/39 [==============================] - 5s 137ms/step - loss: 0.2841 - accuracy: 0.9033 - val_loss: 0.3064 - val_accuracy: 0.8866 Epoch 5/10 39/39 [==============================] - 5s 138ms/step - loss: 0.2437 - accuracy: 0.9054 - val_loss: 0.3169 - val_accuracy: 0.9050 Epoch 6/10 39/39 [==============================] - 5s 137ms/step - loss: 0.2258 - accuracy: 0.9114 - val_loss: 0.2694 - val_accuracy: 0.9086 Epoch 7/10 39/39 [==============================] - 5s 138ms/step - loss: 0.1796 - accuracy: 0.9246 - val_loss: 0.2633 - val_accuracy: 0.9025 Epoch 8/10 39/39 [==============================] - 5s 137ms/step - loss: 0.1732 - accuracy: 0.9338 - val_loss: 0.2782 - val_accuracy: 0.9123 Epoch 9/10 39/39 [==============================] - 5s 136ms/step - loss: 0.1823 - accuracy: 0.9253 - val_loss: 0.2667 - val_accuracy: 0.9086 Epoch 10/10 39/39 [==============================] - 5s 136ms/step - loss: 0.1467 - accuracy: 0.9356 - val_loss: 0.2717 - val_accuracy: 0.9062
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model009.predict(padded_texts)
print(testval)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
print(testval)
pred = model009.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model009.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[11, 21, 151, 12, 217]]
[[9.9991703e-01 4.4488665e-05 1.0119907e-05 5.3591643e-06 2.3004055e-05]]
Group_0
[[55, 121, 1083, 317, 958, 1761]]
[[4.5993220e-04 7.7197992e-04 9.9855107e-01 9.8468750e-05 1.1855428e-04]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1194
1 0.86 0.93 0.90 74
2 0.98 0.99 0.98 90
3 0.97 0.64 0.77 200
4 0.48 0.88 0.62 73
micro avg 0.94 0.94 0.94 1631
macro avg 0.86 0.88 0.85 1631
weighted avg 0.96 0.94 0.94 1631
samples avg 0.94 0.94 0.94 1631
model009.save("/content/drive/My Drive/model009.h5")
plot_acc(history009)
We can observe that there are 1,753,601 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 10 epochs comes with 93 in train and 90 in test which has a less overfit compare to all other models and one of the best performance we got.
The error plot is comparatively well
If we see the classification report we can see F1 is not very good but it has less over fit compare to others.So after comparing all we will select this model
4.9.1.Building of basic model with one Embedding,LSTM and Dense layer with weight matrix to check the accuracy.
4.9.2.Tokenization and vocab creation
4.9.3.Base Model with categorical_crossentropy and adam optimizer
4.9.4 Prediction block and classification report
4.9.5.Error Plot
4.9.6.Observation
4.10.1. Building of a model with one Embedding with glove 300d weight matrix, one bidirectional LSTM and one Dense layer to check the accuracy.
4.10.3. Prediction block and classification report
4.10.4.Error Plot
4.10.5.Observation
4.11.1. Building of a model with one Embedding layer with glove 300d weight matrix, one bidirectional LSTM with return sequence as True,1 globalmaxpool1D,3 Dense layers.
4.11.2.Model Description
4.11.3. Prediction block and classification report
4.11.4.Error Plot
4.11.5.Observation
4.12.1. Building of a model with one Embedding layer with glove 300d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer and 1 drop out.
4.12.2.Model Description
4.12.3.Error Plot
4.12.4. Prediction block and classification report
4.12.5.Observation
4.13.1. Building of a model with two layers bidirectional LSTM deep learning model with one has return sequence as True second one has false and one Dense layer.
4.13.2.Model Description
4.13.3.Error Plot
4.13.4. Prediction block and classification report
4.13.5.Observation
4.14.1. Building of a model with one Embedding layer with glove 300d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer, 1 drop out layer and 1 spatial drop out layer
4.14.2.Model Description
4.14.3.Error Plot
4.14.4. Prediction block and classification report
4.14.5.Observation
EMBEDDING_FILE_300d = '/content/drive/My Drive/glove.6B.300d.txt'
embeddings_index = {}
f = open(EMBEDDING_FILE_300d)
for line in f:
values = line.split()
word = values[0]
coefs = np.asarray(values[1:], dtype='float32')
embeddings_index[word] = coefs
f.close()
print('Found %s word vectors.' % len(embeddings_index))
Found 400000 word vectors.
embedding_dim = 300
embedding_matrix = np.zeros((vocab_size, embedding_dim))
for word, i in tokenizer.word_index.items():
if i < vocab_size:
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
This model has 1 embedding layer with glove 300d weight matrix, 1 LSTM layer with output 128 and return sequence as false and one dense layer with output 5 as 5 groups are there for prediction with soft max in dense layer as activation
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_padded,X_test_Glove_padded=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
model11 = Sequential()
model11.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
model11.add(LSTM(128, return_sequences=False))
model11.add(Dense(5, activation='softmax'))
model11.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model11.summary())
Model: "sequential_10" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_10 (Embedding) (None, 352, 300) 2022900 _________________________________________________________________ lstm_14 (LSTM) (None, 128) 219648 _________________________________________________________________ dense_12 (Dense) (None, 5) 645 ================================================================= Total params: 2,243,193 Trainable params: 2,243,193 Non-trainable params: 0 _________________________________________________________________ None
history11=model11.fit(X_train_Glove_padded,y_train_Glove,validation_data=(X_test_Glove_padded,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/30 39/39 [==============================] - 3s 80ms/step - loss: 0.6502 - accuracy: 0.8010 - val_loss: 0.3704 - val_accuracy: 0.8725 Epoch 2/30 39/39 [==============================] - 3s 68ms/step - loss: 0.3112 - accuracy: 0.8954 - val_loss: 0.2819 - val_accuracy: 0.9056 Epoch 3/30 39/39 [==============================] - 3s 67ms/step - loss: 0.1974 - accuracy: 0.9290 - val_loss: 0.2445 - val_accuracy: 0.9062 Epoch 4/30 39/39 [==============================] - 3s 67ms/step - loss: 0.1421 - accuracy: 0.9445 - val_loss: 0.2633 - val_accuracy: 0.8909 Epoch 5/30 39/39 [==============================] - 3s 67ms/step - loss: 0.1296 - accuracy: 0.9501 - val_loss: 0.2732 - val_accuracy: 0.9074
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model11.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model11.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model11.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9957091e-01 2.8947325e-04 3.3458924e-05 9.0505819e-06 9.7128170e-05]]
Group_0
[[0.00576959 0.00998884 0.9690681 0.0129031 0.00227031]]
Group_24
51/51 - 0s
precision recall f1-score support
0 0.98 0.99 0.99 1194
1 0.86 0.80 0.83 74
2 0.99 0.94 0.97 90
3 0.81 0.92 0.86 200
4 0.68 0.32 0.43 73
micro avg 0.94 0.94 0.94 1631
macro avg 0.86 0.79 0.81 1631
weighted avg 0.94 0.94 0.94 1631
samples avg 0.94 0.94 0.94 1631
plot_acc(history11)
We can observe that there are 2,243,193 trainable parameters and 0 nontrainable parameters in model. The accuracy after 6 epochs comes with 95 in train and 90 in test which has overfit. Classification Report depicts that the F1 score came quite well except 5th highest group
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_padded,X_test_Glove_padded=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer with glove 100d weight matrix, 1 Bi directional LSTM layer with output 128 and return sequence as false and one dense layer with output 5 as 5 groups are there for prediction with soft max in dense layer as activation
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from tensorflow.keras.layers import LSTM, Embedding, Dense, Dropout, Bidirectional
model12 = Sequential()
model12.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
#model2.add(Dropout(0.1))
model12.add(Bidirectional(LSTM(128, return_sequences=False)))
model12.add(Dense(5, activation='softmax'))
#model2.add(Dropout(0.1))
#model2.add(Bidirectional(LSTM(128, return_sequences=False)))
#model2.add(Dense(74, activation='softmax'))
model12.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model12.summary())
Model: "sequential_11" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_11 (Embedding) (None, 352, 300) 2022900 _________________________________________________________________ bidirectional_11 (Bidirectio (None, 256) 439296 _________________________________________________________________ dense_13 (Dense) (None, 5) 1285 ================================================================= Total params: 2,463,481 Trainable params: 2,463,481 Non-trainable params: 0 _________________________________________________________________ None
history12=model12.fit(X_train_Glove_padded,y_train_Glove,validation_data=(X_test_Glove_padded,y_test_Glove),epochs=20,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/20 39/39 [==============================] - 5s 116ms/step - loss: 0.6713 - accuracy: 0.7894 - val_loss: 0.3937 - val_accuracy: 0.8504 Epoch 2/20 39/39 [==============================] - 4s 100ms/step - loss: 0.2991 - accuracy: 0.8980 - val_loss: 0.2870 - val_accuracy: 0.8927 Epoch 3/20 39/39 [==============================] - 4s 98ms/step - loss: 0.2213 - accuracy: 0.9214 - val_loss: 0.2364 - val_accuracy: 0.9123 Epoch 4/20 39/39 [==============================] - 4s 99ms/step - loss: 0.1532 - accuracy: 0.9393 - val_loss: 0.2347 - val_accuracy: 0.9105 Epoch 5/20 39/39 [==============================] - 4s 99ms/step - loss: 0.1167 - accuracy: 0.9482 - val_loss: 0.3136 - val_accuracy: 0.9080 Epoch 6/20 39/39 [==============================] - 4s 99ms/step - loss: 0.1031 - accuracy: 0.9535 - val_loss: 0.2412 - val_accuracy: 0.9123
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model12.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model12.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model12.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9981505e-01 6.6874054e-05 3.2432694e-05 3.2767621e-05 5.2932210e-05]]
Group_0
[[2.3396693e-03 4.9495096e-03 9.8940605e-01 2.5238958e-03 7.8075257e-04]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1194
1 0.88 0.92 0.90 74
2 0.94 0.97 0.95 90
3 0.81 0.94 0.87 200
4 0.74 0.34 0.47 73
micro avg 0.95 0.95 0.95 1631
macro avg 0.87 0.83 0.84 1631
weighted avg 0.95 0.95 0.94 1631
samples avg 0.95 0.95 0.95 1631
plot_acc(history12)
We can observe that there are 2,463,481 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 7 epochs comes with 95 in train and 91 in test which has a larger overfit and to less training loss compare to validation loss.
The classification Report depicts the f1 score came poor for 5th highest group among top 5 along with that due to large overfit we cannot select this model
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_padded,X_test_Glove_padded=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer with glove 300d embedding and 1 bidirectional LSTM layer with output 128 and return sequence as true and one globalmaxpool1D layer and 3 dense layers with final layer having output as 5 as 5 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model14 = Sequential()
model14.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix]))
model14.add(Bidirectional(LSTM(units=128 , return_sequences = True)))
model14.add(GlobalMaxPool1D())
model14.add(Dense(100, activation="relu"))
#model14.add(Dropout(0.5))
model14.add(Dense(80, activation="relu"))
#model14.add(Dropout(0.5))
model14.add(Dense(5, activation="softmax"))
model14.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'])
print(model14.summary())
Model: "sequential_12" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_12 (Embedding) (None, None, 300) 2022900 _________________________________________________________________ bidirectional_12 (Bidirectio (None, None, 256) 439296 _________________________________________________________________ global_max_pooling1d_1 (Glob (None, 256) 0 _________________________________________________________________ dense_14 (Dense) (None, 100) 25700 _________________________________________________________________ dense_15 (Dense) (None, 80) 8080 _________________________________________________________________ dense_16 (Dense) (None, 5) 405 ================================================================= Total params: 2,496,381 Trainable params: 2,496,381 Non-trainable params: 0 _________________________________________________________________ None
history14=model14.fit(X_train_Glove_padded,y_train_Glove,validation_data=(X_test_Glove_padded,y_test_Glove),epochs=20,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/20 39/39 [==============================] - 5s 122ms/step - loss: 0.7459 - accuracy: 0.7779 - val_loss: 0.4527 - val_accuracy: 0.8283 Epoch 2/20 39/39 [==============================] - 4s 103ms/step - loss: 0.3323 - accuracy: 0.8825 - val_loss: 0.2796 - val_accuracy: 0.8933 Epoch 3/20 39/39 [==============================] - 4s 104ms/step - loss: 0.1936 - accuracy: 0.9261 - val_loss: 0.2497 - val_accuracy: 0.9013 Epoch 4/20 39/39 [==============================] - 4s 103ms/step - loss: 0.1404 - accuracy: 0.9395 - val_loss: 0.2278 - val_accuracy: 0.9135 Epoch 5/20 39/39 [==============================] - 4s 103ms/step - loss: 0.0940 - accuracy: 0.9561 - val_loss: 0.2308 - val_accuracy: 0.9129 Epoch 6/20 39/39 [==============================] - 4s 103ms/step - loss: 0.0803 - accuracy: 0.9616 - val_loss: 0.2579 - val_accuracy: 0.9019
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model14.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model14.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model14.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9999630e-01 1.1790455e-06 1.5936230e-06 1.2656116e-08 9.4769592e-07]]
Group_0
[[1.1392966e-02 9.3032664e-04 9.8650628e-01 5.9655745e-04 5.7388976e-04]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1194
1 0.92 0.89 0.90 74
2 0.94 0.94 0.94 90
3 0.99 0.66 0.79 200
4 0.52 0.99 0.68 73
micro avg 0.94 0.94 0.94 1631
macro avg 0.87 0.89 0.86 1631
weighted avg 0.96 0.94 0.95 1631
samples avg 0.94 0.94 0.94 1631
plot_acc(history14)
We can observe that there are 2,496,381 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 6 epochs with early stopping comes with 96 in train and 90 in test
Classification reports depicts that 5th and 4th highest group have low F1 score and the model behaviour is fluctuating which is a concern.
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer 1 bidirectional LSTM layers with weight matrix as glove 300 and return sequence as True and one flatten ,one drop out and one dense layer with output 5 as 5 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import TimeDistributed
from keras.models import Sequential
from keras.layers import Activation, Dense, Flatten
model1j3 = Sequential()
model1j3.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
model1j3.add(Bidirectional(LSTM(100, return_sequences=True)))
model1j3.add(Flatten())
model1j3.add(Dropout(0.5))
model1j3.add(Dense(5, activation='softmax'))
model1j3.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model1j3.summary())
Model: "sequential_13" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_13 (Embedding) (None, 352, 300) 2022900 _________________________________________________________________ bidirectional_13 (Bidirectio (None, 352, 200) 320800 _________________________________________________________________ flatten_5 (Flatten) (None, 70400) 0 _________________________________________________________________ dropout_3 (Dropout) (None, 70400) 0 _________________________________________________________________ dense_17 (Dense) (None, 5) 352005 ================================================================= Total params: 2,695,705 Trainable params: 2,695,705 Non-trainable params: 0 _________________________________________________________________ None
historyj3=model1j3.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 39/39 [==============================] - 5s 118ms/step - loss: 0.6082 - accuracy: 0.8131 - val_loss: 0.3663 - val_accuracy: 0.8553 Epoch 2/30 39/39 [==============================] - 4s 99ms/step - loss: 0.2700 - accuracy: 0.9051 - val_loss: 0.2707 - val_accuracy: 0.8988 Epoch 3/30 39/39 [==============================] - 4s 98ms/step - loss: 0.1612 - accuracy: 0.9401 - val_loss: 0.2543 - val_accuracy: 0.8988 Epoch 4/30 39/39 [==============================] - 4s 97ms/step - loss: 0.1223 - accuracy: 0.9511 - val_loss: 0.2666 - val_accuracy: 0.9007 Epoch 5/30 39/39 [==============================] - 4s 97ms/step - loss: 0.1146 - accuracy: 0.9556 - val_loss: 0.2946 - val_accuracy: 0.9007 Epoch 6/30 39/39 [==============================] - 4s 97ms/step - loss: 0.1081 - accuracy: 0.9514 - val_loss: 0.2918 - val_accuracy: 0.9086 Epoch 7/30 39/39 [==============================] - 4s 99ms/step - loss: 0.0809 - accuracy: 0.9611 - val_loss: 0.3337 - val_accuracy: 0.9037 Epoch 8/30 39/39 [==============================] - 4s 99ms/step - loss: 0.0801 - accuracy: 0.9606 - val_loss: 0.3246 - val_accuracy: 0.9056
plot_acc(historyj3)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1j3.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1j3.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = model1j3.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9999917e-01 2.2880592e-07 2.8634840e-08 4.5586816e-08 4.4690745e-07]]
Group_0
[[8.4766041e-05 6.2498744e-05 9.9960393e-01 6.1244282e-05 1.8761939e-04]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1194
1 0.87 0.89 0.88 74
2 0.97 0.96 0.96 90
3 0.83 0.93 0.87 200
4 0.76 0.47 0.58 73
micro avg 0.95 0.95 0.95 1631
macro avg 0.88 0.85 0.86 1631
weighted avg 0.95 0.95 0.95 1631
samples avg 0.95 0.95 0.95 1631
We can observe that there are 2,695,705 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 10 epochs comes with 96 in train and 90 in test which has a larger overfit and to less training loss compare to validation loss.
The classification Report depicts the metrices came well for top 5 except 5th highest group but due to large overfit we cannot select this model
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer with glov 300d 2 bi directional LSTM layers with one with return sequence as true and second is return sequence as false and one dense layer with output 5 as 5 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
modelj007 = Sequential()
modelj007.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
modelj007.add(Bidirectional(LSTM(128, return_sequences=True)))
modelj007.add(Bidirectional(LSTM(128, return_sequences=False)))
modelj007.add(Dense(5,activation='softmax'))
modelj007.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(modelj007.summary())
Model: "sequential_14" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_14 (Embedding) (None, 352, 300) 2022900 _________________________________________________________________ bidirectional_14 (Bidirectio (None, 352, 256) 439296 _________________________________________________________________ bidirectional_15 (Bidirectio (None, 256) 394240 _________________________________________________________________ dense_18 (Dense) (None, 5) 1285 ================================================================= Total params: 2,857,721 Trainable params: 2,857,721 Non-trainable params: 0 _________________________________________________________________ None
historyj007=modelj007.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=20,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/20 39/39 [==============================] - 7s 192ms/step - loss: 0.5990 - accuracy: 0.8144 - val_loss: 0.3887 - val_accuracy: 0.8712 Epoch 2/20 39/39 [==============================] - 6s 165ms/step - loss: 0.2601 - accuracy: 0.9101 - val_loss: 0.2938 - val_accuracy: 0.8847 Epoch 3/20 39/39 [==============================] - 6s 164ms/step - loss: 0.1873 - accuracy: 0.9293 - val_loss: 0.3302 - val_accuracy: 0.8896 Epoch 4/20 39/39 [==============================] - 6s 164ms/step - loss: 0.1363 - accuracy: 0.9458 - val_loss: 0.3131 - val_accuracy: 0.8903
plot_acc(historyj007)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelj007.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelj007.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = modelj007.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.98883188e-01 3.91989626e-04 1.13070026e-04 1.41547309e-04
4.70198953e-04]]
Group_0
[[0.00675872 0.00417945 0.98436916 0.00247616 0.00221654]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.99 0.99 0.99 1194
1 0.87 0.70 0.78 74
2 0.98 0.92 0.95 90
3 0.73 0.98 0.84 200
4 0.88 0.21 0.33 73
micro avg 0.94 0.94 0.94 1631
macro avg 0.89 0.76 0.78 1631
weighted avg 0.95 0.94 0.93 1631
samples avg 0.94 0.94 0.94 1631
We can observe that there are 2,857,721 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 7 epochs with early stopping comes with 94 in train and 89 in test which has a larger overfit and to less training loss compare to validation loss.
The classification Report depicts the f1 score came very poor for 5th highest group among top 5 along with that due to large overfit we cannot select this model
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(1631, 352) (3804, 352)
This model has 1 embedding layer 2 bidirectional LSTM layers with weight matrix as glove 300 and return sequence as True and one flatten and one dense layer with 1 drop out layer and 1 spatial drop out layer .
Drop out we have used 0.3 and spatial drop out as 0.4
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import Activation, Dense, Flatten, Dropout, Bidirectional, SpatialDropout1D
modelh009 = Sequential()
modelh009.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 352,trainable=True))
modelh009.add(SpatialDropout1D(0.4))
modelh009.add(Bidirectional(LSTM(128, return_sequences=True)))
modelh009.add(Dropout(0.3))
modelh009.add(Bidirectional(LSTM(128, return_sequences=True)))
modelh009.add(Flatten())
modelh009.add(Dense(5,activation='softmax'))
modelh009.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(modelh009.summary())
Model: "sequential_15" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_15 (Embedding) (None, 352, 300) 2022900 _________________________________________________________________ spatial_dropout1d_2 (Spatial (None, 352, 300) 0 _________________________________________________________________ bidirectional_16 (Bidirectio (None, 352, 256) 439296 _________________________________________________________________ dropout_4 (Dropout) (None, 352, 256) 0 _________________________________________________________________ bidirectional_17 (Bidirectio (None, 352, 256) 394240 _________________________________________________________________ flatten_6 (Flatten) (None, 90112) 0 _________________________________________________________________ dense_19 (Dense) (None, 5) 450565 ================================================================= Total params: 3,307,001 Trainable params: 3,307,001 Non-trainable params: 0 _________________________________________________________________ None
historyh009=modelh009.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=20,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=2)])
Epoch 1/20 39/39 [==============================] - 8s 195ms/step - loss: 0.6296 - accuracy: 0.8070 - val_loss: 0.3778 - val_accuracy: 0.8804 Epoch 2/20 39/39 [==============================] - 7s 170ms/step - loss: 0.3073 - accuracy: 0.8925 - val_loss: 0.3816 - val_accuracy: 0.8921 Epoch 3/20 39/39 [==============================] - 7s 171ms/step - loss: 0.2388 - accuracy: 0.9093 - val_loss: 0.3136 - val_accuracy: 0.9080 Epoch 4/20 39/39 [==============================] - 7s 170ms/step - loss: 0.1788 - accuracy: 0.9285 - val_loss: 0.3256 - val_accuracy: 0.8982 Epoch 5/20 39/39 [==============================] - 7s 170ms/step - loss: 0.1552 - accuracy: 0.9351 - val_loss: 0.3078 - val_accuracy: 0.9037 Epoch 6/20 39/39 [==============================] - 7s 170ms/step - loss: 0.1676 - accuracy: 0.9317 - val_loss: 0.3089 - val_accuracy: 0.9044 Epoch 7/20 39/39 [==============================] - 7s 170ms/step - loss: 0.1132 - accuracy: 0.9485 - val_loss: 0.3890 - val_accuracy: 0.9111
plot_acc(historyh009)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelh009.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelh009.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
y_probs = modelh009.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
[[9.9999988e-01 1.7549796e-07 2.3091319e-08 2.9767024e-08 5.2344991e-08]]
Group_0
[[8.7848362e-05 1.8259794e-05 9.9944097e-01 2.8112976e-04 1.7162661e-04]]
Group_24
51/51 - 1s
precision recall f1-score support
0 0.98 1.00 0.99 1194
1 0.91 0.85 0.88 74
2 0.98 0.93 0.95 90
3 0.78 0.97 0.87 200
4 0.94 0.23 0.37 73
micro avg 0.95 0.95 0.95 1631
macro avg 0.92 0.80 0.81 1631
weighted avg 0.95 0.95 0.94 1631
samples avg 0.95 0.95 0.95 1631
We can observe that there are 3,307,001 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 6 epochs comes with 94 in train and 91 in test which has a overfit.
The classification Report depicts the f1 score came very poor for 5th highest group among top 5 along with that due to large overfit we cannot select this model
finalticketsummary=finaldataset_all
EMBEDDING_FILE = '/content/drive/My Drive/glove.6B.100d.txt'
5.1.1.Building of basic model with one Embedding,LSTM and Dense layer without weight matrix to check the accuracy.
5.1.2.Tokenization and vocab creation
5.1.3.Base Model with categorical_crossentropy and adam optimizer
5.1.4. Prediction
5.1.5.Error Plot
5.1.6 Prediction block and classification report
5.1.7.Observation
5.2.1.Building of basic model with one Embedding,LSTM and Dense layer with weight matrix to check the accuracy.
5.2.2.Tokenization and vocab creation
5.2.3.Base Model with categorical_crossentropy and adam optimizer
5.2.4.Error Plot
5.2.5 Prediction block and classification report
5.2.6.Observation
5.3.1. Building of a model with one Embedding with glove 100d weight matrix, one bidirectional LSTM and one Dense layer to check the accuracy.
5.3.2.Bi directional LSTM Model with categorical_crossentropy and adam optimizer
5.3.3.Error Plot
5.3.4. Classiication report
5.3.5.Observation
5.4.1. Building of a model with one Embedding layer with glove 100d weight matrix, one bidirectional LSTM with return sequence as True and one flatten and one Dense layer.
5.4.2.Model Description
5.4.3.Error Plot
5.4.4. Classification report
5.4.5.Observation
5.5.1. Building of a model with one Embedding layer with glove 100d weight matrix, one bidirectional LSTM with return sequence as True,1 globalmaxpool1D,3 Dense layers.
5.5.2.Model Description
5.5.3.Error Plot
5.5.4. Classification report
5.5.5.Observation
5.6.1. Building of a model with one Embedding layer with glove 100d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer.
5.6.2.Model Description
5.6.3.Error Plot
5.6.4. Classification report
5.6.5.Observation
5.7.1. Building of a model with one Embedding layer with glove 100d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer, 1 drop out layer and 1 spatial drop out layer
5.7.2.Model Description
5.7.3.Error Plot
5.7.4. Classification report
5.7.5.Observation
Embedding
embeddings_index = {}
f = open(EMBEDDING_FILE)
for line in f:
values = line.split()
word = values[0]
coefs = np.asarray(values[1:], dtype='float32')
embeddings_index[word] = coefs
f.close()
print('Found %s word vectors.' % len(embeddings_index))
Found 400000 word vectors.
y = pd.get_dummies(finalticketsummary["Assignment group"]).values
y.shape
#Convert y to onehot encoded output
(8500, 74)
X_train_basic,X_test_basic,y_train_basic,y_test_basic = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
#70:30 split
print(y_test_basic.shape)
print(y_train_basic.shape)
(2550, 74) (5950, 74)
print(X_train_basic.shape)
print(X_test_basic.shape)
(5950,) (2550,)
tokenizer = Tokenizer()
tokenizer.fit_on_texts(finalticketsummary["CleanTextAfterRemoveStopword"])
word_index = tokenizer.word_index
vocab_size=len(word_index)+1
##Tokenize the words
vocab_size
#Calculate vocab size
11760
finalticketsummary["WordLength"] = finalticketsummary['CleanTextAfterRemoveStopword'].str.split().str.len()
finalticketsummary['CleanTextAfterRemoveStopword'].loc[1596]
''
finalticketsummary.sort_values(by='WordLength', ascending=False).head()
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | Assignment group_num | WordLength | |
|---|---|---|---|---|---|
| 7463 | GRP_62 | security incident sw possible locky ransomware... | [security, incident, sw, possible, locky, rans... | 59 | 673 |
| 7458 | GRP_2 | security incident sw possible locky ransomware... | [security, incident, sw, possible, locky, rans... | 12 | 673 |
| 3829 | GRP_39 | security incident sw magento sql injection sou... | [security, incident, sw, magento, sql, injecti... | 33 | 581 |
| 3831 | GRP_2 | security incident sw magento sql injection sou... | [security, incident, sw, magento, sql, injecti... | 12 | 581 |
| 3717 | GRP_2 | security incident possible malware infection t... | [security, incident, possible, malware, infect... | 12 | 531 |
sequences = tokenizer.texts_to_sequences(X_train_basic)
X_train_padded = pad_sequences(sequences, maxlen=673)
sequences = tokenizer.texts_to_sequences(X_test_basic)
X_test_padded=pad_sequences(sequences, maxlen=673)
X_test_padded.shape
#padd the input to have same size
(2550, 673)
X_train_padded.shape
(5950, 673)
This model has 1 embedding layer 1 lstm layer with output 100 and return sequence as false and onse dense layer with output 74 as 74 groups are there for prediction.
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
embedding_vector_features=100
model=Sequential()
model.add(Embedding(vocab_size,embedding_vector_features,input_length=673))
model.add(LSTM(100,return_sequences=False))
model.add(Dense(74,activation='softmax'))
model.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model.summary())
Model: "sequential_16" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_16 (Embedding) (None, 673, 100) 1176000 _________________________________________________________________ lstm_22 (LSTM) (None, 100) 80400 _________________________________________________________________ dense_20 (Dense) (None, 74) 7474 ================================================================= Total params: 1,263,874 Trainable params: 1,263,874 Non-trainable params: 0 _________________________________________________________________ None
history=model.fit(X_train_padded,y_train_basic,validation_data=(X_test_padded,y_test_basic),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',min_delta=0.0001,patience=5)])
Epoch 1/30 60/60 [==============================] - 4s 68ms/step - loss: 1.6339 - accuracy: 0.6057 - val_loss: 1.9412 - val_accuracy: 0.5494 Epoch 2/30 60/60 [==============================] - 4s 67ms/step - loss: 1.5169 - accuracy: 0.6237 - val_loss: 1.9404 - val_accuracy: 0.5494 Epoch 3/30 60/60 [==============================] - 4s 67ms/step - loss: 1.3844 - accuracy: 0.6450 - val_loss: 1.9146 - val_accuracy: 0.5584 Epoch 4/30 60/60 [==============================] - 4s 67ms/step - loss: 1.2995 - accuracy: 0.6635 - val_loss: 1.9310 - val_accuracy: 0.5506 Epoch 5/30 60/60 [==============================] - 4s 67ms/step - loss: 1.2257 - accuracy: 0.6818 - val_loss: 1.8639 - val_accuracy: 0.5545 Epoch 6/30 60/60 [==============================] - 4s 67ms/step - loss: 1.0927 - accuracy: 0.7151 - val_loss: 1.8407 - val_accuracy: 0.5702 Epoch 7/30 60/60 [==============================] - 4s 67ms/step - loss: 1.0026 - accuracy: 0.7413 - val_loss: 1.8640 - val_accuracy: 0.5561 Epoch 8/30 60/60 [==============================] - 4s 66ms/step - loss: 0.9026 - accuracy: 0.7610 - val_loss: 1.8633 - val_accuracy: 0.5824 Epoch 9/30 60/60 [==============================] - 4s 67ms/step - loss: 0.8139 - accuracy: 0.7817 - val_loss: 1.8774 - val_accuracy: 0.5686 Epoch 10/30 60/60 [==============================] - 4s 67ms/step - loss: 0.7276 - accuracy: 0.8076 - val_loss: 1.8977 - val_accuracy: 0.5882 Epoch 11/30 60/60 [==============================] - 4s 66ms/step - loss: 0.6543 - accuracy: 0.8314 - val_loss: 1.9152 - val_accuracy: 0.5808
acc = history.history['accuracy']
val_acc = history.history['val_accuracy']
loss = history.history['loss']
val_loss = history.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model.predict(padded_texts)
print (np.argmax(pred))
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model.predict(padded_texts)
print (np.argmax(pred))
y_probs = model.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
0
17
80/80 - 1s
precision recall f1-score support
0 0.79 0.85 0.82 1168
1 0.67 0.15 0.25 13
2 0.46 0.35 0.40 51
3 0.14 0.17 0.15 6
4 0.43 0.51 0.47 81
5 0.21 0.21 0.21 38
6 0.13 0.26 0.17 34
7 0.00 0.00 0.00 12
8 0.16 0.14 0.15 22
9 0.83 0.73 0.78 26
10 0.28 0.38 0.32 29
11 0.17 0.24 0.20 76
12 0.37 0.35 0.36 75
13 0.00 0.00 0.00 11
14 0.00 0.00 0.00 10
15 0.00 0.00 0.00 10
16 0.00 0.00 0.00 8
17 0.79 0.71 0.75 79
18 0.16 0.30 0.21 33
19 0.00 0.00 0.00 23
20 0.00 0.00 0.00 3
21 0.17 0.10 0.12 10
22 0.36 0.25 0.30 32
23 0.22 0.28 0.24 68
24 0.30 0.70 0.42 10
25 0.25 0.03 0.06 30
26 0.00 0.00 0.00 1
27 0.38 0.32 0.35 31
28 0.00 0.00 0.00 20
29 0.00 0.00 0.00 1
30 0.00 0.00 0.00 3
31 0.00 0.00 0.00 8
32 0.00 0.00 0.00 1
33 0.07 0.50 0.12 2
34 0.43 0.30 0.36 33
35 0.23 0.23 0.23 13
36 0.00 0.00 0.00 13
37 0.00 0.00 0.00 13
38 0.00 0.00 0.00 2
39 0.00 0.00 0.00 8
40 0.00 0.00 0.00 11
41 0.00 0.00 0.00 3
42 0.00 0.00 0.00 9
43 0.00 0.00 0.00 8
44 0.00 0.00 0.00 3
45 0.69 0.45 0.55 44
46 0.00 0.00 0.00 4
47 0.00 0.00 0.00 1
48 0.00 0.00 0.00 2
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 0
51 0.00 0.00 0.00 3
52 0.00 0.00 0.00 1
53 0.00 0.00 0.00 0
54 0.00 0.00 0.00 1
55 0.00 0.00 0.00 1
56 0.63 0.28 0.39 43
57 0.00 0.00 0.00 4
58 0.00 0.00 0.00 1
59 0.25 0.14 0.18 7
60 0.00 0.00 0.00 1
61 0.00 0.00 0.00 0
62 0.00 0.00 0.00 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 1
65 0.00 0.00 0.00 0
66 0.00 0.00 0.00 2
67 0.18 0.44 0.25 16
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.53 0.83 0.65 193
73 0.00 0.00 0.00 76
micro avg 0.58 0.58 0.58 2550
macro avg 0.14 0.14 0.13 2550
weighted avg 0.54 0.58 0.55 2550
samples avg 0.58 0.58 0.58 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
2nd prediction is wrong
We can observe that there are 1,263,874 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 11 epochs comes with 83 in train and 58 in test which has a very large overfit and to less training loss compare to validation loss.
The error plot also explains the overfit.
If we see the classification report we can see the scores are not good we will try to improve more.The classification report did not went well due to hudge imbalance in complete data
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
embedding_dim = 100
embedding_matrix = np.zeros((vocab_size, embedding_dim))
for word, i in tokenizer.word_index.items():
if i < vocab_size:
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
def padd_sequence(X_train_Glove,X_test_Glove):
sequences = tokenizer.texts_to_sequences(X_train_Glove)
X_train_padded_Glove = pad_sequences(sequences, maxlen=673)
sequences = tokenizer.texts_to_sequences(X_test_Glove)
X_test_padded_Glove=pad_sequences(sequences, maxlen=673)
print(X_test_padded_Glove.shape,X_train_padded_Glove.shape)
return X_train_padded_Glove,X_test_padded_Glove
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer with weight matrix of glove 100, 1 lstm layer with output 128 and return sequence as false and one dense layer with softmax activation Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model1 = Sequential()
model1.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
model1.add(LSTM(128, return_sequences=False))
model1.add(Dense(74, activation='softmax'))
model1.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model1.summary())
Model: "sequential_17" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_17 (Embedding) (None, 673, 100) 1176000 _________________________________________________________________ lstm_23 (LSTM) (None, 128) 117248 _________________________________________________________________ dense_21 (Dense) (None, 74) 9546 ================================================================= Total params: 1,302,794 Trainable params: 1,302,794 Non-trainable params: 0 _________________________________________________________________ None
history1=model1.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=7)])
Epoch 1/30 60/60 [==============================] - 5s 79ms/step - loss: 2.6735 - accuracy: 0.4689 - val_loss: 2.1985 - val_accuracy: 0.5322 Epoch 2/30 60/60 [==============================] - 5s 75ms/step - loss: 2.0655 - accuracy: 0.5413 - val_loss: 1.9386 - val_accuracy: 0.5592 Epoch 3/30 60/60 [==============================] - 5s 75ms/step - loss: 1.8447 - accuracy: 0.5708 - val_loss: 1.7864 - val_accuracy: 0.5769 Epoch 4/30 60/60 [==============================] - 5s 78ms/step - loss: 1.6732 - accuracy: 0.5955 - val_loss: 1.7184 - val_accuracy: 0.5831 Epoch 5/30 60/60 [==============================] - 4s 75ms/step - loss: 1.5137 - accuracy: 0.6254 - val_loss: 1.6028 - val_accuracy: 0.6031 Epoch 6/30 60/60 [==============================] - 4s 75ms/step - loss: 1.3518 - accuracy: 0.6496 - val_loss: 1.5321 - val_accuracy: 0.6125 Epoch 7/30 60/60 [==============================] - 5s 77ms/step - loss: 1.2192 - accuracy: 0.6761 - val_loss: 1.5037 - val_accuracy: 0.6271 Epoch 8/30 60/60 [==============================] - 5s 76ms/step - loss: 1.0993 - accuracy: 0.6983 - val_loss: 1.4706 - val_accuracy: 0.6294 Epoch 9/30 60/60 [==============================] - 5s 77ms/step - loss: 1.0065 - accuracy: 0.7309 - val_loss: 1.4780 - val_accuracy: 0.6243 Epoch 10/30 60/60 [==============================] - 5s 76ms/step - loss: 0.9274 - accuracy: 0.7499 - val_loss: 1.5272 - val_accuracy: 0.6333 Epoch 11/30 60/60 [==============================] - 5s 76ms/step - loss: 0.8396 - accuracy: 0.7721 - val_loss: 1.4413 - val_accuracy: 0.6451 Epoch 12/30 60/60 [==============================] - 5s 76ms/step - loss: 0.7419 - accuracy: 0.7936 - val_loss: 1.4783 - val_accuracy: 0.6514 Epoch 13/30 60/60 [==============================] - 5s 75ms/step - loss: 0.6591 - accuracy: 0.8227 - val_loss: 1.4993 - val_accuracy: 0.6408 Epoch 14/30 60/60 [==============================] - 5s 76ms/step - loss: 0.6866 - accuracy: 0.8205 - val_loss: 1.5117 - val_accuracy: 0.6478 Epoch 15/30 60/60 [==============================] - 5s 76ms/step - loss: 0.5752 - accuracy: 0.8469 - val_loss: 1.4934 - val_accuracy: 0.6349 Epoch 16/30 60/60 [==============================] - 5s 76ms/step - loss: 0.5061 - accuracy: 0.8634 - val_loss: 1.5134 - val_accuracy: 0.6529 Epoch 17/30 60/60 [==============================] - 5s 77ms/step - loss: 0.4494 - accuracy: 0.8802 - val_loss: 1.5453 - val_accuracy: 0.6455 Epoch 18/30 60/60 [==============================] - 5s 77ms/step - loss: 0.4001 - accuracy: 0.8933 - val_loss: 1.5795 - val_accuracy: 0.6463
acc = history1.history['accuracy']
val_acc = history1.history['val_accuracy']
loss = history1.history['loss']
val_loss = history1.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1.predict(padded_texts)
print (np.argmax(pred))
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model1.predict(padded_texts)
print (np.argmax(pred))
y_probs = model1.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
0
17
80/80 - 1s
precision recall f1-score support
0 0.92 0.96 0.94 1168
1 1.00 0.23 0.38 13
2 0.84 0.63 0.72 51
3 1.00 0.33 0.50 6
4 0.84 0.80 0.82 81
5 0.76 0.84 0.80 38
6 0.86 0.74 0.79 34
7 0.50 0.83 0.62 12
8 0.73 0.86 0.79 22
9 1.00 1.00 1.00 26
10 0.51 0.66 0.58 29
11 0.66 0.68 0.67 76
12 0.77 0.71 0.74 75
13 0.47 0.64 0.54 11
14 0.56 0.50 0.53 10
15 0.75 0.30 0.43 10
16 1.00 0.62 0.77 8
17 0.94 0.91 0.92 79
18 0.77 0.91 0.83 33
19 0.93 0.57 0.70 23
20 0.00 0.00 0.00 3
21 0.70 0.70 0.70 10
22 0.92 0.72 0.81 32
23 0.66 0.74 0.69 68
24 0.44 0.70 0.54 10
25 0.67 0.60 0.63 30
26 1.00 1.00 1.00 1
27 0.71 0.65 0.68 31
28 0.80 0.60 0.69 20
29 0.00 0.00 0.00 1
30 1.00 0.67 0.80 3
31 0.83 0.62 0.71 8
32 0.00 0.00 0.00 1
33 0.50 0.50 0.50 2
34 0.75 0.73 0.74 33
35 0.53 0.62 0.57 13
36 0.90 0.69 0.78 13
37 0.86 0.46 0.60 13
38 0.00 0.00 0.00 2
39 1.00 0.38 0.55 8
40 0.50 0.27 0.35 11
41 1.00 0.67 0.80 3
42 1.00 0.22 0.36 9
43 1.00 0.12 0.22 8
44 0.00 0.00 0.00 3
45 0.77 0.68 0.72 44
46 1.00 0.75 0.86 4
47 0.00 0.00 0.00 1
48 0.00 0.00 0.00 2
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 0
51 1.00 0.33 0.50 3
52 0.00 0.00 0.00 1
53 0.00 0.00 0.00 0
54 1.00 1.00 1.00 1
55 0.00 0.00 0.00 1
56 0.67 0.60 0.63 43
57 1.00 0.25 0.40 4
58 0.00 0.00 0.00 1
59 0.67 0.29 0.40 7
60 0.00 0.00 0.00 1
61 0.00 0.00 0.00 0
62 1.00 0.67 0.80 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 1
65 0.00 0.00 0.00 0
66 1.00 0.50 0.67 2
67 0.82 0.88 0.85 16
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.63 0.89 0.74 193
73 0.49 0.36 0.41 76
micro avg 0.81 0.81 0.81 2550
macro avg 0.56 0.44 0.47 2550
weighted avg 0.82 0.81 0.81 2550
samples avg 0.81 0.81 0.81 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We have created a simple LSTM model with 3 layers with glove embedding weight matrix and checked the accuracy.The training accuracy is coming high but testing is max 64%.We need to explore more to improve accuracy
There is a hudge overfit and the scores for some groups are coming not well
X_train_Glove_bi,X_test_Glove_bi,y_train_Glove_bi,y_test_Glove_bi = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_bi_padded,X_test_Glove_bi_padded=padd_sequence(X_train_Glove_bi,X_test_Glove_bi)
(2550, 673) (5950, 673)
X_train_Glove_bi_padded.shape
(5950, 673)
This model has 1 embedding layer with glove 100d weight matrix, 1 Bi directional LSTM layer with output 128 and return sequence as false and one dense layer with soft max in dense layer as activation
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from tensorflow.keras.layers import LSTM, Embedding, Dense, Dropout, Bidirectional
model2 = Sequential()
model2.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
#model2.add(Dropout(0.1))
model2.add(Bidirectional(LSTM(128, return_sequences=False)))
model2.add(Dense(74, activation='softmax'))
#model2.add(Dropout(0.1))
#model2.add(Bidirectional(LSTM(128, return_sequences=False)))
#model2.add(Dense(74, activation='softmax'))
model2.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model2.summary())
Model: "sequential_2" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_2 (Embedding) (None, 673, 100) 1158300 _________________________________________________________________ bidirectional (Bidirectional (None, 256) 234496 _________________________________________________________________ dense_2 (Dense) (None, 74) 19018 ================================================================= Total params: 1,411,814 Trainable params: 1,411,814 Non-trainable params: 0 _________________________________________________________________ None
history2=model2.fit(X_train_Glove_bi_padded,y_train_Glove_bi,validation_data=(X_test_Glove_bi_padded,y_test_Glove_bi),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 8s 138ms/step - loss: 2.6127 - accuracy: 0.4837 - val_loss: 2.1813 - val_accuracy: 0.5141 Epoch 2/30 60/60 [==============================] - 8s 127ms/step - loss: 1.9727 - accuracy: 0.5487 - val_loss: 1.9066 - val_accuracy: 0.5518 Epoch 3/30 60/60 [==============================] - 8s 128ms/step - loss: 1.7194 - accuracy: 0.5908 - val_loss: 1.7530 - val_accuracy: 0.5804 Epoch 4/30 60/60 [==============================] - 8s 128ms/step - loss: 1.5192 - accuracy: 0.6261 - val_loss: 1.6365 - val_accuracy: 0.5882 Epoch 5/30 60/60 [==============================] - 8s 128ms/step - loss: 1.3548 - accuracy: 0.6519 - val_loss: 1.5649 - val_accuracy: 0.5973 Epoch 6/30 60/60 [==============================] - 8s 128ms/step - loss: 1.2158 - accuracy: 0.6748 - val_loss: 1.5267 - val_accuracy: 0.6027 Epoch 7/30 60/60 [==============================] - 8s 128ms/step - loss: 1.0926 - accuracy: 0.7032 - val_loss: 1.4942 - val_accuracy: 0.6243 Epoch 8/30 60/60 [==============================] - 8s 128ms/step - loss: 0.9675 - accuracy: 0.7319 - val_loss: 1.5199 - val_accuracy: 0.6165 Epoch 9/30 60/60 [==============================] - 8s 128ms/step - loss: 0.9024 - accuracy: 0.7526 - val_loss: 1.4805 - val_accuracy: 0.6180 Epoch 10/30 60/60 [==============================] - 8s 129ms/step - loss: 0.7759 - accuracy: 0.7849 - val_loss: 1.5061 - val_accuracy: 0.6196 Epoch 11/30 60/60 [==============================] - 8s 129ms/step - loss: 0.6994 - accuracy: 0.8141 - val_loss: 1.4973 - val_accuracy: 0.6373 Epoch 12/30 60/60 [==============================] - 8s 128ms/step - loss: 0.6117 - accuracy: 0.8323 - val_loss: 1.5321 - val_accuracy: 0.6286 Epoch 13/30 60/60 [==============================] - 8s 129ms/step - loss: 0.5442 - accuracy: 0.8529 - val_loss: 1.5789 - val_accuracy: 0.6369 Epoch 14/30 60/60 [==============================] - 8s 129ms/step - loss: 0.5158 - accuracy: 0.8630 - val_loss: 1.6269 - val_accuracy: 0.6149
acc = history2.history['accuracy']
val_acc = history2.history['val_accuracy']
loss = history2.history['loss']
val_loss = history2.history['val_loss']
epochs = range(1, len(acc) + 1)
plt.plot(epochs, acc, 'bo', label='Training acc')
plt.plot(epochs, val_acc, 'b', label='Validation acc')
plt.title('Training and validation accuracy')
plt.legend()
plt.figure()
plt.plot(epochs, loss, 'bo', label='Training loss')
plt.plot(epochs, val_loss, 'b', label='Validation loss')
plt.title('Training and validation loss')
plt.legend()
plt.show()
y_probs = model2.predict(X_test_Glove_bi_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_Glove_bi, y_pred)
print(report)
80/80 - 2s
precision recall f1-score support
0 0.82 0.87 0.84 1174
1 0.38 0.27 0.32 11
2 0.33 0.35 0.34 40
3 0.17 0.14 0.15 7
4 0.39 0.66 0.49 73
5 0.38 0.33 0.35 42
6 0.28 0.32 0.30 41
7 0.17 0.18 0.17 11
8 0.22 0.48 0.30 29
9 0.95 0.90 0.92 20
10 0.25 0.17 0.20 24
11 0.39 0.23 0.29 75
12 0.35 0.41 0.38 73
13 0.07 0.11 0.09 9
14 0.00 0.00 0.00 10
15 0.11 0.12 0.12 8
16 0.25 0.33 0.29 6
17 0.78 0.82 0.80 89
18 0.49 0.57 0.52 30
19 0.03 0.07 0.04 15
20 0.00 0.00 0.00 6
21 0.00 0.00 0.00 17
22 0.38 0.14 0.20 36
23 0.44 0.29 0.35 73
24 0.50 0.20 0.29 20
25 0.70 0.27 0.39 26
26 0.00 0.00 0.00 2
27 0.35 0.28 0.31 32
28 0.09 0.12 0.10 17
29 0.00 0.00 0.00 0
30 0.00 0.00 0.00 3
31 0.00 0.00 0.00 5
32 0.00 0.00 0.00 1
33 0.00 0.00 0.00 5
34 0.36 0.30 0.33 30
35 0.11 0.08 0.09 13
36 0.33 0.12 0.18 8
37 0.12 0.11 0.12 9
38 0.00 0.00 0.00 4
39 0.00 0.00 0.00 1
40 1.00 0.10 0.18 10
41 0.00 0.00 0.00 3
42 0.00 0.00 0.00 7
43 0.21 0.75 0.33 8
44 0.00 0.00 0.00 1
45 0.58 0.38 0.46 39
46 0.00 0.00 0.00 6
47 0.00 0.00 0.00 4
48 0.00 0.00 0.00 0
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 0
51 0.00 0.00 0.00 3
52 0.00 0.00 0.00 0
53 0.00 0.00 0.00 0
54 0.00 0.00 0.00 0
55 0.00 0.00 0.00 3
56 0.63 0.49 0.55 55
57 0.00 0.00 0.00 6
58 0.00 0.00 0.00 0
59 0.00 0.00 0.00 7
60 0.00 0.00 0.00 1
61 0.00 0.00 0.00 0
62 0.00 0.00 0.00 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 0
65 0.00 0.00 0.00 1
66 0.00 0.00 0.00 0
67 0.64 0.41 0.50 17
68 0.00 0.00 0.00 1
69 0.00 0.00 0.00 0
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.76 0.51 0.61 192
73 0.33 0.79 0.47 84
micro avg 0.61 0.61 0.61 2550
macro avg 0.19 0.17 0.17 2550
weighted avg 0.62 0.61 0.60 2550
samples avg 0.61 0.61 0.61 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 1,411,814 trainable parameters and 0 nontrainable parameters in model. The accuracy after 14 epochs comes with 86 in train and 61 in test which has a larger overfit and to less training loss compare to validation loss.
The classification Report depicts the f1 score came poor for many groups among 74 along with that due to large overfit we cannot select this model.
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer with glove 100d 1 bi directional LSTM layer with output 128 and return sequence as true, one flatten layer and one dense layer with output 74
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import TimeDistributed
from keras.models import Sequential
from keras.layers import Activation, Dense, Flatten
model13 = Sequential()
model13.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
model13.add(Bidirectional(LSTM(128, return_sequences=True)))
model13.add(Flatten())
model13.add(Dense(74, activation='softmax'))
model13.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model13.summary())
Model: "sequential_9" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_9 (Embedding) (None, 673, 100) 1158300 _________________________________________________________________ bidirectional_8 (Bidirection (None, 673, 256) 234496 _________________________________________________________________ flatten_3 (Flatten) (None, 172288) 0 _________________________________________________________________ dense_10 (Dense) (None, 74) 12749386 ================================================================= Total params: 14,142,182 Trainable params: 14,142,182 Non-trainable params: 0 _________________________________________________________________ None
history13=model13.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 9s 142ms/step - loss: 2.3052 - accuracy: 0.5155 - val_loss: 1.8373 - val_accuracy: 0.5584 Epoch 2/30 60/60 [==============================] - 8s 133ms/step - loss: 1.4631 - accuracy: 0.6254 - val_loss: 1.6781 - val_accuracy: 0.5925 Epoch 3/30 60/60 [==============================] - 8s 133ms/step - loss: 1.0472 - accuracy: 0.7111 - val_loss: 1.6764 - val_accuracy: 0.5965 Epoch 4/30 60/60 [==============================] - 8s 133ms/step - loss: 0.7901 - accuracy: 0.7793 - val_loss: 1.9561 - val_accuracy: 0.6133 Epoch 5/30 60/60 [==============================] - 8s 133ms/step - loss: 0.6639 - accuracy: 0.8292 - val_loss: 1.8705 - val_accuracy: 0.6255 Epoch 6/30 60/60 [==============================] - 8s 133ms/step - loss: 0.5047 - accuracy: 0.8652 - val_loss: 1.9614 - val_accuracy: 0.6412 Epoch 7/30 60/60 [==============================] - 8s 134ms/step - loss: 0.4254 - accuracy: 0.8914 - val_loss: 2.0832 - val_accuracy: 0.6251 Epoch 8/30 60/60 [==============================] - 8s 134ms/step - loss: 0.4111 - accuracy: 0.9047 - val_loss: 2.1680 - val_accuracy: 0.6416
plot_acc(history13)
y_probs = model13.predict(X_test_Glove_bi_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_Glove_bi, y_pred)
print(report)
80/80 - 2s
precision recall f1-score support
0 0.90 0.98 0.94 1216
1 0.60 0.67 0.63 9
2 0.72 0.76 0.74 45
3 0.83 0.71 0.77 14
4 0.73 0.80 0.76 76
5 0.67 0.83 0.74 42
6 0.89 0.62 0.74 40
7 1.00 0.71 0.83 14
8 0.94 0.73 0.82 22
9 0.95 0.90 0.92 20
10 0.87 0.69 0.77 29
11 0.85 0.74 0.79 70
12 0.85 0.67 0.75 70
13 1.00 0.73 0.84 11
14 1.00 0.75 0.86 8
15 1.00 0.62 0.77 8
16 1.00 0.56 0.71 9
17 0.92 0.92 0.92 75
18 0.88 0.78 0.82 27
19 1.00 0.50 0.67 18
20 1.00 0.50 0.67 2
21 1.00 0.69 0.82 13
22 0.76 0.67 0.71 24
23 0.89 0.69 0.78 58
24 0.50 0.86 0.63 14
25 0.78 0.44 0.56 16
26 1.00 0.67 0.80 3
27 0.87 0.67 0.75 30
28 0.77 0.67 0.71 15
29 0.00 0.00 0.00 0
30 1.00 1.00 1.00 3
31 1.00 1.00 1.00 4
32 0.00 0.00 0.00 1
33 1.00 0.83 0.91 6
34 0.88 0.68 0.76 31
35 0.64 0.88 0.74 8
36 0.86 0.50 0.63 12
37 0.91 0.71 0.80 14
38 1.00 1.00 1.00 2
39 1.00 0.67 0.80 3
40 1.00 0.33 0.50 9
41 1.00 0.50 0.67 2
42 1.00 0.36 0.53 11
43 1.00 0.09 0.17 11
44 1.00 1.00 1.00 2
45 0.87 0.49 0.62 41
46 1.00 0.75 0.86 4
47 1.00 0.67 0.80 3
48 1.00 1.00 1.00 1
49 1.00 0.25 0.40 4
50 1.00 1.00 1.00 1
51 1.00 0.50 0.67 2
52 1.00 1.00 1.00 1
53 0.00 0.00 0.00 0
54 1.00 1.00 1.00 1
55 1.00 1.00 1.00 1
56 0.79 0.44 0.56 50
57 1.00 0.40 0.57 5
58 0.00 0.00 0.00 0
59 1.00 0.40 0.57 5
60 1.00 0.50 0.67 2
61 0.00 0.00 0.00 0
62 1.00 0.80 0.89 5
63 1.00 1.00 1.00 1
64 1.00 1.00 1.00 1
65 0.00 0.00 0.00 0
66 0.00 0.00 0.00 0
67 0.92 0.96 0.94 24
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 0
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.62 0.90 0.73 201
73 0.65 0.47 0.54 79
micro avg 0.84 0.84 0.84 2550
macro avg 0.77 0.60 0.66 2550
weighted avg 0.85 0.84 0.83 2550
samples avg 0.84 0.84 0.84 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 14,142,182 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 8 epochs with early stopping comes with 90 in train and 64 in test which has a very large overfit and too less training loss compare to validation loss.
The classification Report depicts the f1 score came poor for many groups among 74 along with that due to large overfit we cannot select this model.
X_train_Glove_bi,X_test_Glove_bi,y_train_Glove_bi,y_test_Glove_bi = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_bi_padded,X_test_Glove_bi_padded=padd_sequence(X_train_Glove_bi,X_test_Glove_bi)
(2550, 673) (5950, 673)
from keras.layers import Dense, Input, Embedding, Dropout, Activation, Flatten, Bidirectional, GlobalMaxPool1D
This model has 1 embedding layer with glove 100d embedding and 1 bidirectional LSTM layer with output 128 and return sequence as true and one globalmaxpool1D layer and 3 dense layers with final layer having output 74
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model4 = Sequential()
model4.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix]))
model4.add(Bidirectional(LSTM(units=128 , return_sequences = True)))
model4.add(GlobalMaxPool1D())
model4.add(Dense(100, activation="relu"))
#model4.add(Dropout(0.5))
model4.add(Dense(80, activation="relu"))
#model4.add(Dropout(0.5))
model4.add(Dense(74, activation="softmax"))
model4.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'])
print(model4.summary())
Model: "sequential_18" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_18 (Embedding) (None, None, 100) 1176000 _________________________________________________________________ bidirectional_18 (Bidirectio (None, None, 256) 234496 _________________________________________________________________ global_max_pooling1d_2 (Glob (None, 256) 0 _________________________________________________________________ dense_22 (Dense) (None, 100) 25700 _________________________________________________________________ dense_23 (Dense) (None, 80) 8080 _________________________________________________________________ dense_24 (Dense) (None, 74) 5994 ================================================================= Total params: 1,450,270 Trainable params: 1,450,270 Non-trainable params: 0 _________________________________________________________________ None
history4=model4.fit(X_train_Glove_bi_padded,y_train_Glove_bi,validation_data=(X_test_Glove_bi_padded,y_test_Glove_bi),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 8s 141ms/step - loss: 2.7481 - accuracy: 0.4854 - val_loss: 2.2387 - val_accuracy: 0.5235 Epoch 2/30 60/60 [==============================] - 8s 133ms/step - loss: 1.9953 - accuracy: 0.5449 - val_loss: 1.9759 - val_accuracy: 0.5494 Epoch 3/30 60/60 [==============================] - 8s 132ms/step - loss: 1.7537 - accuracy: 0.5785 - val_loss: 1.8209 - val_accuracy: 0.5718 Epoch 4/30 60/60 [==============================] - 8s 133ms/step - loss: 1.5497 - accuracy: 0.6082 - val_loss: 1.7064 - val_accuracy: 0.5890 Epoch 5/30 60/60 [==============================] - 8s 132ms/step - loss: 1.3619 - accuracy: 0.6417 - val_loss: 1.6486 - val_accuracy: 0.5910 Epoch 6/30 60/60 [==============================] - 8s 132ms/step - loss: 1.1781 - accuracy: 0.6862 - val_loss: 1.6154 - val_accuracy: 0.6106 Epoch 7/30 60/60 [==============================] - 8s 132ms/step - loss: 1.0270 - accuracy: 0.7193 - val_loss: 1.6321 - val_accuracy: 0.6145 Epoch 8/30 60/60 [==============================] - 8s 130ms/step - loss: 0.8735 - accuracy: 0.7610 - val_loss: 1.6858 - val_accuracy: 0.6125 Epoch 9/30 60/60 [==============================] - 8s 132ms/step - loss: 0.7436 - accuracy: 0.7948 - val_loss: 1.7146 - val_accuracy: 0.6220 Epoch 10/30 60/60 [==============================] - 8s 132ms/step - loss: 0.6338 - accuracy: 0.8188 - val_loss: 1.8519 - val_accuracy: 0.6075 Epoch 11/30 60/60 [==============================] - 8s 132ms/step - loss: 0.5433 - accuracy: 0.8445 - val_loss: 1.8845 - val_accuracy: 0.6165
plot_acc(history4)
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model4.predict(padded_texts)
print (np.argmax(pred))
features=["problem print measure machine bar eaodcgsw trm"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = model4.predict(padded_texts)
print (np.argmax(pred))
y_probs = model4.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
0
17
80/80 - 2s
precision recall f1-score support
0 0.91 0.96 0.93 1168
1 1.00 0.08 0.14 13
2 0.88 0.57 0.69 51
3 0.43 0.50 0.46 6
4 0.73 0.75 0.74 81
5 0.47 0.74 0.57 38
6 0.57 0.82 0.67 34
7 0.67 0.67 0.67 12
8 0.86 0.55 0.67 22
9 0.93 1.00 0.96 26
10 0.64 0.55 0.59 29
11 0.74 0.72 0.73 76
12 0.87 0.73 0.80 75
13 0.35 0.64 0.45 11
14 1.00 0.10 0.18 10
15 0.00 0.00 0.00 10
16 0.67 0.25 0.36 8
17 0.91 0.99 0.95 79
18 0.62 0.85 0.72 33
19 0.78 0.30 0.44 23
20 0.00 0.00 0.00 3
21 0.75 0.90 0.82 10
22 0.85 0.69 0.76 32
23 0.69 0.60 0.65 68
24 0.44 0.70 0.54 10
25 0.55 0.37 0.44 30
26 0.00 0.00 0.00 1
27 0.78 0.68 0.72 31
28 0.45 0.50 0.48 20
29 0.00 0.00 0.00 1
30 1.00 0.33 0.50 3
31 0.00 0.00 0.00 8
32 0.00 0.00 0.00 1
33 0.29 1.00 0.44 2
34 0.64 0.82 0.72 33
35 0.33 0.85 0.48 13
36 0.50 0.69 0.58 13
37 0.75 0.46 0.57 13
38 0.00 0.00 0.00 2
39 0.00 0.00 0.00 8
40 0.50 0.09 0.15 11
41 1.00 0.33 0.50 3
42 0.67 0.22 0.33 9
43 0.75 0.38 0.50 8
44 0.00 0.00 0.00 3
45 0.76 0.77 0.76 44
46 0.00 0.00 0.00 4
47 0.00 0.00 0.00 1
48 1.00 1.00 1.00 2
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 0
51 0.00 0.00 0.00 3
52 0.00 0.00 0.00 1
53 0.00 0.00 0.00 0
54 0.00 0.00 0.00 1
55 0.00 0.00 0.00 1
56 0.65 0.56 0.60 43
57 0.00 0.00 0.00 4
58 0.00 0.00 0.00 1
59 0.25 0.29 0.27 7
60 0.00 0.00 0.00 1
61 0.00 0.00 0.00 0
62 0.00 0.00 0.00 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 1
65 0.00 0.00 0.00 0
66 0.00 0.00 0.00 2
67 0.87 0.81 0.84 16
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.64 0.87 0.74 193
73 0.56 0.26 0.36 76
micro avg 0.79 0.79 0.79 2550
macro avg 0.40 0.35 0.34 2550
weighted avg 0.78 0.79 0.77 2550
samples avg 0.79 0.79 0.79 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 1,450,270 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 10 epochs with early stopping comes with 84 in train and 61 in test which has a very large overfit and validation loss is very high
The classification Report depicts the f1 score came poor for many groups among 74 along with that due to large overfit we cannot select this model.The validation loss is very high
2 layers Bidirectional LSTM
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer 2 bidirectional LSTM layers with weight matrix as glove 100 and return sequence as True and one flatten and one dense layer with output 74
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model007 = Sequential()
model007.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
model007.add(Bidirectional(LSTM(128, return_sequences=True)))
model007.add(Bidirectional(LSTM(128, return_sequences=True)))
model007.add(Flatten())
model007.add(Dense(74,activation='softmax'))
model007.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model007.summary())
Model: "sequential_19" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_19 (Embedding) (None, 673, 100) 1176000 _________________________________________________________________ bidirectional_19 (Bidirectio (None, 673, 256) 234496 _________________________________________________________________ bidirectional_20 (Bidirectio (None, 673, 256) 394240 _________________________________________________________________ flatten_7 (Flatten) (None, 172288) 0 _________________________________________________________________ dense_25 (Dense) (None, 74) 12749386 ================================================================= Total params: 14,554,122 Trainable params: 14,554,122 Non-trainable params: 0 _________________________________________________________________ None
history007=model007.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 16s 273ms/step - loss: 2.2834 - accuracy: 0.5203 - val_loss: 1.9146 - val_accuracy: 0.5392 Epoch 2/30 60/60 [==============================] - 15s 258ms/step - loss: 1.5768 - accuracy: 0.6069 - val_loss: 1.7264 - val_accuracy: 0.5722 Epoch 3/30 60/60 [==============================] - 15s 255ms/step - loss: 1.2462 - accuracy: 0.6706 - val_loss: 1.5948 - val_accuracy: 0.6055 Epoch 4/30 60/60 [==============================] - 15s 254ms/step - loss: 0.9942 - accuracy: 0.7207 - val_loss: 1.6378 - val_accuracy: 0.6082 Epoch 5/30 60/60 [==============================] - 15s 253ms/step - loss: 0.7953 - accuracy: 0.7703 - val_loss: 1.6871 - val_accuracy: 0.6161 Epoch 6/30 60/60 [==============================] - 15s 254ms/step - loss: 0.6498 - accuracy: 0.8224 - val_loss: 1.6622 - val_accuracy: 0.6318 Epoch 7/30 60/60 [==============================] - 15s 255ms/step - loss: 0.5034 - accuracy: 0.8516 - val_loss: 1.9034 - val_accuracy: 0.6353 Epoch 8/30 60/60 [==============================] - 15s 255ms/step - loss: 0.4432 - accuracy: 0.8724 - val_loss: 1.9590 - val_accuracy: 0.6141
plot_acc(history007)
y_probs = model007.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
80/80 - 3s
precision recall f1-score support
0 0.91 0.94 0.92 1168
1 0.71 0.38 0.50 13
2 0.77 0.53 0.63 51
3 1.00 0.67 0.80 6
4 0.76 0.83 0.79 81
5 0.61 0.79 0.69 38
6 0.81 0.74 0.77 34
7 0.83 0.83 0.83 12
8 0.82 0.82 0.82 22
9 0.93 1.00 0.96 26
10 0.81 0.45 0.58 29
11 0.70 0.71 0.71 76
12 0.68 0.76 0.72 75
13 0.62 0.73 0.67 11
14 0.73 0.80 0.76 10
15 0.88 0.70 0.78 10
16 1.00 0.62 0.77 8
17 0.93 0.90 0.92 79
18 0.89 0.94 0.91 33
19 0.83 0.43 0.57 23
20 1.00 0.67 0.80 3
21 0.67 1.00 0.80 10
22 0.58 0.88 0.70 32
23 0.85 0.57 0.68 68
24 0.57 0.40 0.47 10
25 0.67 0.60 0.63 30
26 1.00 1.00 1.00 1
27 0.74 0.84 0.79 31
28 0.85 0.55 0.67 20
29 1.00 1.00 1.00 1
30 1.00 1.00 1.00 3
31 1.00 0.88 0.93 8
32 0.00 0.00 0.00 1
33 0.17 0.50 0.25 2
34 0.76 0.94 0.84 33
35 0.88 0.54 0.67 13
36 1.00 0.77 0.87 13
37 0.88 0.54 0.67 13
38 1.00 1.00 1.00 2
39 1.00 0.50 0.67 8
40 0.50 0.27 0.35 11
41 1.00 0.67 0.80 3
42 0.75 0.33 0.46 9
43 0.40 1.00 0.57 8
44 0.75 1.00 0.86 3
45 0.58 0.80 0.67 44
46 0.67 0.50 0.57 4
47 1.00 1.00 1.00 1
48 0.22 1.00 0.36 2
49 1.00 1.00 1.00 3
50 0.00 0.00 0.00 0
51 1.00 0.33 0.50 3
52 1.00 1.00 1.00 1
53 0.00 0.00 0.00 0
54 1.00 1.00 1.00 1
55 1.00 1.00 1.00 1
56 0.81 0.49 0.61 43
57 0.23 0.75 0.35 4
58 0.00 0.00 0.00 1
59 0.71 0.71 0.71 7
60 1.00 1.00 1.00 1
61 0.00 0.00 0.00 0
62 1.00 0.67 0.80 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 1
65 0.00 0.00 0.00 0
66 1.00 0.50 0.67 2
67 0.86 0.75 0.80 16
68 0.00 0.00 0.00 0
69 1.00 1.00 1.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.95 0.39 0.56 193
73 0.38 0.93 0.54 76
micro avg 0.80 0.80 0.80 2550
macro avg 0.68 0.63 0.63 2550
weighted avg 0.83 0.80 0.80 2550
samples avg 0.80 0.80 0.80 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 14,554,122 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 8 epochs comes with 87 in train and 61 in test which has a larger overfit and too less training loss compare to validation loss.
The classification Report depicts the f1 score came poor for many groups among 74 along with that due to large overfit we cannot select this model.The validation loss is very high
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer 2 bidirectional LSTM layers with weight matrix as glove 100 and return sequence as True and one flatten and one dense layer with 1 drop out layer and 1 spatial drop out layer .
Drop out we have used 0.3 and spatial drop out as 0.4
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import Activation, Dense, Flatten, Dropout, Bidirectional, SpatialDropout1D
model009 = Sequential()
model009.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
model009.add(SpatialDropout1D(0.4))
model009.add(Bidirectional(LSTM(128, return_sequences=True)))
model009.add(Dropout(0.3))
model009.add(Bidirectional(LSTM(128, return_sequences=True)))
model009.add(Flatten())
model009.add(Dense(74,activation='softmax'))
model009.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model009.summary())
Model: "sequential_20" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_20 (Embedding) (None, 673, 100) 1176000 _________________________________________________________________ spatial_dropout1d_3 (Spatial (None, 673, 100) 0 _________________________________________________________________ bidirectional_21 (Bidirectio (None, 673, 256) 234496 _________________________________________________________________ dropout_5 (Dropout) (None, 673, 256) 0 _________________________________________________________________ bidirectional_22 (Bidirectio (None, 673, 256) 394240 _________________________________________________________________ flatten_8 (Flatten) (None, 172288) 0 _________________________________________________________________ dense_26 (Dense) (None, 74) 12749386 ================================================================= Total params: 14,554,122 Trainable params: 14,554,122 Non-trainable params: 0 _________________________________________________________________ None
history009=model009.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 17s 280ms/step - loss: 2.3559 - accuracy: 0.5104 - val_loss: 1.9774 - val_accuracy: 0.5337 Epoch 2/30 60/60 [==============================] - 16s 263ms/step - loss: 1.8245 - accuracy: 0.5657 - val_loss: 1.8343 - val_accuracy: 0.5584 Epoch 3/30 60/60 [==============================] - 16s 260ms/step - loss: 1.5581 - accuracy: 0.6059 - val_loss: 1.6473 - val_accuracy: 0.5902 Epoch 4/30 60/60 [==============================] - 15s 258ms/step - loss: 1.3975 - accuracy: 0.6269 - val_loss: 1.6826 - val_accuracy: 0.5922 Epoch 5/30 60/60 [==============================] - 15s 258ms/step - loss: 1.2505 - accuracy: 0.6598 - val_loss: 1.5893 - val_accuracy: 0.6184 Epoch 6/30 60/60 [==============================] - 16s 258ms/step - loss: 1.1226 - accuracy: 0.6894 - val_loss: 1.6487 - val_accuracy: 0.6110 Epoch 7/30 60/60 [==============================] - 16s 260ms/step - loss: 1.0121 - accuracy: 0.7076 - val_loss: 1.6905 - val_accuracy: 0.6090 Epoch 8/30 60/60 [==============================] - 16s 260ms/step - loss: 0.9102 - accuracy: 0.7326 - val_loss: 1.6192 - val_accuracy: 0.6314 Epoch 9/30 60/60 [==============================] - 16s 259ms/step - loss: 0.8406 - accuracy: 0.7555 - val_loss: 1.7390 - val_accuracy: 0.6196 Epoch 10/30 60/60 [==============================] - 16s 260ms/step - loss: 0.7390 - accuracy: 0.7792 - val_loss: 1.8563 - val_accuracy: 0.6318
plot_acc(history009)
y_probs = model009.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
80/80 - 3s
precision recall f1-score support
0 0.81 0.98 0.88 1168
1 1.00 0.54 0.70 13
2 0.89 0.49 0.63 51
3 0.50 0.17 0.25 6
4 0.89 0.68 0.77 81
5 0.64 0.66 0.65 38
6 0.84 0.62 0.71 34
7 1.00 0.58 0.74 12
8 0.81 0.77 0.79 22
9 0.93 1.00 0.96 26
10 1.00 0.62 0.77 29
11 0.73 0.47 0.58 76
12 0.83 0.64 0.72 75
13 0.83 0.45 0.59 11
14 0.80 0.80 0.80 10
15 0.73 0.80 0.76 10
16 0.60 0.38 0.46 8
17 0.90 0.94 0.92 79
18 0.80 0.61 0.69 33
19 1.00 0.39 0.56 23
20 1.00 0.33 0.50 3
21 1.00 0.60 0.75 10
22 0.84 0.66 0.74 32
23 0.83 0.43 0.56 68
24 0.33 0.90 0.49 10
25 1.00 0.13 0.24 30
26 0.00 0.00 0.00 1
27 0.94 0.52 0.67 31
28 1.00 0.40 0.57 20
29 1.00 1.00 1.00 1
30 0.50 0.67 0.57 3
31 1.00 0.50 0.67 8
32 1.00 1.00 1.00 1
33 1.00 0.50 0.67 2
34 1.00 0.45 0.62 33
35 0.91 0.77 0.83 13
36 0.90 0.69 0.78 13
37 0.80 0.62 0.70 13
38 1.00 1.00 1.00 2
39 1.00 0.38 0.55 8
40 0.25 0.55 0.34 11
41 1.00 1.00 1.00 3
42 0.80 0.44 0.57 9
43 1.00 0.12 0.22 8
44 1.00 0.67 0.80 3
45 0.82 0.73 0.77 44
46 0.67 0.50 0.57 4
47 1.00 1.00 1.00 1
48 0.00 0.00 0.00 2
49 1.00 1.00 1.00 3
50 0.00 0.00 0.00 0
51 1.00 0.67 0.80 3
52 1.00 1.00 1.00 1
53 0.00 0.00 0.00 0
54 1.00 1.00 1.00 1
55 1.00 1.00 1.00 1
56 0.80 0.37 0.51 43
57 0.00 0.00 0.00 4
58 1.00 1.00 1.00 1
59 0.83 0.71 0.77 7
60 1.00 1.00 1.00 1
61 0.00 0.00 0.00 0
62 1.00 0.67 0.80 3
63 0.00 0.00 0.00 0
64 1.00 1.00 1.00 1
65 0.00 0.00 0.00 0
66 1.00 1.00 1.00 2
67 0.85 0.69 0.76 16
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.57 0.93 0.71 193
73 1.00 0.12 0.21 76
micro avg 0.78 0.78 0.78 2550
macro avg 0.73 0.56 0.60 2550
weighted avg 0.81 0.78 0.76 2550
samples avg 0.78 0.78 0.78 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 14,554,122 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 10 epochs comes with 77 in train and 63 in test which has a less overfit compare to all other models and one of the best performance we got so far.Though there is high imbalance
The classification Report depicts the f1 score came poor for many groups among 74 but the overall performance is best among all models we have tried so far on complete data set.
5.8.1. Building of basic model with one Embedding,LSTM and Dense layer with weight matrix to check the accuracy.
5.8.2.Tokenization and vocab creation
5.8.3.Base Model with categorical_crossentropy and adam optimizer
5.8.4.Error Plot
5.8.5. Classification Report
5.8.6.Observation
5.9.1. Building of a model with one Embedding with glove 300d weight matrix, one bidirectional LSTM and one Dense layer to check the accuracy. 5.9.2.Bi directional LSTM Model with categorical_crossentropy and adam optimizer 5.9.3.Error Plot 5.9.4. Classiication report 5.9.5.Observation
5.10.1. Building of a model with one Embedding layer with glove 300d weight matrix, one bidirectional LSTM with return sequence as True,1 globalmaxpool1D,3 Dense layers.
5.10.2.Model Description
5.10.3.Error Plot
5.10.4. Classification report
5.10.5.Observation
5.11.1. Building of a model with one Embedding layer with glove 300d weight matrix, one bidirectional LSTM with return sequence as True and one flatten and one Dense layer. 5.11.2.Model Description 5.11.3.Error Plot 5.11.4. Classification report 5.11.5.Observation
5.12.1. Building of a model with one Embedding layer with glove 300d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer.
5.12.2.Model Description
5.12.3.Error Plot
5.12.4. Classification report
5.12.5.Observation
5.13.1. Building of a model with one Embedding layer with glove 300d weight matrix, two bidirectional LSTM layers with return sequence as True,1 flatten and 1 Dense layer, 1 drop out layer and 1 spatial drop out layer
5.13.2.Model Description
5.13.3.Error Plot
5.13.4. Classification report
5.13.5.Observation
Embedding file import
EMBEDDING_FILE_300d = '/content/drive/My Drive/glove.6B.300d.txt'
embeddings_index = {}
f = open(EMBEDDING_FILE_300d)
for line in f:
values = line.split()
word = values[0]
coefs = np.asarray(values[1:], dtype='float32')
embeddings_index[word] = coefs
f.close()
print('Found %s word vectors.' % len(embeddings_index))
Found 400000 word vectors.
embedding_dim = 300
embedding_matrix = np.zeros((vocab_size, embedding_dim))
for word, i in tokenizer.word_index.items():
if i < vocab_size:
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_padded,X_test_Glove_padded=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer with glove 300d weight matrix, 1 LSTM layer with output 128 and return sequence as false and one dense layer with output 74
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model11 = Sequential()
model11.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
model11.add(LSTM(128, return_sequences=False))
model11.add(Dense(74, activation='softmax'))
model11.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model11.summary())
Model: "sequential_21" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_21 (Embedding) (None, 673, 300) 3528000 _________________________________________________________________ lstm_29 (LSTM) (None, 128) 219648 _________________________________________________________________ dense_27 (Dense) (None, 74) 9546 ================================================================= Total params: 3,757,194 Trainable params: 3,757,194 Non-trainable params: 0 _________________________________________________________________ None
history11=model11.fit(X_train_Glove_padded,y_train_Glove,validation_data=(X_test_Glove_padded,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 8s 132ms/step - loss: 2.5366 - accuracy: 0.4976 - val_loss: 2.0505 - val_accuracy: 0.5486 Epoch 2/30 60/60 [==============================] - 8s 126ms/step - loss: 1.8511 - accuracy: 0.5674 - val_loss: 1.7296 - val_accuracy: 0.6012 Epoch 3/30 60/60 [==============================] - 8s 126ms/step - loss: 1.5216 - accuracy: 0.6227 - val_loss: 1.6007 - val_accuracy: 0.6027 Epoch 4/30 60/60 [==============================] - 8s 127ms/step - loss: 1.2810 - accuracy: 0.6666 - val_loss: 1.5087 - val_accuracy: 0.6235 Epoch 5/30 60/60 [==============================] - 8s 127ms/step - loss: 1.0556 - accuracy: 0.7165 - val_loss: 1.4899 - val_accuracy: 0.6361 Epoch 6/30 60/60 [==============================] - 8s 126ms/step - loss: 0.8886 - accuracy: 0.7607 - val_loss: 1.4399 - val_accuracy: 0.6447 Epoch 7/30 60/60 [==============================] - 8s 126ms/step - loss: 0.7431 - accuracy: 0.7966 - val_loss: 1.4326 - val_accuracy: 0.6400 Epoch 8/30 60/60 [==============================] - 8s 126ms/step - loss: 0.6276 - accuracy: 0.8316 - val_loss: 1.4543 - val_accuracy: 0.6533 Epoch 9/30 60/60 [==============================] - 8s 125ms/step - loss: 0.5239 - accuracy: 0.8571 - val_loss: 1.4723 - val_accuracy: 0.6533 Epoch 10/30 60/60 [==============================] - 7s 125ms/step - loss: 0.4487 - accuracy: 0.8803 - val_loss: 1.4923 - val_accuracy: 0.6651 Epoch 11/30 60/60 [==============================] - 8s 125ms/step - loss: 0.3826 - accuracy: 0.8955 - val_loss: 1.5364 - val_accuracy: 0.6616 Epoch 12/30 60/60 [==============================] - 8s 126ms/step - loss: 0.3283 - accuracy: 0.9104 - val_loss: 1.5717 - val_accuracy: 0.6600
plot_acc(history11)
y_probs = model11.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
80/80 - 1s
precision recall f1-score support
0 0.90 0.97 0.93 1168
1 0.75 0.69 0.72 13
2 0.84 0.63 0.72 51
3 0.67 0.67 0.67 6
4 0.91 0.83 0.86 81
5 0.87 0.89 0.88 38
6 0.88 0.88 0.88 34
7 0.91 0.83 0.87 12
8 0.84 0.95 0.89 22
9 1.00 0.96 0.98 26
10 0.72 0.90 0.80 29
11 0.82 0.74 0.78 76
12 0.77 0.77 0.77 75
13 0.88 0.64 0.74 11
14 0.88 0.70 0.78 10
15 0.82 0.90 0.86 10
16 0.67 0.50 0.57 8
17 0.95 0.96 0.96 79
18 0.74 0.79 0.76 33
19 0.83 0.65 0.73 23
20 0.50 0.33 0.40 3
21 0.80 0.40 0.53 10
22 0.85 0.69 0.76 32
23 0.94 0.66 0.78 68
24 0.75 0.30 0.43 10
25 0.80 0.40 0.53 30
26 1.00 1.00 1.00 1
27 0.73 0.77 0.75 31
28 0.92 0.55 0.69 20
29 1.00 1.00 1.00 1
30 1.00 0.67 0.80 3
31 1.00 0.50 0.67 8
32 0.00 0.00 0.00 1
33 0.67 1.00 0.80 2
34 0.71 0.82 0.76 33
35 1.00 0.62 0.76 13
36 0.75 0.92 0.83 13
37 0.88 0.54 0.67 13
38 0.00 0.00 0.00 2
39 1.00 0.50 0.67 8
40 1.00 0.36 0.53 11
41 0.00 0.00 0.00 3
42 0.83 0.56 0.67 9
43 0.50 1.00 0.67 8
44 1.00 1.00 1.00 3
45 0.77 0.68 0.72 44
46 1.00 0.75 0.86 4
47 0.00 0.00 0.00 1
48 1.00 0.50 0.67 2
49 1.00 1.00 1.00 3
50 0.00 0.00 0.00 0
51 1.00 0.67 0.80 3
52 1.00 1.00 1.00 1
53 0.00 0.00 0.00 0
54 0.00 0.00 0.00 1
55 1.00 1.00 1.00 1
56 0.81 0.58 0.68 43
57 1.00 0.75 0.86 4
58 0.00 0.00 0.00 1
59 0.67 0.57 0.62 7
60 0.00 0.00 0.00 1
61 0.00 0.00 0.00 0
62 1.00 0.33 0.50 3
63 0.00 0.00 0.00 0
64 1.00 1.00 1.00 1
65 0.00 0.00 0.00 0
66 1.00 0.50 0.67 2
67 0.71 0.75 0.73 16
68 0.00 0.00 0.00 0
69 1.00 1.00 1.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.91 0.61 0.73 193
73 0.38 0.93 0.54 76
micro avg 0.84 0.84 0.84 2550
macro avg 0.68 0.58 0.61 2550
weighted avg 0.86 0.84 0.83 2550
samples avg 0.84 0.84 0.84 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 3,757,194 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 12 epochs comes with 91 in train and 66 in test which has a very large overfit and too less training loss compare to validation loss.
The error plot also explains the overfit.
Classification report depicts that the scores are not good we will try to improve more.The classification report did not went well due to hudge imbalance in complete data
This model has 1 embedding layer with glove 300d weight matrix, 1 Bi directional LSTM layer with output 128 and return sequence as false and one dense layer with output 74 with soft max in dense layer as activation
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_padded,X_test_Glove_padded=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
from tensorflow.keras.layers import LSTM, Embedding, Dense, Dropout, Bidirectional
model12 = Sequential()
model12.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
#model2.add(Dropout(0.1))
model12.add(Bidirectional(LSTM(128, return_sequences=False)))
model12.add(Dense(74, activation='softmax'))
#model2.add(Dropout(0.1))
#model2.add(Bidirectional(LSTM(128, return_sequences=False)))
#model2.add(Dense(74, activation='softmax'))
model12.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model12.summary())
Model: "sequential_22" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_22 (Embedding) (None, 673, 300) 3528000 _________________________________________________________________ bidirectional_23 (Bidirectio (None, 256) 439296 _________________________________________________________________ dense_28 (Dense) (None, 74) 19018 ================================================================= Total params: 3,986,314 Trainable params: 3,986,314 Non-trainable params: 0 _________________________________________________________________ None
history12=model12.fit(X_train_Glove_padded,y_train_Glove,validation_data=(X_test_Glove_padded,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 12s 203ms/step - loss: 2.4665 - accuracy: 0.4990 - val_loss: 2.0033 - val_accuracy: 0.5420 Epoch 2/30 60/60 [==============================] - 11s 189ms/step - loss: 1.7619 - accuracy: 0.5825 - val_loss: 1.7296 - val_accuracy: 0.5863 Epoch 3/30 60/60 [==============================] - 11s 188ms/step - loss: 1.4505 - accuracy: 0.6328 - val_loss: 1.5563 - val_accuracy: 0.6192 Epoch 4/30 60/60 [==============================] - 11s 188ms/step - loss: 1.2412 - accuracy: 0.6756 - val_loss: 1.4687 - val_accuracy: 0.6235 Epoch 5/30 60/60 [==============================] - 11s 188ms/step - loss: 1.0641 - accuracy: 0.7145 - val_loss: 1.4249 - val_accuracy: 0.6306 Epoch 6/30 60/60 [==============================] - 11s 188ms/step - loss: 0.8905 - accuracy: 0.7556 - val_loss: 1.4130 - val_accuracy: 0.6412 Epoch 7/30 60/60 [==============================] - 11s 189ms/step - loss: 0.7561 - accuracy: 0.7933 - val_loss: 1.3809 - val_accuracy: 0.6584 Epoch 8/30 60/60 [==============================] - 11s 190ms/step - loss: 0.6342 - accuracy: 0.8274 - val_loss: 1.3873 - val_accuracy: 0.6663 Epoch 9/30 60/60 [==============================] - 11s 189ms/step - loss: 0.5540 - accuracy: 0.8477 - val_loss: 1.3834 - val_accuracy: 0.6584 Epoch 10/30 60/60 [==============================] - 11s 189ms/step - loss: 0.4571 - accuracy: 0.8746 - val_loss: 1.4370 - val_accuracy: 0.6490 Epoch 11/30 60/60 [==============================] - 11s 188ms/step - loss: 0.3985 - accuracy: 0.8899 - val_loss: 1.4369 - val_accuracy: 0.6541 Epoch 12/30 60/60 [==============================] - 11s 188ms/step - loss: 0.3393 - accuracy: 0.9082 - val_loss: 1.5019 - val_accuracy: 0.6580
plot_acc(history12)
y_probs = model12.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
80/80 - 2s
precision recall f1-score support
0 0.91 0.97 0.94 1168
1 0.80 0.62 0.70 13
2 0.97 0.73 0.83 51
3 0.83 0.83 0.83 6
4 0.82 0.84 0.83 81
5 0.68 0.74 0.71 38
6 0.85 0.65 0.73 34
7 1.00 0.33 0.50 12
8 0.93 0.64 0.76 22
9 1.00 0.96 0.98 26
10 0.72 0.79 0.75 29
11 0.68 0.67 0.68 76
12 0.87 0.69 0.77 75
13 0.71 0.45 0.56 11
14 1.00 0.60 0.75 10
15 0.86 0.60 0.71 10
16 1.00 0.50 0.67 8
17 0.94 0.92 0.93 79
18 0.74 0.88 0.81 33
19 0.89 0.74 0.81 23
20 0.00 0.00 0.00 3
21 0.67 0.80 0.73 10
22 0.77 0.72 0.74 32
23 0.79 0.66 0.72 68
24 0.39 0.70 0.50 10
25 0.89 0.53 0.67 30
26 1.00 1.00 1.00 1
27 0.69 0.81 0.75 31
28 0.78 0.70 0.74 20
29 1.00 1.00 1.00 1
30 1.00 1.00 1.00 3
31 1.00 0.62 0.77 8
32 0.00 0.00 0.00 1
33 0.67 1.00 0.80 2
34 0.76 0.79 0.78 33
35 0.48 0.77 0.59 13
36 0.69 0.85 0.76 13
37 0.75 0.46 0.57 13
38 1.00 1.00 1.00 2
39 1.00 0.62 0.77 8
40 1.00 0.36 0.53 11
41 1.00 0.67 0.80 3
42 0.67 0.22 0.33 9
43 1.00 0.25 0.40 8
44 1.00 0.67 0.80 3
45 0.85 0.66 0.74 44
46 1.00 0.75 0.86 4
47 0.00 0.00 0.00 1
48 1.00 1.00 1.00 2
49 1.00 0.33 0.50 3
50 0.00 0.00 0.00 0
51 1.00 0.67 0.80 3
52 1.00 1.00 1.00 1
53 0.00 0.00 0.00 0
54 1.00 1.00 1.00 1
55 0.00 0.00 0.00 1
56 0.71 0.58 0.64 43
57 1.00 0.50 0.67 4
58 0.00 0.00 0.00 1
59 0.75 0.43 0.55 7
60 1.00 1.00 1.00 1
61 0.00 0.00 0.00 0
62 0.75 1.00 0.86 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 1
65 0.00 0.00 0.00 0
66 1.00 0.50 0.67 2
67 0.81 0.81 0.81 16
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.60 0.95 0.74 193
73 0.88 0.20 0.32 76
micro avg 0.83 0.83 0.83 2550
macro avg 0.68 0.56 0.60 2550
weighted avg 0.84 0.83 0.82 2550
samples avg 0.83 0.83 0.83 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 3,986,314 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 12 epochs comes with 90 in train and 65 in test which has a very large overfit and too less training loss compare to validation loss.
The classification Report depicts the f1 score came poor for many groups among 74 along with that due to large overfit we cannot select this model.
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_Glove_padded,X_test_Glove_padded=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer with glove 300d embedding and 1 bidirectional LSTM layer with output 128 and return sequence as true and one globalmaxpool1D layer and 3 dense layers with final layer having output as 74
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
model14 = Sequential()
model14.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix]))
model14.add(Bidirectional(LSTM(units=128 , return_sequences = True)))
model14.add(GlobalMaxPool1D())
model14.add(Dense(100, activation="relu"))
#model14.add(Dropout(0.5))
model14.add(Dense(80, activation="relu"))
#model14.add(Dropout(0.5))
model14.add(Dense(74, activation="softmax"))
model14.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'])
print(model14.summary())
Model: "sequential_23" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_23 (Embedding) (None, None, 300) 3528000 _________________________________________________________________ bidirectional_24 (Bidirectio (None, None, 256) 439296 _________________________________________________________________ global_max_pooling1d_3 (Glob (None, 256) 0 _________________________________________________________________ dense_29 (Dense) (None, 100) 25700 _________________________________________________________________ dense_30 (Dense) (None, 80) 8080 _________________________________________________________________ dense_31 (Dense) (None, 74) 5994 ================================================================= Total params: 4,007,070 Trainable params: 4,007,070 Non-trainable params: 0 _________________________________________________________________ None
history14=model14.fit(X_train_Glove_padded,y_train_Glove,validation_data=(X_test_Glove_padded,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 14s 228ms/step - loss: 2.6064 - accuracy: 0.5045 - val_loss: 2.0573 - val_accuracy: 0.5314 Epoch 2/30 60/60 [==============================] - 12s 195ms/step - loss: 1.8050 - accuracy: 0.5667 - val_loss: 1.7377 - val_accuracy: 0.5882 Epoch 3/30 60/60 [==============================] - 12s 197ms/step - loss: 1.4618 - accuracy: 0.6299 - val_loss: 1.5480 - val_accuracy: 0.6208 Epoch 4/30 60/60 [==============================] - 12s 194ms/step - loss: 1.1861 - accuracy: 0.6818 - val_loss: 1.4510 - val_accuracy: 0.6286 Epoch 5/30 60/60 [==============================] - 12s 195ms/step - loss: 0.9345 - accuracy: 0.7504 - val_loss: 1.4552 - val_accuracy: 0.6435 Epoch 6/30 60/60 [==============================] - 12s 193ms/step - loss: 0.7135 - accuracy: 0.8035 - val_loss: 1.5496 - val_accuracy: 0.6302 Epoch 7/30 60/60 [==============================] - 12s 194ms/step - loss: 0.5495 - accuracy: 0.8528 - val_loss: 1.5931 - val_accuracy: 0.6349 Epoch 8/30 60/60 [==============================] - 12s 196ms/step - loss: 0.4143 - accuracy: 0.8837 - val_loss: 1.7256 - val_accuracy: 0.6467 Epoch 9/30 60/60 [==============================] - 12s 194ms/step - loss: 0.3297 - accuracy: 0.9086 - val_loss: 1.7712 - val_accuracy: 0.6361
plot_acc(history14)
y_probs = model14.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
80/80 - 2s
precision recall f1-score support
0 0.92 0.96 0.94 1168
1 0.89 0.62 0.73 13
2 0.94 0.59 0.72 51
3 0.42 0.83 0.56 6
4 0.81 0.85 0.83 81
5 0.76 0.82 0.78 38
6 0.74 0.91 0.82 34
7 0.83 0.83 0.83 12
8 0.89 0.73 0.80 22
9 1.00 0.96 0.98 26
10 1.00 0.76 0.86 29
11 0.86 0.74 0.79 76
12 0.90 0.81 0.85 75
13 0.75 0.55 0.63 11
14 0.50 0.40 0.44 10
15 0.88 0.70 0.78 10
16 0.64 0.88 0.74 8
17 0.96 0.96 0.96 79
18 0.90 0.85 0.88 33
19 0.63 0.74 0.68 23
20 0.00 0.00 0.00 3
21 0.57 0.80 0.67 10
22 0.84 0.81 0.83 32
23 0.83 0.76 0.79 68
24 0.39 0.70 0.50 10
25 0.74 0.57 0.64 30
26 1.00 1.00 1.00 1
27 0.84 0.87 0.86 31
28 0.74 0.70 0.72 20
29 0.00 0.00 0.00 1
30 1.00 1.00 1.00 3
31 1.00 0.62 0.77 8
32 0.00 0.00 0.00 1
33 0.67 1.00 0.80 2
34 0.91 0.88 0.89 33
35 0.73 0.85 0.79 13
36 1.00 0.69 0.82 13
37 0.91 0.77 0.83 13
38 1.00 0.50 0.67 2
39 1.00 0.50 0.67 8
40 0.50 0.18 0.27 11
41 0.67 0.67 0.67 3
42 1.00 0.56 0.71 9
43 1.00 0.12 0.22 8
44 1.00 0.33 0.50 3
45 0.79 0.77 0.78 44
46 0.57 1.00 0.73 4
47 0.00 0.00 0.00 1
48 0.00 0.00 0.00 2
49 1.00 0.67 0.80 3
50 0.00 0.00 0.00 0
51 1.00 0.67 0.80 3
52 0.00 0.00 0.00 1
53 0.00 0.00 0.00 0
54 1.00 1.00 1.00 1
55 0.00 0.00 0.00 1
56 0.78 0.49 0.60 43
57 0.75 0.75 0.75 4
58 0.00 0.00 0.00 1
59 0.67 0.57 0.62 7
60 0.00 0.00 0.00 1
61 0.00 0.00 0.00 0
62 1.00 0.33 0.50 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 1
65 0.00 0.00 0.00 0
66 0.00 0.00 0.00 2
67 0.74 0.88 0.80 16
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.95 0.60 0.74 193
73 0.36 0.93 0.52 76
micro avg 0.84 0.84 0.84 2550
macro avg 0.60 0.53 0.54 2550
weighted avg 0.86 0.84 0.84 2550
samples avg 0.84 0.84 0.84 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 4,007,070 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 9 epochs with early stopping comes with 90 in train and 63 in test which has a very large overfit and too less training loss compare to validation loss.
The classification Report depicts the f1 score came poor for many groups among 74 along with that due to large overfit we cannot select this model.
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer with glov 100d 1 bi directional LSTM layer with output 128 and return sequence as true, one flatten layer and one dense layer with output 74
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import TimeDistributed
from keras.models import Sequential
from keras.layers import Activation, Dense, Flatten
model1j3 = Sequential()
model1j3.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
model1j3.add(Bidirectional(LSTM(128, return_sequences=True)))
model1j3.add(Flatten())
model1j3.add(Dense(74, activation='softmax'))
model1j3.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(model1j3.summary())
Model: "sequential_16" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_16 (Embedding) (None, 673, 300) 3474900 _________________________________________________________________ bidirectional_16 (Bidirectio (None, 673, 256) 439296 _________________________________________________________________ flatten_6 (Flatten) (None, 172288) 0 _________________________________________________________________ dense_21 (Dense) (None, 74) 12749386 ================================================================= Total params: 16,663,582 Trainable params: 16,663,582 Non-trainable params: 0 _________________________________________________________________ None
historyj3=model1j3.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 13s 216ms/step - loss: 2.1707 - accuracy: 0.5279 - val_loss: 1.7277 - val_accuracy: 0.5949 Epoch 2/30 60/60 [==============================] - 12s 203ms/step - loss: 1.2682 - accuracy: 0.6714 - val_loss: 1.6394 - val_accuracy: 0.6145 Epoch 3/30 60/60 [==============================] - 12s 203ms/step - loss: 0.8359 - accuracy: 0.7647 - val_loss: 1.6453 - val_accuracy: 0.6157 Epoch 4/30 60/60 [==============================] - 12s 205ms/step - loss: 0.5612 - accuracy: 0.8429 - val_loss: 1.6857 - val_accuracy: 0.6318 Epoch 5/30 60/60 [==============================] - 12s 205ms/step - loss: 0.4920 - accuracy: 0.8726 - val_loss: 1.8178 - val_accuracy: 0.6408 Epoch 6/30 60/60 [==============================] - 12s 206ms/step - loss: 0.3565 - accuracy: 0.9024 - val_loss: 1.9334 - val_accuracy: 0.6345 Epoch 7/30 60/60 [==============================] - 12s 206ms/step - loss: 0.3256 - accuracy: 0.9173 - val_loss: 1.8768 - val_accuracy: 0.6412
plot_acc(historyj3)
y_probs = model1j3.predict(X_test_Glove_bi_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_Glove_bi, y_pred)
print(report)
80/80 - 2s
precision recall f1-score support
0 0.92 0.96 0.94 1174
1 0.80 0.50 0.62 8
2 0.89 0.70 0.78 44
3 0.62 0.80 0.70 10
4 0.78 0.86 0.82 81
5 0.62 0.79 0.69 33
6 0.91 0.79 0.85 38
7 1.00 0.83 0.91 12
8 0.95 0.76 0.84 25
9 0.96 1.00 0.98 23
10 0.84 0.59 0.70 27
11 0.78 0.77 0.78 65
12 0.82 0.83 0.83 78
13 0.73 0.67 0.70 12
14 0.91 0.83 0.87 12
15 1.00 0.89 0.94 9
16 0.86 0.86 0.86 7
17 0.97 0.91 0.94 79
18 0.84 0.95 0.89 39
19 0.94 0.75 0.83 20
20 1.00 0.67 0.80 6
21 1.00 0.71 0.83 17
22 0.97 0.82 0.89 39
23 0.79 0.72 0.76 58
24 0.58 1.00 0.74 7
25 0.88 0.44 0.58 16
26 1.00 0.67 0.80 3
27 0.85 0.68 0.76 25
28 0.87 0.52 0.65 25
29 0.00 0.00 0.00 0
30 0.00 0.00 0.00 0
31 0.75 0.60 0.67 5
32 1.00 1.00 1.00 1
33 0.83 0.83 0.83 6
34 0.67 0.80 0.73 30
35 0.92 0.92 0.92 13
36 1.00 0.79 0.88 14
37 1.00 1.00 1.00 11
38 0.00 0.00 0.00 0
39 1.00 1.00 1.00 5
40 0.75 0.38 0.50 8
41 1.00 0.50 0.67 2
42 1.00 0.38 0.55 8
43 0.75 0.60 0.67 5
44 0.00 0.00 0.00 1
45 0.81 0.58 0.67 52
46 1.00 0.67 0.80 3
47 0.75 1.00 0.86 3
48 1.00 0.33 0.50 3
49 1.00 0.80 0.89 5
50 1.00 0.50 0.67 2
51 1.00 0.67 0.80 3
52 1.00 0.67 0.80 3
53 0.00 0.00 0.00 0
54 0.00 0.00 0.00 0
55 0.00 0.00 0.00 0
56 0.77 0.51 0.61 59
57 1.00 0.60 0.75 5
58 0.00 0.00 0.00 0
59 1.00 0.70 0.82 10
60 1.00 0.50 0.67 2
61 0.00 0.00 0.00 1
62 1.00 0.67 0.80 3
63 1.00 1.00 1.00 2
64 0.00 0.00 0.00 0
65 1.00 1.00 1.00 2
66 0.50 1.00 0.67 1
67 0.75 0.71 0.73 17
68 0.00 0.00 0.00 0
69 1.00 1.00 1.00 1
70 1.00 1.00 1.00 1
71 1.00 1.00 1.00 1
72 0.91 0.63 0.74 198
73 0.37 0.93 0.53 72
micro avg 0.85 0.85 0.85 2550
macro avg 0.75 0.64 0.68 2550
weighted avg 0.87 0.85 0.85 2550
samples avg 0.85 0.85 0.85 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 16,663,582 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 7 epochs comes with 91 in train and 64 in test which has a very large overfit and too less training loss compare to validation loss.
The classification Report depicts the f1 score came poor for many groups among 74 along with that due to large overfit we cannot select this model.
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer 2 bidirectional LSTM layers with weight matrix as glove 300 and return sequence as True and one flatten and one dense layer with output 74
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
modelj007 = Sequential()
modelj007.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
modelj007.add(Bidirectional(LSTM(128, return_sequences=True)))
modelj007.add(Bidirectional(LSTM(128, return_sequences=True)))
modelj007.add(Flatten())
modelj007.add(Dense(74,activation='softmax'))
modelj007.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(modelj007.summary())
Model: "sequential_25" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_25 (Embedding) (None, 673, 300) 3528000 _________________________________________________________________ bidirectional_26 (Bidirectio (None, 673, 256) 439296 _________________________________________________________________ bidirectional_27 (Bidirectio (None, 673, 256) 394240 _________________________________________________________________ flatten_9 (Flatten) (None, 172288) 0 _________________________________________________________________ dense_35 (Dense) (None, 74) 12749386 ================================================================= Total params: 17,110,922 Trainable params: 17,110,922 Non-trainable params: 0 _________________________________________________________________ None
historyj007=model007.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 15s 255ms/step - loss: 0.7801 - accuracy: 0.8029 - val_loss: 0.7774 - val_accuracy: 0.8063 Epoch 2/30 60/60 [==============================] - 15s 255ms/step - loss: 0.5126 - accuracy: 0.8496 - val_loss: 0.9354 - val_accuracy: 0.7933 Epoch 3/30 60/60 [==============================] - 15s 255ms/step - loss: 0.3854 - accuracy: 0.8859 - val_loss: 0.9135 - val_accuracy: 0.7929 Epoch 4/30 60/60 [==============================] - 15s 255ms/step - loss: 0.3210 - accuracy: 0.8995 - val_loss: 1.0294 - val_accuracy: 0.7682 Epoch 5/30 60/60 [==============================] - 15s 255ms/step - loss: 0.2721 - accuracy: 0.9163 - val_loss: 0.9627 - val_accuracy: 0.8035 Epoch 6/30 60/60 [==============================] - 15s 255ms/step - loss: 0.2387 - accuracy: 0.9222 - val_loss: 1.0076 - val_accuracy: 0.7929
plot_acc(historyj007)
y_probs = modelj007.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
80/80 - 3s
precision recall f1-score support
0 0.35 0.01 0.01 1168
1 0.00 0.00 0.00 13
2 0.00 0.00 0.00 51
3 0.01 0.17 0.01 6
4 0.00 0.00 0.00 81
5 0.00 0.00 0.00 38
6 0.00 0.00 0.00 34
7 0.00 0.00 0.00 12
8 0.00 0.00 0.00 22
9 0.00 0.00 0.00 26
10 0.00 0.00 0.00 29
11 0.25 0.01 0.03 76
12 0.00 0.00 0.00 75
13 0.00 0.00 0.00 11
14 0.02 0.10 0.03 10
15 0.00 0.00 0.00 10
16 0.00 0.00 0.00 8
17 0.00 0.00 0.00 79
18 0.00 0.00 0.00 33
19 0.01 0.04 0.01 23
20 0.00 0.00 0.00 3
21 0.00 0.00 0.00 10
22 0.00 0.00 0.00 32
23 0.02 0.01 0.02 68
24 0.00 0.00 0.00 10
25 0.00 0.00 0.00 30
26 0.00 0.00 0.00 1
27 0.00 0.00 0.00 31
28 0.01 0.10 0.01 20
29 0.00 0.00 0.00 1
30 0.00 0.00 0.00 3
31 0.00 0.00 0.00 8
32 0.00 0.00 0.00 1
33 0.00 0.00 0.00 2
34 0.00 0.00 0.00 33
35 0.00 0.00 0.00 13
36 0.00 0.00 0.00 13
37 0.00 0.00 0.00 13
38 0.00 0.00 0.00 2
39 0.00 0.00 0.00 8
40 0.00 0.00 0.00 11
41 0.00 0.00 0.00 3
42 0.00 0.00 0.00 9
43 0.00 0.00 0.00 8
44 0.00 0.00 0.00 3
45 0.00 0.00 0.00 44
46 0.00 0.00 0.00 4
47 0.06 1.00 0.11 1
48 0.00 0.00 0.00 2
49 0.00 0.00 0.00 3
50 0.00 0.00 0.00 0
51 0.00 0.00 0.00 3
52 0.00 0.00 0.00 1
53 0.00 0.00 0.00 0
54 0.00 0.00 0.00 1
55 0.00 0.00 0.00 1
56 0.00 0.00 0.00 43
57 0.00 0.00 0.00 4
58 0.00 0.00 0.00 1
59 0.00 0.00 0.00 7
60 0.00 0.00 0.00 1
61 0.00 0.00 0.00 0
62 0.00 0.00 0.00 3
63 0.00 0.00 0.00 0
64 0.00 0.00 0.00 1
65 0.00 0.00 0.00 0
66 0.00 0.00 0.00 2
67 0.00 0.00 0.00 16
68 0.00 0.00 0.00 0
69 0.00 0.00 0.00 1
70 0.00 0.00 0.00 1
71 0.00 0.00 0.00 0
72 0.00 0.00 0.00 193
73 0.00 0.00 0.00 76
micro avg 0.01 0.01 0.01 2550
macro avg 0.01 0.02 0.00 2550
weighted avg 0.17 0.01 0.01 2550
samples avg 0.01 0.01 0.01 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 17,110,922 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 7 epochs are getting decreased and the behaviour is not expected it is not a stable model we will not go further with this model
X_train_Glove,X_test_Glove,y_train_Glove,y_test_Glove = train_test_split(finalticketsummary["CleanTextAfterRemoveStopword"],y,test_size=0.3)
X_train_padded_Glove,X_test_padded_Glove=padd_sequence(X_train_Glove,X_test_Glove)
(2550, 673) (5950, 673)
This model has 1 embedding layer 2 bidirectional LSTM layers with weight matrix as glove 100 and return sequence as True and one flatten and one dense layer with 1 drop out layer and 1 spatial drop out layer .
Drop out we have used 0.3 and spatial drop out as 0.4
Loss we have used catagorical_crossentropy and optimizer is adam and metrics is accuracy
from keras.layers import Activation, Dense, Flatten, Dropout, Bidirectional, SpatialDropout1D
modelh009 = Sequential()
modelh009.add(Embedding(vocab_size, embedding_dim, weights = [embedding_matrix],input_length = 673,trainable=True))
modelh009.add(SpatialDropout1D(0.4))
modelh009.add(Bidirectional(LSTM(128, return_sequences=True)))
modelh009.add(Dropout(0.3))
modelh009.add(Bidirectional(LSTM(128, return_sequences=True)))
modelh009.add(Flatten())
modelh009.add(Dense(74,activation='softmax'))
modelh009.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
print(modelh009.summary())
Model: "sequential_26" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_26 (Embedding) (None, 673, 300) 3528000 _________________________________________________________________ spatial_dropout1d_4 (Spatial (None, 673, 300) 0 _________________________________________________________________ bidirectional_28 (Bidirectio (None, 673, 256) 439296 _________________________________________________________________ dropout_6 (Dropout) (None, 673, 256) 0 _________________________________________________________________ bidirectional_29 (Bidirectio (None, 673, 256) 394240 _________________________________________________________________ flatten_10 (Flatten) (None, 172288) 0 _________________________________________________________________ dense_36 (Dense) (None, 74) 12749386 ================================================================= Total params: 17,110,922 Trainable params: 17,110,922 Non-trainable params: 0 _________________________________________________________________ None
historyh009=modelh009.fit(X_train_padded_Glove,y_train_Glove,validation_data=(X_test_padded_Glove,y_test_Glove),epochs=30,batch_size=100,callbacks=[EarlyStopping(monitor='val_loss',patience=5)])
Epoch 1/30 60/60 [==============================] - 21s 344ms/step - loss: 2.3079 - accuracy: 0.5143 - val_loss: 1.7136 - val_accuracy: 0.5988 Epoch 2/30 60/60 [==============================] - 20s 326ms/step - loss: 1.6132 - accuracy: 0.5987 - val_loss: 1.5599 - val_accuracy: 0.6075 Epoch 3/30 60/60 [==============================] - 20s 326ms/step - loss: 1.3162 - accuracy: 0.6492 - val_loss: 1.5500 - val_accuracy: 0.6447 Epoch 4/30 60/60 [==============================] - 20s 326ms/step - loss: 1.1052 - accuracy: 0.7003 - val_loss: 1.5235 - val_accuracy: 0.6471 Epoch 5/30 60/60 [==============================] - 20s 326ms/step - loss: 0.9241 - accuracy: 0.7350 - val_loss: 1.6938 - val_accuracy: 0.6459 Epoch 6/30 60/60 [==============================] - 20s 326ms/step - loss: 0.7789 - accuracy: 0.7691 - val_loss: 1.6659 - val_accuracy: 0.6502 Epoch 7/30 60/60 [==============================] - 20s 328ms/step - loss: 0.6827 - accuracy: 0.7973 - val_loss: 1.6764 - val_accuracy: 0.6553 Epoch 8/30 60/60 [==============================] - 20s 325ms/step - loss: 0.5670 - accuracy: 0.8229 - val_loss: 1.9079 - val_accuracy: 0.6671 Epoch 9/30 60/60 [==============================] - 20s 326ms/step - loss: 0.5168 - accuracy: 0.8424 - val_loss: 1.8593 - val_accuracy: 0.6361
plot_acc(historyh009)
y_probs = modelh009.predict(X_test_padded, verbose=2)
y_pred = to_categorical(y_probs.argmax(axis=1))
report = classification_report(y_test_basic, y_pred)
print(report)
80/80 - 4s
precision recall f1-score support
0 0.92 0.92 0.92 1168
1 0.64 0.69 0.67 13
2 0.87 0.65 0.74 51
3 0.56 0.83 0.67 6
4 0.88 0.72 0.79 81
5 0.69 0.76 0.72 38
6 0.67 0.85 0.75 34
7 0.89 0.67 0.76 12
8 0.50 0.95 0.66 22
9 0.93 1.00 0.96 26
10 0.77 0.79 0.78 29
11 0.81 0.58 0.68 76
12 0.71 0.80 0.75 75
13 0.80 0.73 0.76 11
14 0.70 0.70 0.70 10
15 0.90 0.90 0.90 10
16 0.71 0.62 0.67 8
17 0.91 0.91 0.91 79
18 1.00 0.79 0.88 33
19 0.86 0.78 0.82 23
20 1.00 0.33 0.50 3
21 1.00 0.40 0.57 10
22 0.83 0.75 0.79 32
23 0.58 0.76 0.66 68
24 0.53 0.80 0.64 10
25 0.71 0.73 0.72 30
26 1.00 1.00 1.00 1
27 0.89 0.77 0.83 31
28 0.63 0.85 0.72 20
29 1.00 1.00 1.00 1
30 1.00 1.00 1.00 3
31 1.00 0.88 0.93 8
32 1.00 1.00 1.00 1
33 1.00 1.00 1.00 2
34 0.89 0.76 0.82 33
35 0.77 0.77 0.77 13
36 0.92 0.85 0.88 13
37 0.75 0.46 0.57 13
38 0.67 1.00 0.80 2
39 1.00 0.38 0.55 8
40 0.31 0.36 0.33 11
41 1.00 1.00 1.00 3
42 0.75 0.33 0.46 9
43 1.00 0.25 0.40 8
44 1.00 1.00 1.00 3
45 0.76 0.86 0.81 44
46 1.00 1.00 1.00 4
47 0.00 0.00 0.00 1
48 1.00 0.50 0.67 2
49 1.00 1.00 1.00 3
50 0.00 0.00 0.00 0
51 0.75 1.00 0.86 3
52 0.00 0.00 0.00 1
53 0.00 0.00 0.00 0
54 1.00 1.00 1.00 1
55 0.33 1.00 0.50 1
56 0.74 0.58 0.65 43
57 0.29 0.50 0.36 4
58 1.00 1.00 1.00 1
59 0.75 0.43 0.55 7
60 0.50 1.00 0.67 1
61 0.00 0.00 0.00 0
62 1.00 0.67 0.80 3
63 0.00 0.00 0.00 0
64 1.00 1.00 1.00 1
65 0.00 0.00 0.00 0
66 1.00 0.50 0.67 2
67 0.62 0.81 0.70 16
68 0.00 0.00 0.00 0
69 1.00 1.00 1.00 1
70 1.00 1.00 1.00 1
71 0.00 0.00 0.00 0
72 0.65 0.84 0.73 193
73 0.60 0.32 0.41 76
micro avg 0.82 0.82 0.82 2550
macro avg 0.72 0.68 0.67 2550
weighted avg 0.83 0.82 0.82 2550
samples avg 0.82 0.82 0.82 2550
/usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior. /usr/local/lib/python3.6/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Recall and F-score are ill-defined and being set to 0.0 in labels with no true samples. Use `zero_division` parameter to control this behavior.
We can observe that there are 17,110,922 trainable parameters and 0 nontrainable parameters in model.
The accuracy after 9 epochs comes with 84 in train and 63 in test which has a less overfit compare to all other models and one of the comparatively well performance we got so far in 300d.Though there is high imbalance
The classification Report depicts the f1 score came poor for many groups among 74 but the overall performance is best among all models fr 300 d we have tried so far on complete data set
from keras.models import load_model
import os
os.chdir('/content/drive/My Drive/')
modelchk=load_model('model009.h5')
modelchk.summary()
Model: "sequential_8" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= embedding_8 (Embedding) (None, 352, 100) 674300 _________________________________________________________________ spatial_dropout1d (SpatialDr (None, 352, 100) 0 _________________________________________________________________ bidirectional_7 (Bidirection (None, 352, 256) 234496 _________________________________________________________________ dropout_1 (Dropout) (None, 352, 256) 0 _________________________________________________________________ bidirectional_8 (Bidirection (None, 352, 256) 394240 _________________________________________________________________ flatten_3 (Flatten) (None, 90112) 0 _________________________________________________________________ dense_10 (Dense) (None, 5) 450565 ================================================================= Total params: 1,753,601 Trainable params: 1,753,601 Non-trainable params: 0 _________________________________________________________________
finalticketsummary=finaldataset
tokenizer = Tokenizer()
tokenizer.fit_on_texts(finalticketsummary["CleanTextAfterRemoveStopword"])
word_index = tokenizer.word_index
vocab_size=len(word_index)+1
import numpy as np
features=["unable to access hr tool page"]
#tokenizer = Tokenizer()
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
pred = modelchk.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
features=["probleme mit com port maschine st hrmann eaodcgsw trmzwbyc"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
print(testval)
pred = modelchk.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
[[9.9994910e-01 2.6151160e-05 2.8702768e-06 1.9791967e-06 1.9895113e-05]] Group_0 [[298, 169, 170, 444, 3890, 786, 1760, 1761, 1762]] [[1.04208732e-06 2.71091579e-07 9.99988079e-01 1.05065865e-05 1.14073259e-07]] Group_24
features=["circuit outage india carrier company"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
print(testval)
pred = modelchk.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
[[44, 33, 219, 862, 10]] [[0.2927362 0.0414526 0.01737155 0.63046664 0.01797304]] Group_8
features=["usa file server hostname fail hard drive"]
testval = tokenizer.texts_to_sequences(features)
padded_texts = pad_sequences(testval, maxlen=352)
print(testval)
pred = modelchk.predict(padded_texts)
print (pred)
list=['Group_0','Group_12','Group_24','Group_8','Group_9']
print(list[np.argmax(pred)])
[[81, 120, 71, 38, 16, 237, 125]] [[1.1758213e-02 9.4666022e-01 1.7867922e-05 3.8927320e-02 2.6363195e-03]] Group_12
finalticketsummary.loc[finalticketsummary['CleanTextAfterRemoveStopword']=="usa file server hostname fail hard drive"]
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | Assignment group_num | WordLength | |
|---|---|---|---|---|---|
| 493 | GRP_12 | usa file server hostname fail hard drive | [usa, file, server, hostname, fail, hard, drive] | 1 | 7 |
finalticketsummary.loc[finalticketsummary['CleanTextAfterRemoveStopword']=="probleme mit com port maschine st hrmann eaodcgsw trmzwbyc"]
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | Assignment group_num | WordLength | |
|---|---|---|---|---|---|
| 2019 | GRP_24 | probleme mit com port maschine st hrmann eaodc... | [probleme, mit, com, port, maschine, st, hrman... | 2 | 9 |
finaldata = '/content/drive/My Drive/final_top5.pkl'
finaldataset=pd.read_pickle(finaldata)
finaldataset.shape
(5435, 3)
finaldataset.head(5)
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | |
|---|---|---|---|
| 0 | GRP_0 | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... |
| 1 | GRP_0 | outlook receive hello team meeting skype meeti... | [outlook, receive, hello, team, meeting, skype... |
| 2 | GRP_0 | not log vpn receive hi not vpn best | [not, log, vpn, receive, hi, not, vpn, best] |
| 3 | GRP_0 | unable access hr tool page | [unable, access, hr, tool, page] |
| 4 | GRP_0 | unable log engineering tool skype | [unable, log, engineering, tool, skype] |
X_train, X_test, y_train, y_test = train_test_split(finaldataset['CleanTextAfterRemoveStopword'], finaldataset['Assignment group'],
stratify=finaldataset['Assignment group'],
test_size=0.10)
X_train.shape
(4891,)
with open("/content/drive/My Drive/test.txt", "w") as test_file_handler:
for X_test_entry, y_test_entry in zip(X_test, y_test):
line_to_write = "__label__" + str(y_test_entry) + "\t" + str(X_test_entry) + "\n"
try:
test_file_handler.write(line_to_write)
except:
print(line_to_write)
break
# Write the train file.
with open("/content/drive/My Drive/train.txt", "w") as train_file_handler:
for X_train_entry, y_train_entry in zip(X_train, y_train):
line_to_write = "__label__" + str(y_train_entry) + "\t" + str(X_train_entry) + "\n"
try:
train_file_handler.write(line_to_write)
except:
print(line_to_write)
break
pip install fasttext
Requirement already satisfied: fasttext in /usr/local/lib/python3.6/dist-packages (0.9.2) Requirement already satisfied: setuptools>=0.7.0 in /usr/local/lib/python3.6/dist-packages (from fasttext) (50.3.0) Requirement already satisfied: pybind11>=2.2 in /usr/local/lib/python3.6/dist-packages (from fasttext) (2.5.0) Requirement already satisfied: numpy in /usr/local/lib/python3.6/dist-packages (from fasttext) (1.18.5)
import re
import datetime
import fasttext
model = fasttext.train_supervised(input="/content/drive/My Drive/train.txt",epoch=30)
We can see the precision and recall is coming as 92% which is quite good
def print_results(N, p, r):
print("N\t" + str(N))
print("P@{}\t{:.3f}".format(1, p))
print("R@{}\t{:.3f}".format(1, r))
results = model.test("/content/drive/My Drive/test.txt")
print_results(*results)
N 544 P@1 0.921 R@1 0.921
model.predict("job job fail job scheduler receive job",2)
(('__label__GRP_8', '__label__GRP_9'), array([0.566953, 0.409367]))
model.save_model("/content/drive/My Drive/modelfasttext.bin")
model.predict("login disconnect")
(('__label__GRP_0',), array([1.000009]))
col_one_list = X_test.tolist()
grp=y_test.tolist()
m=[]
for i in col_one_list:
m.append(model.predict(i))
df_pred_result = pd.DataFrame(m,
columns =['Pred', 'Confidence'])
df_pred_result['CleanTextAfterRemoveStopword']=col_one_list
df_pred_result['Actual']=grp
df_pred_result.head(10)
| Pred | Confidence | CleanTextAfterRemoveStopword | Actual | |
|---|---|---|---|---|
| 0 | (__label__GRP_0,) | [0.9410046935081482] | erp runtime error I eventually see receive goo... | GRP_0 |
| 1 | (__label__GRP_12,) | [0.7766759991645813] | issue user profile hostname seem mess server n... | GRP_12 |
| 2 | (__label__GRP_0,) | [1.0000067949295044] | blank call | GRP_0 |
| 3 | (__label__GRP_0,) | [1.0000098943710327] | need see unread email | GRP_0 |
| 4 | (__label__GRP_24,) | [0.9947632551193237] | calculator steli measuring device not work jio... | GRP_24 |
| 5 | (__label__GRP_0,) | [0.9999938011169434] | collaboration platform online not open opening... | GRP_0 |
| 6 | (__label__GRP_8,) | [0.5669534802436829] | job job fail job scheduler receive job | GRP_8 |
| 7 | (__label__GRP_8,) | [0.9986624121665955] | circuit outage india kirty telecom vendor sinc... | GRP_8 |
| 8 | (__label__GRP_24,) | [0.9950507283210754] | support r umzug qvncizuf ueiybanz | GRP_24 |
| 9 | (__label__GRP_0,) | [1.0000100135803223] | unable connect vpn | GRP_0 |
def text_preprocessing_newt(text):
strText = str(text)
cleanText = re.sub(r'[^a-zA-Z0-9\s]',' ',strText)
#cleanText = re.sub(r'[label\s]',' ',cleanText)
return cleanText
df_pred_result["Prediction"]=df_pred_result["Pred"].apply(text_preprocessing_newt)
# label_encoder object knows how to understand word labels.
label_encoder = preprocessing.LabelEncoder()
# Encode labels in column 'species'.
df_pred_result["Prediction"]= label_encoder.fit_transform(df_pred_result["Prediction"])
df_pred_result["Act_acc"]= label_encoder.fit_transform(df_pred_result["Actual"])
from sklearn.metrics import accuracy_score
print('Test Accuracy:')
print(accuracy_score(df_pred_result['Act_acc'], df_pred_result['Prediction']))
Test Accuracy: 0.9209558823529411
report = classification_report(df_pred_result['Act_acc'], df_pred_result['Prediction'])
print(report)
precision recall f1-score support
0 0.96 0.98 0.97 398
1 0.79 0.73 0.76 26
2 0.96 0.79 0.87 29
3 0.78 0.94 0.85 66
4 0.64 0.28 0.39 25
accuracy 0.92 544
macro avg 0.82 0.74 0.77 544
weighted avg 0.92 0.92 0.91 544
def print_results(N, p, r):
print("N\t" + str(N))
print("P@{}\t{:.3f}".format(1, p))
print("R@{}\t{:.3f}".format(1, r))
results = model.test("/content/drive/My Drive/train.txt")
print_results(*results)
N 4891 P@1 0.969 R@1 0.969
col_one_list = X_train.tolist()
grp=y_train.tolist()
m=[]
for i in col_one_list:
m.append(model.predict(i))
df_pred_train = pd.DataFrame(m,
columns =['Pred', 'Confidence'])
df_pred_train['CleanTextAfterRemoveStopword']=col_one_list
df_pred_train['Actual']=grp
df_pred_train.head(10)
| Pred | Confidence | CleanTextAfterRemoveStopword | Actual | |
|---|---|---|---|---|
| 0 | (__label__GRP_0,) | [0.9969123005867004] | passw rter wothyehre receive hallo bitte r die... | GRP_0 |
| 1 | (__label__GRP_0,) | [0.9997506737709045] | request reset microsoft online services password | GRP_0 |
| 2 | (__label__GRP_12,) | [0.9986024498939514] | window disk space utilization alert hostname | GRP_12 |
| 3 | (__label__GRP_0,) | [1.0000098943710327] | unable launch outlook | GRP_0 |
| 4 | (__label__GRP_0,) | [1.0000076293945312] | unable access site | GRP_0 |
| 5 | (__label__GRP_0,) | [1.0000091791152954] | windows account lock | GRP_0 |
| 6 | (__label__GRP_0,) | [0.9991058111190796] | password reset | GRP_0 |
| 7 | (__label__GRP_0,) | [0.9973877668380737] | unlock account email cell phone user qasdhyzm ... | GRP_0 |
| 8 | (__label__GRP_0,) | [1.0000100135803223] | unable connect vpn | GRP_0 |
| 9 | (__label__GRP_0,) | [0.9697431921958923] | lock password management tool receive please r... | GRP_0 |
df_pred_train["Prediction"]=df_pred_train["Pred"].apply(text_preprocessing_newt)
# label_encoder object knows how to understand word labels.
label_encoder = preprocessing.LabelEncoder()
# Encode labels in column 'species'.
df_pred_train["Prediction"]= label_encoder.fit_transform(df_pred_train["Prediction"])
df_pred_train["Act_acc"]= label_encoder.fit_transform(df_pred_train["Actual"])
from sklearn.metrics import accuracy_score
print('Train Accuracy:')
print(accuracy_score(df_pred_train['Act_acc'], df_pred_train['Prediction']))
Train Accuracy: 0.9687180535677775
The training accuracy is coming as 96% and testing as 92% the most important part is this model is very much stable and as the precision and recall is also very good the over all performence is also very good.
finaldata_all = '/content/drive/My Drive/final.pkl'
finaldataset_all=pd.read_pickle(finaldata_all)
finaldataset_all.shape
(8500, 3)
finaldataset_all.head(5)
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | |
|---|---|---|---|
| 0 | GRP_0 | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... |
| 1 | GRP_0 | outlook receive hello team meeting skype meeti... | [outlook, receive, hello, team, meeting, skype... |
| 2 | GRP_0 | not log vpn receive hi not vpn best | [not, log, vpn, receive, hi, not, vpn, best] |
| 3 | GRP_0 | unable access hr tool page | [unable, access, hr, tool, page] |
| 4 | GRP_0 | unable log engineering tool skype | [unable, log, engineering, tool, skype] |
X_train, X_test, y_train, y_test = train_test_split(finaldataset_all['CleanTextAfterRemoveStopword'], finaldataset_all['Assignment group'],
test_size=0.10)
X_train.shape
(7650,)
with open("/content/drive/My Drive/test_ALL.txt", "w") as test_file_handler:
for X_test_entry, y_test_entry in zip(X_test, y_test):
line_to_write = "__label__" + str(y_test_entry) + "\t" + str(X_test_entry) + "\n"
try:
test_file_handler.write(line_to_write)
except:
print(line_to_write)
break
# Write the train file.
with open("/content/drive/My Drive/train_ALL.txt", "w") as train_file_handler:
for X_train_entry, y_train_entry in zip(X_train, y_train):
line_to_write = "__label__" + str(y_train_entry) + "\t" + str(X_train_entry) + "\n"
try:
train_file_handler.write(line_to_write)
except:
print(line_to_write)
break
model = fasttext.train_supervised(input="/content/drive/My Drive/train_ALL.txt",epoch=30,lr=0.5)
def print_results(N, p, r):
print("N\t" + str(N))
print("P@{}\t{:.3f}".format(1, p))
print("R@{}\t{:.3f}".format(1, r))
results = model.test("/content/drive/My Drive/test_ALL.txt")
print_results(*results)
N 849 P@1 0.653 R@1 0.653
col_one_list = X_test.tolist()
grp=y_test.tolist()
m=[]
for i in col_one_list:
m.append(model.predict(i))
df_pred_result = pd.DataFrame(m,
columns =['Pred', 'Confidence'])
df_pred_result['CleanTextAfterRemoveStopword']=col_one_list
df_pred_result['Actual']=grp
df_pred_result.head(10)
| Pred | Confidence | CleanTextAfterRemoveStopword | Actual | |
|---|---|---|---|---|
| 0 | (__label__GRP_2,) | [0.7038630247116089] | pls unlock reset window erp account user vvtgh... | GRP_0 |
| 1 | (__label__GRP_30,) | [0.4917439818382263] | office excel powerpoint | GRP_31 |
| 2 | (__label__GRP_16,) | [0.9886095523834229] | need access znqcljxt azvoespk email | GRP_26 |
| 3 | (__label__GRP_9,) | [0.9034497737884521] | dob report show blank datum yzugpdco nsyapewg ... | GRP_9 |
| 4 | (__label__GRP_19,) | [0.9474633932113647] | outlook issue receive unable open mail please ... | GRP_0 |
| 5 | (__label__GRP_2,) | [0.48744383454322815] | employment status new non employee ycgkinov cz... | GRP_2 |
| 6 | (__label__GRP_0,) | [0.9850717186927795] | erp run slow since last hour israel internet w... | GRP_14 |
| 7 | (__label__GRP_29,) | [0.9888687133789062] | stock transfer order error pricing user attemp... | GRP_29 |
| 8 | (__label__GRP_9,) | [0.33888012170791626] | abended job job scheduler job receive | GRP_6 |
| 9 | (__label__GRP_0,) | [0.9616650342941284] | order product online problem receive hello ask... | GRP_0 |
def print_results(N, p, r):
print("N\t" + str(N))
print("P@{}\t{:.3f}".format(1, p))
print("R@{}\t{:.3f}".format(1, r))
results = model.test("/content/drive/My Drive/train_ALL.txt")
print_results(*results)
N 7650 P@1 0.944 R@1 0.944
col_one_list = X_train.tolist()
grp=y_train.tolist()
m=[]
for i in col_one_list:
m.append(model.predict(i))
df_pred_train = pd.DataFrame(m,
columns =['Pred', 'Confidence'])
df_pred_train['CleanTextAfterRemoveStopword']=col_one_list
df_pred_train['Actual']=grp
df_pred_train.head(10)
| Pred | Confidence | CleanTextAfterRemoveStopword | Actual | |
|---|---|---|---|---|
| 0 | (__label__GRP_0,) | [0.9966220259666443] | not log vpn name cagrty language browser micro... | GRP_0 |
| 1 | (__label__GRP_8,) | [0.39390188455581665] | job job fail job scheduler receive job | GRP_45 |
| 2 | (__label__GRP_0,) | [0.9976349472999573] | weekly report error message receive hallo bitt... | GRP_0 |
| 3 | (__label__GRP_17,) | [0.960314929485321] | reset password qdbfemro mcsqzlvd use password ... | GRP_17 |
| 4 | (__label__GRP_10,) | [0.9271389842033386] | job hr payroll na u fail job scheduler receive... | GRP_8 |
| 5 | (__label__GRP_0,) | [0.9887841939926147] | need configure printer | GRP_0 |
| 6 | (__label__GRP_33,) | [0.9902283549308777] | work place pc phone germany office k ffner w l... | GRP_33 |
| 7 | (__label__GRP_0,) | [0.9963761568069458] | search function skype directory still not work | GRP_0 |
| 8 | (__label__GRP_8,) | [0.39390188455581665] | job job fail job scheduler receive job | GRP_6 |
| 9 | (__label__GRP_8,) | [0.39390188455581665] | job job fail job scheduler receive job | GRP_9 |
we can see that test precision is 66% and train precisison and recall score is 94 it has hudge overfit and in prediction we can also see that multiple wrong prediction occurred.So due to data imbalance the performence is not satisfactory.
But when we take top 5 highest group we can see the performence improved very much.
import os
os.chdir('/content/drive/My Drive/')
!pip install torch_nightly -f https://download.pytorch.org/whl/nightly/cu92/torch_nightly.html
!pip install fastai
Looking in links: https://download.pytorch.org/whl/nightly/cu92/torch_nightly.html
Collecting torch_nightly
Downloading https://download.pytorch.org/whl/nightly/cu92/torch_nightly-1.2.0.dev20190805%2Bcu92-cp36-cp36m-linux_x86_64.whl (704.8MB)
|████████████████████████████████| 704.8MB 26kB/s
Installing collected packages: torch-nightly
Successfully installed torch-nightly-1.2.0.dev20190805+cu92
Requirement already satisfied: fastai in /usr/local/lib/python3.6/dist-packages (1.0.61)
Requirement already satisfied: fastprogress>=0.2.1 in /usr/local/lib/python3.6/dist-packages (from fastai) (1.0.0)
Requirement already satisfied: torchvision in /usr/local/lib/python3.6/dist-packages (from fastai) (0.7.0+cu101)
Requirement already satisfied: spacy>=2.0.18; python_version < "3.8" in /usr/local/lib/python3.6/dist-packages (from fastai) (2.2.4)
Requirement already satisfied: Pillow in /usr/local/lib/python3.6/dist-packages (from fastai) (7.0.0)
Requirement already satisfied: torch>=1.0.0 in /usr/local/lib/python3.6/dist-packages (from fastai) (1.6.0+cu101)
Requirement already satisfied: scipy in /usr/local/lib/python3.6/dist-packages (from fastai) (1.4.1)
Requirement already satisfied: numexpr in /usr/local/lib/python3.6/dist-packages (from fastai) (2.7.1)
Requirement already satisfied: nvidia-ml-py3 in /usr/local/lib/python3.6/dist-packages (from fastai) (7.352.0)
Requirement already satisfied: bottleneck in /usr/local/lib/python3.6/dist-packages (from fastai) (1.3.2)
Requirement already satisfied: matplotlib in /usr/local/lib/python3.6/dist-packages (from fastai) (3.2.2)
Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.6/dist-packages (from fastai) (1.18.5)
Requirement already satisfied: pandas in /usr/local/lib/python3.6/dist-packages (from fastai) (1.0.5)
Requirement already satisfied: packaging in /usr/local/lib/python3.6/dist-packages (from fastai) (20.4)
Requirement already satisfied: pyyaml in /usr/local/lib/python3.6/dist-packages (from fastai) (3.13)
Requirement already satisfied: beautifulsoup4 in /usr/local/lib/python3.6/dist-packages (from fastai) (4.6.3)
Requirement already satisfied: requests in /usr/local/lib/python3.6/dist-packages (from fastai) (2.23.0)
Requirement already satisfied: dataclasses; python_version < "3.7" in /usr/local/lib/python3.6/dist-packages (from fastai) (0.7)
Requirement already satisfied: preshed<3.1.0,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (3.0.2)
Requirement already satisfied: cymem<2.1.0,>=2.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (2.0.3)
Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (1.0.2)
Requirement already satisfied: catalogue<1.1.0,>=0.0.7 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (1.0.0)
Requirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (50.3.0)
Requirement already satisfied: srsly<1.1.0,>=1.0.2 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (1.0.2)
Requirement already satisfied: plac<1.2.0,>=0.9.6 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (1.1.3)
Requirement already satisfied: thinc==7.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (7.4.0)
Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (4.41.1)
Requirement already satisfied: blis<0.5.0,>=0.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (0.4.1)
Requirement already satisfied: wasabi<1.1.0,>=0.4.0 in /usr/local/lib/python3.6/dist-packages (from spacy>=2.0.18; python_version < "3.8"->fastai) (0.8.0)
Requirement already satisfied: future in /usr/local/lib/python3.6/dist-packages (from torch>=1.0.0->fastai) (0.16.0)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->fastai) (1.2.0)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->fastai) (2.4.7)
Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->fastai) (2.8.1)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib->fastai) (0.10.0)
Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas->fastai) (2018.9)
Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from packaging->fastai) (1.15.0)
Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests->fastai) (2.10)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from requests->fastai) (1.24.3)
Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from requests->fastai) (3.0.4)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.6/dist-packages (from requests->fastai) (2020.6.20)
Requirement already satisfied: importlib-metadata>=0.20; python_version < "3.8" in /usr/local/lib/python3.6/dist-packages (from catalogue<1.1.0,>=0.0.7->spacy>=2.0.18; python_version < "3.8"->fastai) (1.7.0)
Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.6/dist-packages (from importlib-metadata>=0.20; python_version < "3.8"->catalogue<1.1.0,>=0.0.7->spacy>=2.0.18; python_version < "3.8"->fastai) (3.1.0)
# import libraries
import fastai
from fastai import *
from fastai.text import *
import pandas as pd
import numpy as np
from functools import partial
import io
import os
TextList which is part of the data bloc instead of using the factory methods of TextClasDataBunch and TextLMDataBunch because TextList is part of the API which is more flexible and powerful.
When we are making NLP model with Fastai, there are two stages:
Creating LM Model & fine-tuning it with the pre-trained model
Using the fine-tuned model as a classifier
finaldf=pd.read_pickle(finaldata)
finaldf=finaldf.drop(finaldf[finaldf['CleanTextAfterRemoveStopword'].map(len) == 0].index)
finaldf.shape
(5434, 3)
finaldf.to_csv("finaldf.csv")
We can use the data_lm object we created earlier to fine-tune a pre-trained language model. We can create a learner object, ‘learn’, that will directly create a model, download the pre-trained weights, and be ready for fine-tuning:
data_lm = (TextList.from_csv('/content/drive/My Drive/','finaldf.csv', cols='CleanTextAfterRemoveStopword')
.split_by_rand_pct(0.3)
.label_for_lm()
.databunch(bs=48))
Show sample data
data_lm.show_batch()
| idx | text |
|---|---|
| 0 | xxbos ticket update inplant xxbos unable login company vpn receive hi website try open new session use link not able get pls help urgently work home tomorrow due month end close xxbos erp sid account lock xxbos user call vendor phone number xxbos unable login hr tool check payslip xxbos account lock xxbos unable login hr tool xxbos password reset collaboration platform xxbos reset user hi please password client would |
| 1 | reset request xxbos user not able see text mail iphone xxbos password reset xxbos unable sync mail outlook wifi xxbos unable submit expense report lock user xxbos xxunk update inplant xxbos ticket update inplant xxbos need username submit insurance xxbos user click driver update manually restart machine xxunk error receive xxunk xxunk detect xxunk error xxbos erp sid account unlock xxbos windows password reset xxbos loud noise gso xxbos ess |
| 2 | repair function outlook please advise xxbos password reset xxunk xxunk xxbos node xxunk locate usa since pm pm interface fc xxunk xxunk xxbos account lock need unlock xxbos hr tool payroll sign receive hr tool etime unable see statement try access receive screen not move view best xxbos not able enter project lean tracker collaboration platform see attach error xxbos not open excel file hostname department xxunk xxunk current xxunk |
| 3 | schedule maintenance power na company power provider network maint yes no maint ticket backup circuit no active contact notify phone email remote dial na equipment reset na verify work na vendor ticket global telecom verizon telecom vendor telecom vendor telecom vendor gsc yes start additional diagnostic xxbos login not possible xxunk employee xxunk receive hello follow work xxunk unable company hub mail would view salary slip request xxunk aerp name |
| 4 | blank call xxbos blank call xxbos blank call xxbos log erp order xxbos unable open xxunk file xxbos job bkwin search server prod daily fail job scheduler receive job xxbos user various department xxunk slow response erp engineering tool etc unable work xxbos job job fail job scheduler receive job xxbos circuit outage usa plant company secondary vpn since pm et site primary global telecom type outage network x circuit |
We can see that since we are training a language model, all the texts are concatenated together (with a random shuffle between them at each new epoch). Now we will fine-tune our model with the weights of a model pre-trained on a larger corpus, Wikitext 103. This model has been trained to predict the next word in the sentence provided to it as an input. Next, we will find the optimal learning rate & visualize it. The visualization will help us to spot the range of learning rates & choose from while training our model.
%%time
learn = language_model_learner(data_lm, AWD_LSTM,drop_mult=0.3)
Downloading https://s3.amazonaws.com/fast-ai-modelzoo/wt103-fwd.tgz
CPU times: user 2.1 s, sys: 447 ms, total: 2.54 s Wall time: 5.34 s
%%time
learn.lr_find()
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 8.047577 | #na# | 00:01 | |
| 1 | 8.041334 | #na# | 00:01 | |
| 2 | 7.992390 | #na# | 00:01 | |
| 3 | 7.448730 | #na# | 00:01 | |
| 4 | 6.437403 | #na# | 00:01 |
LR Finder is complete, type {learner_name}.recorder.plot() to see the graph.
CPU times: user 5.19 s, sys: 2.63 s, total: 7.82 s
Wall time: 9.9 s
learn.recorder.plot(suggestion=True)
Min numerical gradient: 6.92E-02 Min loss divided by 10: 1.58E-01
The curve says we have to try multiple combination between 1e-03 to 1e-01 min
%%time
learn.fit_one_cycle(1, 1.3e-1, moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 5.133215 | 3.879252 | 0.351233 | 00:01 |
CPU times: user 1.02 s, sys: 504 ms, total: 1.53 s Wall time: 1.54 s
By default, the Learner object is frozen thus we need to train the embeddings at first. Here, instead of running the cycle for one epoch, we will run it for 4 to see how accuracy varies. The learning rate is picked with the help of the plot we got above.
learn.unfreeze()
%%time
learn.fit_one_cycle(5, 1e-2, moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 3.575911 | 3.583309 | 0.383503 | 00:01 |
| 1 | 3.394986 | 3.379483 | 0.412883 | 00:01 |
| 2 | 3.019526 | 3.362095 | 0.426020 | 00:01 |
| 3 | 2.538084 | 3.502287 | 0.430952 | 00:01 |
| 4 | 2.070207 | 3.685699 | 0.425043 | 00:01 |
CPU times: user 6.13 s, sys: 3.31 s, total: 9.44 s Wall time: 9.47 s
We see that the accuracy improved slightly but still looming in the same range. This is because firstly the model was trained on a pre-trained model with different vocabulary & secondly, there were no labels, we had passed the data without specifying the labels.
No we will split the data set to test and train
from sklearn.model_selection import train_test_split
train, val = train_test_split(finaldf,test_size=0.3)
print(train.shape,val.shape)
(3803, 3) (1631, 3)
val.to_csv('val.csv',index=False)
valdata=pd.read_csv('val.csv')
valdata.shape
(1631, 3)
Now, we’ll create a new data object that only grabs the labeled data and keeps those labels.
data_clas=(TextList.from_csv('/content/drive/My Drive/','finaldf.csv', cols='CleanTextAfterRemoveStopword',vocab=data_lm.vocab)
.split_by_rand_pct(0.3)
.label_from_df('Assignment group')
.add_test(TextList.from_csv('/content/drive/My Drive/','val.csv', vocab=data_lm.vocab))
.databunch(bs=48))
data_clas.show_batch(ds_type=DatasetType.Test)
| text | target |
|---|---|
| xxbos xxup xxunk | GRP_0 |
| xxbos xxup xxunk | GRP_0 |
| xxbos xxup xxunk | GRP_0 |
| xxbos xxup xxunk | GRP_0 |
| xxbos xxup xxunk | GRP_0 |
The classifier needs a little less dropout, so we pass drop_mult=0.5 to multiply all the dropouts by this amount. We don’t load the pre-trained model, but instead our fine-tuned encoder from the previous section
learn.save_encoder('ticket_class_enc')
learn_clas = text_classifier_learner(data_clas, AWD_LSTM,drop_mult=0.5)
learn_clas.load_encoder('ticket_class_enc')
RNNLearner(data=TextClasDataBunch;
Train: LabelList (3804 items)
x: TextList
xxbos outlook receive hello team meeting skype meeting etc not appear calendar xxunk please advise correct kind,xxbos unable access hr tool page,xxbos unable log engineering tool skype,xxbos ticket no xxunk status new non employee enter user name,xxbos ticket update inplant
y: CategoryList
GRP_0,GRP_0,GRP_0,GRP_0,GRP_0
Path: /content/drive/My Drive;
Valid: LabelList (1630 items)
x: TextList
xxbos user unable tologin vpn connect user system use teamviewer help login company vpn link issue resolve,xxbos need configure email company iphone device,xxbos not able connect vpn,xxbos reset password xxunk xxunk use password management tool password reset,xxbos printer driver installation name xxunk xxunk language browser microsoft internet explorer customer number telephone summary hello issue print xxunk printer get error say no page select xxunk prompt download new driver
y: CategoryList
GRP_0,GRP_0,GRP_0,GRP_0,GRP_0
Path: /content/drive/My Drive;
Test: LabelList (1631 items)
x: TextList
xxbos xxup xxunk,xxbos xxup xxunk,xxbos xxup xxunk,xxbos xxup xxunk,xxbos xxup xxunk
y: EmptyLabelList
,,,,
Path: /content/drive/My Drive, model=SequentialRNN(
(0): MultiBatchEncoder(
(module): AWD_LSTM(
(encoder): Embedding(1656, 400, padding_idx=1)
(encoder_dp): EmbeddingDropout(
(emb): Embedding(1656, 400, padding_idx=1)
)
(rnns): ModuleList(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(2): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
)
(input_dp): RNNDropout()
(hidden_dps): ModuleList(
(0): RNNDropout()
(1): RNNDropout()
(2): RNNDropout()
)
)
)
(1): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=5, bias=True)
)
)
), opt_func=functools.partial(<class 'torch.optim.adam.Adam'>, betas=(0.9, 0.99)), loss_func=FlattenedLoss of CrossEntropyLoss(), metrics=[<function accuracy at 0x7f7329807488>], true_wd=True, bn_wd=True, wd=0.01, train_bn=True, path=PosixPath('/content/drive/My Drive'), model_dir='models', callback_fns=[functools.partial(<class 'fastai.basic_train.Recorder'>, add_time=True, silent=False)], callbacks=[RNNTrainer
learn: RNNLearner(data=TextClasDataBunch;
Train: LabelList (3804 items)
x: TextList
xxbos outlook receive hello team meeting skype meeting etc not appear calendar xxunk please advise correct kind,xxbos unable access hr tool page,xxbos unable log engineering tool skype,xxbos ticket no xxunk status new non employee enter user name,xxbos ticket update inplant
y: CategoryList
GRP_0,GRP_0,GRP_0,GRP_0,GRP_0
Path: /content/drive/My Drive;
Valid: LabelList (1630 items)
x: TextList
xxbos user unable tologin vpn connect user system use teamviewer help login company vpn link issue resolve,xxbos need configure email company iphone device,xxbos not able connect vpn,xxbos reset password xxunk xxunk use password management tool password reset,xxbos printer driver installation name xxunk xxunk language browser microsoft internet explorer customer number telephone summary hello issue print xxunk printer get error say no page select xxunk prompt download new driver
y: CategoryList
GRP_0,GRP_0,GRP_0,GRP_0,GRP_0
Path: /content/drive/My Drive;
Test: LabelList (1631 items)
x: TextList
xxbos xxup xxunk,xxbos xxup xxunk,xxbos xxup xxunk,xxbos xxup xxunk,xxbos xxup xxunk
y: EmptyLabelList
,,,,
Path: /content/drive/My Drive, model=SequentialRNN(
(0): MultiBatchEncoder(
(module): AWD_LSTM(
(encoder): Embedding(1656, 400, padding_idx=1)
(encoder_dp): EmbeddingDropout(
(emb): Embedding(1656, 400, padding_idx=1)
)
(rnns): ModuleList(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(2): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
)
(input_dp): RNNDropout()
(hidden_dps): ModuleList(
(0): RNNDropout()
(1): RNNDropout()
(2): RNNDropout()
)
)
)
(1): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=5, bias=True)
)
)
), opt_func=functools.partial(<class 'torch.optim.adam.Adam'>, betas=(0.9, 0.99)), loss_func=FlattenedLoss of CrossEntropyLoss(), metrics=[<function accuracy at 0x7f7329807488>], true_wd=True, bn_wd=True, wd=0.01, train_bn=True, path=PosixPath('/content/drive/My Drive'), model_dir='models', callback_fns=[functools.partial(<class 'fastai.basic_train.Recorder'>, add_time=True, silent=False)], callbacks=[...], layer_groups=[Sequential(
(0): Embedding(1656, 400, padding_idx=1)
(1): EmbeddingDropout(
(emb): Embedding(1656, 400, padding_idx=1)
)
), Sequential(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=5, bias=True)
)
)
)], add_time=True, silent=False)
alpha: 2.0
beta: 1.0], layer_groups=[Sequential(
(0): Embedding(1656, 400, padding_idx=1)
(1): EmbeddingDropout(
(emb): Embedding(1656, 400, padding_idx=1)
)
), Sequential(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=5, bias=True)
)
)
)], add_time=True, silent=False)
## run lr finder
learn_clas.lr_find()
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 1.419330 | #na# | 00:01 |
LR Finder is complete, type {learner_name}.recorder.plot() to see the graph.
Again we perform similar steps as Language mode.
## plot lr finder
learn_clas.recorder.plot()
learn_clas.fit_one_cycle(1, 2e-2, moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 0.639998 | 0.271598 | 0.907975 | 00:02 |
Here we see that the accuracy has drastically improved if we compare with the Language model in step 1 when we provide labels. Now we will partially train the model by unfreezing one layer at a time & differential learning rate. Here I am using the slice attribute which will divide the specified learning rates among 3 groups of models.
learn_clas.freeze_to(-2) # unfreeze last 2 layers
learn_clas.fit_one_cycle(1, slice(1e-2/(2.6**4),1e-2), moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 0.434595 | 0.271365 | 0.903681 | 00:02 |
We see that the accuracy is improving gradually which is expected as we are gradually unfreezing the layers. More layers providing more depth.
learn_clas.freeze_to(-3) # unfreeze last 2 layers
learn_clas.fit_one_cycle(2, slice(5e-3/(2.6**4),5e-3), moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 0.334827 | 0.228027 | 0.920859 | 00:03 |
| 1 | 0.247916 | 0.216593 | 0.915951 | 00:03 |
Finally, we will unfreeze the whole model & visualize the learning rate to choose & use that for final training.
learn_clas.unfreeze() # unfreze all
learn_clas.fit_one_cycle(3, slice(1e-3/(2.6**4),1e-3), moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 0.206599 | 0.218034 | 0.925153 | 00:03 |
| 1 | 0.177014 | 0.203282 | 0.923313 | 00:04 |
| 2 | 0.177177 | 0.203070 | 0.926994 | 00:03 |
col_one_list = val['CleanTextAfterRemoveStopword'].tolist()[0:10]
col_one_list
['blank call come get disconnect private number unable call', 'login issue issue verify user detail employee manager name check name ad fine advise check caller confirm able login issue resolve', 'customer master receive hello help customer master india not get update lauacyltoe hxgaycze mail since morning', 'job job fail job scheduler receive job', 'system bankrd temperature alert monitor tool south amerirtca servers hostname hostname inlet temp alert hostname system ambient lpas attach screen shot window event viewer log', 'attendance tool system log error receive hello good morning experience issue every time try single sign portal following screen get display stay appreciate support fix issue', 'ticket update inc', 'job job fail job scheduler receive job', 'outlook not respond', 'unable login erp']
m=[]
for i in col_one_list:
m.append(learn_clas.predict(i))
m
[(Category tensor(0), tensor(0), tensor([9.9948e-01, 8.3305e-05, 1.7981e-04, 3.8521e-05, 2.1425e-04])), (Category tensor(0), tensor(0), tensor([9.9871e-01, 1.0042e-04, 7.5111e-05, 5.7696e-04, 5.4084e-04])), (Category tensor(0), tensor(0), tensor([9.9218e-01, 4.1697e-03, 6.9555e-04, 3.9396e-04, 2.5652e-03])), (Category tensor(3), tensor(3), tensor([6.7595e-04, 1.9917e-03, 6.6138e-05, 5.8261e-01, 4.1465e-01])), (Category tensor(1), tensor(1), tensor([0.0094, 0.9763, 0.0033, 0.0029, 0.0081])), (Category tensor(0), tensor(0), tensor([9.9956e-01, 9.2335e-05, 2.4552e-05, 1.0923e-05, 3.1587e-04])), (Category tensor(0), tensor(0), tensor([9.9930e-01, 5.4124e-04, 1.1840e-04, 1.6559e-05, 2.2100e-05])), (Category tensor(3), tensor(3), tensor([6.7595e-04, 1.9917e-03, 6.6138e-05, 5.8261e-01, 4.1465e-01])), (Category tensor(0), tensor(0), tensor([9.9330e-01, 2.4657e-03, 9.7156e-04, 1.6936e-03, 1.5689e-03])), (Category tensor(0), tensor(0), tensor([9.8651e-01, 8.9985e-03, 1.9517e-03, 4.5243e-04, 2.0901e-03]))]
grp=val['Assignment group'].tolist()[0:10]
df_pred_train = pd.DataFrame(m,
columns =['Ctagory_Tensor', 'tensor','Confidence'])
df_pred_train['CleanTextAfterRemoveStopword']=col_one_list
df_pred_train.head(10)
| Ctagory_Tensor | tensor | Confidence | CleanTextAfterRemoveStopword | |
|---|---|---|---|---|
| 0 | GRP_0 | tensor(0) | [tensor(0.9995), tensor(8.3305e-05), tensor(0.... | blank call come get disconnect private number ... |
| 1 | GRP_0 | tensor(0) | [tensor(0.9987), tensor(0.0001), tensor(7.5111... | login issue issue verify user detail employee ... |
| 2 | GRP_0 | tensor(0) | [tensor(0.9922), tensor(0.0042), tensor(0.0007... | customer master receive hello help customer ma... |
| 3 | GRP_8 | tensor(3) | [tensor(0.0007), tensor(0.0020), tensor(6.6138... | job job fail job scheduler receive job |
| 4 | GRP_12 | tensor(1) | [tensor(0.0094), tensor(0.9763), tensor(0.0033... | system bankrd temperature alert monitor tool s... |
| 5 | GRP_0 | tensor(0) | [tensor(0.9996), tensor(9.2335e-05), tensor(2.... | attendance tool system log error receive hello... |
| 6 | GRP_0 | tensor(0) | [tensor(0.9993), tensor(0.0005), tensor(0.0001... | ticket update inc |
| 7 | GRP_8 | tensor(3) | [tensor(0.0007), tensor(0.0020), tensor(6.6138... | job job fail job scheduler receive job |
| 8 | GRP_0 | tensor(0) | [tensor(0.9933), tensor(0.0025), tensor(0.0010... | outlook not respond |
| 9 | GRP_0 | tensor(0) | [tensor(0.9865), tensor(0.0090), tensor(0.0020... | unable login erp |
val['pred_grp'] = val['CleanTextAfterRemoveStopword'].apply(lambda row: str(learn_clas.predict(row)[0]))
train['pred_grp'] = train['CleanTextAfterRemoveStopword'].apply(lambda row: str(learn_clas.predict(row)[0]))
print("Train Accuracy: ", accuracy_score(train['Assignment group'], train['pred_grp']))
Train Accuracy: 0.9503023928477518
report = classification_report(val['Assignment group'], val['pred_grp'])
print(report)
precision recall f1-score support
GRP_0 0.99 0.99 0.99 1206
GRP_12 0.86 0.83 0.85 77
GRP_24 0.95 0.93 0.94 92
GRP_8 0.82 0.94 0.87 186
GRP_9 0.80 0.47 0.59 70
accuracy 0.95 1631
macro avg 0.88 0.83 0.85 1631
weighted avg 0.95 0.95 0.95 1631
In loss plot we can see the validation loss gets saturated after 0.25 approx
learn_clas.recorder.plot_losses()
print(learn_clas.predict("probleme mit com port maschine st hrmann eaodcgsw trmzwbyc"))
print(learn_clas.predict("skype error"))
print(learn_clas.predict("circuit outage india carrier company"))
print(learn_clas.predict("usa file server hostname fail hard drive"))
(Category tensor(2), tensor(2), tensor([2.0163e-05, 7.3122e-04, 9.9924e-01, 1.4744e-06, 2.5343e-06])) (Category tensor(0), tensor(0), tensor([9.9210e-01, 1.8487e-03, 8.4568e-04, 2.0701e-03, 3.1383e-03])) (Category tensor(3), tensor(3), tensor([5.6415e-02, 5.7283e-05, 5.4757e-04, 9.4295e-01, 3.0577e-05])) (Category tensor(1), tensor(1), tensor([6.2335e-05, 9.9986e-01, 3.2511e-05, 4.2995e-05, 5.4010e-06]))
The performence of the model is very good if we see the losses if we compare this with full data set we can see that as there were 74 groups and there were many groups which have records less than 50 so data is highly imbalanced so full data set the model performence is poor but when we considered top 5 highest group we can see that the performence improved and classification report is also good for top 5 groups we got a test accuracy of 92 which is really good and the prediction is also very good.It is a good model to select
We have performed the same steps on the full data set to visualize the result.
finaldata_all = '/content/drive/My Drive/final.pkl'
finaldataset_all=pd.read_pickle(finaldata_all)
finaldataset_all.shape
(8500, 3)
finaldataset_all.head(5)
| Assignment group | CleanTextAfterRemoveStopword | tokenizesummaryafterstopword | |
|---|---|---|---|
| 0 | GRP_0 | login issue verify user detail employee manage... | [login, issue, verify, user, detail, employee,... |
| 1 | GRP_0 | outlook receive hello team meeting skype meeti... | [outlook, receive, hello, team, meeting, skype... |
| 2 | GRP_0 | not log vpn receive hi not vpn best | [not, log, vpn, receive, hi, not, vpn, best] |
| 3 | GRP_0 | unable access hr tool page | [unable, access, hr, tool, page] |
| 4 | GRP_0 | unable log engineering tool skype | [unable, log, engineering, tool, skype] |
finaldataset_all=finaldataset_all.drop(finaldataset_all[finaldataset_all['CleanTextAfterRemoveStopword'].map(len) == 0].index)
finaldataset_all.shape
(8464, 3)
finaldataset_all.to_csv("finaldataset_all.csv")
data_lm = (TextList.from_csv('/content/drive/My Drive/','finaldataset_all.csv', cols='CleanTextAfterRemoveStopword')
.split_by_rand_pct(0.3)
.label_for_lm()
.databunch(bs=48))
data_lm.show_batch()
| idx | text |
|---|---|
| 0 | connect unable submit report xxbos hr tool site not load page correctly xxbos user want reset password xxbos unable open payslip xxbos ticket update inplant xxbos unable login company vpn receive hi website try open new session use link not able get pls help urgently work home tomorrow due month end close xxbos xxunk pc screen not come back xxbos erp sid account lock xxbos unable sign vpn xxbos unable |
| 1 | start production environment since around pm est october behavior mfg tool log non production well find error screenshot system mail chain root appear xxunk th sept xxunk xxunk date th xxunk new even aware change xxunk company crm sp mfg xxunk xxunk net get restart break next need chain send update system reach receive detail admin xxunk want open case microsoft receive maybe first confirmation work apply environment xxbos unable |
| 2 | rth xxunk rth rth send message xxbos access drive receive hello kindly request give drive xxunk xxbos kindly add user would xxunk erp business analytic team ticket tool tool xxbos job job fail job scheduler receive job xxbos hostname currently experience high cpu utilization please investigate xxbos mass upload programdnty change condition table crm crm xxbos server xxunk active directory locate xxunk xxunk since et xxbos block user say xxbos |
| 3 | wly dp fail job scheduler receive job xxbos switch apac company xxunk access sw locate apac since pm xxbos job bkbackup tool powder prod full fail job scheduler receive job xxbos job job fail job scheduler receive job xxbos job bkbackup tool sql prod full fail job scheduler receive job xxbos job job fail job scheduler receive job xxbos job job fail job scheduler receive job xxbos job job fail |
| 4 | message class bk xxbos erp sid account unlock password reset xxbos bex analyzer report not work open connect sid try xxunk xxunk xxunk product management master window select value variable appear no available variant data provider set finance click ok system sit nothing xxunk get microsoft excel respond error something wrong system setting need pull report external auditor rather urgent fix quickly xxbos not print usa printer prtqx longer please |
data_lm.save()
%%time
learn = language_model_learner(data_lm, AWD_LSTM,drop_mult=0.3)
CPU times: user 271 ms, sys: 91.4 ms, total: 362 ms Wall time: 365 ms
%%time
learn.lr_find()
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 8.226849 | #na# | 00:02 | |
| 1 | 7.895095 | #na# | 00:02 | |
| 2 | 7.651641 | #na# | 00:02 |
LR Finder is complete, type {learner_name}.recorder.plot() to see the graph.
CPU times: user 5.25 s, sys: 2.64 s, total: 7.89 s
Wall time: 8.21 s
learn.recorder.plot(suggestion=True)
Min numerical gradient: 1.00E-01 Min loss divided by 10: 1.10E-01
%%time
learn.fit_one_cycle(1, 1.3e-1, moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 5.270597 | 4.379612 | 0.310672 | 00:02 |
CPU times: user 1.92 s, sys: 992 ms, total: 2.91 s Wall time: 2.92 s
learn.unfreeze()
%%time
learn.fit_one_cycle(5, 1e-2, moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 3.957576 | 4.107946 | 0.342560 | 00:03 |
| 1 | 3.713035 | 3.937190 | 0.358227 | 00:03 |
| 2 | 3.299778 | 3.896606 | 0.371088 | 00:03 |
| 3 | 2.678232 | 4.065544 | 0.379847 | 00:03 |
| 4 | 2.021005 | 4.307002 | 0.376786 | 00:03 |
CPU times: user 11.7 s, sys: 6.25 s, total: 17.9 s Wall time: 18 s
data_clas=(TextList.from_csv('/content/drive/My Drive/','finaldataset_all.csv', cols='CleanTextAfterRemoveStopword',vocab=data_lm.vocab)
.split_by_rand_pct(0.3)
.label_from_df('Assignment group')
.databunch(bs=48))
/usr/local/lib/python3.6/dist-packages/fastai/data_block.py:541: UserWarning: You are labelling your items with CategoryList. Your valid set contained the following unknown labels, the corresponding items have been discarded. GRP_72, GRP_67
data_clas.show_batch()
| text | target |
|---|---|
| xxbos security incident sw possible locky xxunk infection lpal source ip system name lpal user name xxunk xxunk nicolmghyu location xxunk south amerirtca xxunk vpn pc sep sms status see field sale user yes no no dsw event log content xxunk xxunk xxunk version xxunk host xxunk content reputation setting ap portal list xxunk xxunk signature power xxunk xxunk xxunk xxunk engine xxunk extend file attribute signature symantec permit application | GRP_62 |
| xxbos security incident sw magento sql injection source ip system name xxunk reference company com user name n location dmz sep sms status field sale user yes no dsw event log see ctoc receive least occurrence vid possible mage adminhtml block widget xxunk attempt inbound cve alert isensor device isensplant company com traffic not block source port tcp dallas usa destine tcp usa occur indicate external host possibly source attempt | GRP_2 |
| xxbos security incident possible malware infection traffic sinkhole domain android fa source ip system name android faecee user name unknown location unknown sep sms status field sale user yes no dsw event log incident overview see isensor company com device generate vid server response anubis cookie set probable infected asset alert not block port tcp tcp android faecee indicate host likely malware return indicate attempt visit sinkhole dns sinkholes server | GRP_2 |
| xxbos security incident dsw traffic sinkhole domain lpawxsf source ip system name lpawxsf user name n location xxunk sep sms status n field sale user yes no no dsw event log see incident overview see isensor company com device generate vid server response anubis cookie set probable infected asset alert not block port tcp tcp lpawxsf indicate host likely malware return indicate attempt visit sinkhole dns sinkholes server give false | GRP_2 |
| xxbos security incident sw xxunk possible vulnerability scanning see activity indicate host conduct scan scan use identify specific vulnerability remote could exploit xxunk xxunk service availability execute code usa attacker unauthorized access result scan future attack exploitation target host base internet xxunk xxunk non target xxunk similar source detect across client base please consider block ip address investigate malicious xxunk escalate incident via medium priority ticket per default event handling | GRP_2 |
learn.save_encoder('ticket_class_enc')
learn_clas = text_classifier_learner(data_clas, AWD_LSTM,drop_mult=0.5)
learn_clas.load_encoder('ticket_class_enc')
RNNLearner(data=TextClasDataBunch;
Train: LabelList (5925 items)
x: TextList
xxbos login issue verify user detail employee manager name check name ad reset password advise check caller confirm able login issue resolve,xxbos not log vpn receive hi not vpn best,xxbos unable log engineering tool skype,xxbos ticket no employment status new non employee enter user name,xxbos ticket update inplant
y: CategoryList
GRP_0,GRP_0,GRP_0,GRP_0,GRP_0
Path: /content/drive/My Drive;
Valid: LabelList (2536 items)
x: TextList
xxbos write read access folder xxunk line set hello please authorization user xxunk xxunk xxunk thank,xxbos email back problem outlook receive hi not get old mail outlook kindly needful restore help store separate location,xxbos recall ticket no please reopen receive xxunk xxunk would like recall message ticket no reopen,xxbos company connect,xxbos lean certificate not get send automatically hi xxunk today create another event still recipient see certificate list section also co xxunk name appear certificate happen past request kindly fix issue priority
y: CategoryList
GRP_24,GRP_0,GRP_0,GRP_0,GRP_16
Path: /content/drive/My Drive;
Test: None, model=SequentialRNN(
(0): MultiBatchEncoder(
(module): AWD_LSTM(
(encoder): Embedding(3000, 400, padding_idx=1)
(encoder_dp): EmbeddingDropout(
(emb): Embedding(3000, 400, padding_idx=1)
)
(rnns): ModuleList(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(2): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
)
(input_dp): RNNDropout()
(hidden_dps): ModuleList(
(0): RNNDropout()
(1): RNNDropout()
(2): RNNDropout()
)
)
)
(1): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=72, bias=True)
)
)
), opt_func=functools.partial(<class 'torch.optim.adam.Adam'>, betas=(0.9, 0.99)), loss_func=FlattenedLoss of CrossEntropyLoss(), metrics=[<function accuracy at 0x7f7329807488>], true_wd=True, bn_wd=True, wd=0.01, train_bn=True, path=PosixPath('/content/drive/My Drive'), model_dir='models', callback_fns=[functools.partial(<class 'fastai.basic_train.Recorder'>, add_time=True, silent=False)], callbacks=[RNNTrainer
learn: RNNLearner(data=TextClasDataBunch;
Train: LabelList (5925 items)
x: TextList
xxbos login issue verify user detail employee manager name check name ad reset password advise check caller confirm able login issue resolve,xxbos not log vpn receive hi not vpn best,xxbos unable log engineering tool skype,xxbos ticket no employment status new non employee enter user name,xxbos ticket update inplant
y: CategoryList
GRP_0,GRP_0,GRP_0,GRP_0,GRP_0
Path: /content/drive/My Drive;
Valid: LabelList (2536 items)
x: TextList
xxbos write read access folder xxunk line set hello please authorization user xxunk xxunk xxunk thank,xxbos email back problem outlook receive hi not get old mail outlook kindly needful restore help store separate location,xxbos recall ticket no please reopen receive xxunk xxunk would like recall message ticket no reopen,xxbos company connect,xxbos lean certificate not get send automatically hi xxunk today create another event still recipient see certificate list section also co xxunk name appear certificate happen past request kindly fix issue priority
y: CategoryList
GRP_24,GRP_0,GRP_0,GRP_0,GRP_16
Path: /content/drive/My Drive;
Test: None, model=SequentialRNN(
(0): MultiBatchEncoder(
(module): AWD_LSTM(
(encoder): Embedding(3000, 400, padding_idx=1)
(encoder_dp): EmbeddingDropout(
(emb): Embedding(3000, 400, padding_idx=1)
)
(rnns): ModuleList(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(2): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
)
(input_dp): RNNDropout()
(hidden_dps): ModuleList(
(0): RNNDropout()
(1): RNNDropout()
(2): RNNDropout()
)
)
)
(1): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=72, bias=True)
)
)
), opt_func=functools.partial(<class 'torch.optim.adam.Adam'>, betas=(0.9, 0.99)), loss_func=FlattenedLoss of CrossEntropyLoss(), metrics=[<function accuracy at 0x7f7329807488>], true_wd=True, bn_wd=True, wd=0.01, train_bn=True, path=PosixPath('/content/drive/My Drive'), model_dir='models', callback_fns=[functools.partial(<class 'fastai.basic_train.Recorder'>, add_time=True, silent=False)], callbacks=[...], layer_groups=[Sequential(
(0): Embedding(3000, 400, padding_idx=1)
(1): EmbeddingDropout(
(emb): Embedding(3000, 400, padding_idx=1)
)
), Sequential(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=72, bias=True)
)
)
)], add_time=True, silent=False)
alpha: 2.0
beta: 1.0], layer_groups=[Sequential(
(0): Embedding(3000, 400, padding_idx=1)
(1): EmbeddingDropout(
(emb): Embedding(3000, 400, padding_idx=1)
)
), Sequential(
(0): WeightDropout(
(module): LSTM(400, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 1152, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): WeightDropout(
(module): LSTM(1152, 400, batch_first=True)
)
(1): RNNDropout()
), Sequential(
(0): PoolingLinearClassifier(
(layers): Sequential(
(0): BatchNorm1d(1200, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(1): Dropout(p=0.2, inplace=False)
(2): Linear(in_features=1200, out_features=50, bias=True)
(3): ReLU(inplace=True)
(4): BatchNorm1d(50, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): Dropout(p=0.1, inplace=False)
(6): Linear(in_features=50, out_features=72, bias=True)
)
)
)], add_time=True, silent=False)
## run lr finder
learn_clas.lr_find()
| epoch | train_loss | valid_loss | accuracy | time |
|---|
LR Finder is complete, type {learner_name}.recorder.plot() to see the graph.
## plot lr finder
learn_clas.recorder.plot()
learn_clas.fit_one_cycle(1, 2e-2, moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 1.996822 | 1.602662 | 0.613170 | 00:03 |
learn_clas.freeze_to(-2) # unfreeze last 2 layers
learn_clas.fit_one_cycle(1, slice(1e-2/(2.6**4),1e-2), moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 1.649309 | 1.451744 | 0.634069 | 00:04 |
learn_clas.freeze_to(-3) # unfreeze last 2 layers
learn_clas.fit_one_cycle(2, slice(5e-3/(2.6**4),5e-3), moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 1.521380 | 1.409226 | 0.645505 | 00:06 |
| 1 | 1.266119 | 1.349650 | 0.662066 | 00:06 |
learn_clas.unfreeze() # unfreze all
learn_clas.fit_one_cycle(3, slice(1e-3/(2.6**4),1e-3), moms=(0.8,0.7))
| epoch | train_loss | valid_loss | accuracy | time |
|---|---|---|---|---|
| 0 | 1.154809 | 1.334998 | 0.672319 | 00:07 |
| 1 | 1.054282 | 1.332249 | 0.671530 | 00:07 |
| 2 | 1.017678 | 1.340295 | 0.670741 | 00:08 |
col_one_list = finaldataset_all['CleanTextAfterRemoveStopword'].tolist()[0:5]
col_one_list
['login issue verify user detail employee manager name check name ad reset password advise check caller confirm able login issue resolve', 'outlook receive hello team meeting skype meeting etc not appear calendar somebody please advise correct kind', 'not log vpn receive hi not vpn best', 'unable access hr tool page', 'unable log engineering tool skype']
m=[]
for i in col_one_list:
o,l,r=learn_clas.predict(i)
m.append(l)
print (m)
[tensor(0), tensor(0), tensor(0), tensor(0), tensor(0)]
finaldataset_all['Assignment group'][0:5]
0 GRP_0 1 GRP_0 2 GRP_0 3 GRP_0 4 GRP_0 Name: Assignment group, dtype: object
learn_clas.recorder.plot_losses()
Here we can see that the model worked not very well on complete data set due to imbalance and losses are very high and the test accuracy is 67% but if we compare with other models for complete data set we can say this model performence is good.
For this problem statement we first completed text preprocessing and perform all the activities explained in the notebook with complete data set and what we observed that the results and predictions are not good as there is a hudge data imbalance if we see classification report of complete data set for the top models we can see for some groups the F1 csore came as 0 and there is a hudge imbalance and also 5000+ data with top 5 group where as we have 8500 total data and 74 total groups which cleary indicates data is notbalanced.
Next we ran same steps for top 5 models and we saw hudge change in model scores Train reaches to 96 where as test too reaches 93 which is really good and proves the imbalance issue.
We have selected model 009 , ULM fit and Fast text and BERT for top 5 models as the performence are really good.
Further we have deployed the model009 through flask to webpage